A call to a https soap 1.1 service with WSS-Password type PasswordDigest works in soapUI but does not work in Mendix.

0
A call to a https soap 1.1 service with WSS-Password type PasswordDigest works in soapUI but does not work in Mendix. The error  I get back in response is: <soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>WSDoAllReceiver: security processing failed</faultstring><detail /></soapenv:Fault> The request looks like: Request content for POST request to https://...HttpsSoap11Endpoint/ HTTP/1.1 Content-Type: text/xml; charset=UTF-8 SOAPAction: "urn:myaction" <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">   <wsse:UsernameToken>     <wsse:Username>MYUSER</wsse:Username>     <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">ABCD1Jelf9VHj9USBXU0eQ1yC7c=</wsse:Password><wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">ABCDGcIyeXKP16veL0zNIw==</wsse:Nonce>   </wsse:UsernameToken> </wsse:Security></soapenv:Header><soapenv:Body>...</soapenv:Body></soapenv:Envelope>   The above request was when i copy pasted wsse:Password and wsse:Nonce tags directly from logs of my sample call via soapui where it worked. Before that I tried to test by putting that original password text that i was putting in soapui console (which generated the above two tags) but that too gave the same error. I have loaded the certificate of https site in modeler from where i am running this test. Any tips welcome to help me make this soap call work from Mendix modeler.  
asked
0 answers