Invoke a SOAP-Based Integration with a Timestamp

You can use an interface such as SoapUI to invoke a SOAP-based web service integration in Oracle Integration. If you attempt to invoke a SOAP-based web service through SoapUI, you can receive the following error regardless of the security policy you selected in the Connections page (Username Password Token, Basic Authentication, or No Security Policy).

OWSM ICS Service request handler failed: InvalidSecurity
If this error occurs, add a timestamp to your WSS security. For example:
<soap:Header>
  <wsse:Security  xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> 
<wsu:Timestamp wsu:Id="IS-918F6052E6918D5F2414550387589204">
  <wsu:Created>2017-04-17T17:20:50.9200</wsu:Created>
  <wsu:Expires>2017-04-17T17:21:50.9200</wsu:Expires>
</wsu:Timestamp>
<wsse:UsernameToken>
<wsse:Username>Joe</wsse:Username>  
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">My_password</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
  </soap:Header>