Hi Gary,
Thanks very much! for the explanation.
I am following tcp-client-server-multiplex example in spring-integration-samples and I want to send new message to the client that is not a reply...
Type: Posts; User: charybr; Keyword(s):
Hi Gary,
Thanks very much! for the explanation.
I am following tcp-client-server-multiplex example in spring-integration-samples and I want to send new message to the client that is not a reply...
Instead of -1 in
new ObjectIdentityImpl(entity.getClass(), -1L)
use entity, something like
new ObjectIdentityImpl(entity)
Thanks! it worked.
I came across the defect - Expression support in protect-pointcut xml config (https://jira.springsource.org/browse/SEC-1663).
I could find a workaround by adding MethodExpressionVoter as mentioned...
Even I am facing the same problem.
My configuration is:
<security:protect-pointcut expression="execution(* com.*service.addEntity(..))"
...