Hi, I have created a client app using Axis2/Rampart and I'm having difficulties getting it to work with .net/WCF(I think).
My axis2.xml config contains (Also tried policy with same results): ... <parameter name="OutflowSecurity"> <action> <items>Signature</items> <user>user</user> <passwordCallbackClass>PWCBHandler</passwordCallbackClass> <signaturePropFile>client.properties</signaturePropFile> <signatureKeyIdentifier>DirectReference</signatureKeyIdentifier> </action> </parameter> ... etc. client.properties: org.apache.ws.security.crypto.provider=org.apache.ws.security.components.crypto.Merlin org.apache.ws.security.crypto.merlin.keystore.type=pkcs12 org.apache.ws.security.crypto.merlin.file=key.pfx org.apache.ws.security.crypto.merlin.keystore.password=password I get the follow error: org.apache.axis2.AxisFault: An error occurred when verifying security for the message. at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:512) at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:370) at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:416) Also get the following in the log: 2011-01-19 16:02:38 [main] [DEBUG] Request body sent 2011-01-19 16:02:38 [main] [DEBUG] << "HTTP/1.1 500 Internal Server Error[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "HTTP/1.1 500 Internal Server Error[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Date: Wed, 19 Jan 2011 16:02:39 GMT[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Server: Microsoft-IIS/6.0[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "X-Powered-By: ASP.NET[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "X-AspNet-Version: 2.0.50727[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Connection: close[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Cache-Control: private[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Content-Type: application/soap+xml; charset=utf-8[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "Content-Length: 643[\r][\n]" 2011-01-19 16:02:38 [main] [DEBUG] << "[\r][\n]" ... 2011-01-19 16:02:38 [main] [DEBUG] *********************** RampartReceiver received <?xml version='1.0' encoding='utf-8'?><s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action s:mustUnderstand="1">http://www.w3.org/2005/08/addressing/soap/fault</a:Action><a:RelatesTo>urn:uuid:C18F4C3E6ACADFD1F31295452955592</a:RelatesTo></s:Header><s:Body><s:Fault><s:Code><s:Value>s:Sender</s:Value><s:Subcode><s:Value xmlns:a="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">a:InvalidSecurity</s:Value></s:Subcode></s:Code><s:Reason><s:Text xml:lang="en-GB">An error occurred when verifying security for the message.</s:Text></s:Reason></s:Fault></s:Body></s:Envelope> I've carried out an internet search but get no definitive answer and I'm hoping someone here can help. --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org For additional commands, e-mail: java-dev-h...@axis.apache.org