I've built a CXF client by configuring the necessary beans in Spring. When I run my client, these are the soap messages I get from the log file: 1. Client sends a soap msg to STS server to request a token 2. If authenticated, the STS server replies with a token 3. Client sends a message with the token embedded in it to the WCF service to invoke an operation 4. WCF service should" reply with an answer from the invoked operation
But instead I get following errormessage from the WCF service: "An error occurred when verifying security for the message." I also have the logging of a .NET client to access the same WCF service and I noticed he acted differently: 1. Client sends soap msg to STS server to request token#1 2. If authenticated, the STS server replies with token#1 3. Client sends a message with token#1 embedded in it to the WCF service and a request for token#2 4. If token#1 is authenticated, the WCF service replies with token#2 5. Client sends a message with token#2 embedded in it to the WCF service to invoke an operation 6. WCF service replies with an answer from the invoked operation I can't seem to find anything about this in the CXF documentation, so hopefully I'm missed it or is this behaviour not supported by the CXF framework? -- View this message in context: http://cxf.547215.n5.nabble.com/CXF-client-for-WCF-service-with-ws-trust-tp5726516.html Sent from the cxf-user mailing list archive at Nabble.com.
