I have a .Net WCF service which I am testing with SoapUI version4.6.2. All is working but I have an issue that I just cannot get around at the moment.

I am using a password digest which adds a nonce and a created date. The passwordType is set to PasswordDigest.

So, when I make the call, these values are populated into the Soap Request as below.

           xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"   xmlns:wssu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">              xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"   xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">                   wsu:Id="UsernameToken-38">XXXXXXXXXXX                          Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">0OLlyLiaAjG+APSRFyHkWl8b5BQ=                           EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">wmI0VZSTAmrJ0ELQa7ybcQ==  2013-12-09T12:43:13.895Z                                         xxxxxxxxxxxxxxxxxxxx                  soapenv:mustUnderstand="1"> xxxxxxxxxxxxxxxxxxxxxxxxxxxxx uuid:7dc57353-9069-442d-8b69-163f676dd3e3 uuid:7dc57353-9069-442d-8b69-163f676dd3e3        



But the values for the
password, nonce and created date from with in the .Net WCF service are as
follows:

Username := XXXXXXXXXXXXXXXXXXXX
Password := drke/Qbzob5IY7KzmCBeb6q09ho=
Nonce := oZiTJpbiVrranub4F1Sjbw==
Created := 2013-12-09T12:43:35.320Z


The funny thing is thou, that if I call the service again, I get the following

xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
wsu:Id="UsernameToken-39">XXXXXXXXXXXXXXXXX
Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">drke/Qbzob5IY7KzmCBeb6q09ho=
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">oZiTJpbiVrranub4F1Sjbw==
2013-12-09T12:43:35.320Z



Which as you can see is holding the password nonce and created values that the .Net WCF program thought was the original call.

Must be something simple, but cannot see it. Any help?