Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Corresponding SOAP UI vs Spring-ws

Tags:

Soap UI has the following option "Use single certificate for signing" enter image description here

what is the corresponding spring-ws config? enter image description here

like image 730
user48545 Avatar asked Jun 01 '13 15:06

user48545


People also ask

How do I add a WS-Security header to SoapUI?

Right-click anywhere in the main request window to open a menu. Select Outgoing WSS >> Apply "OLSA Username Token". This will add the security header information to the Soap envelope request.


1 Answers

did you try with the Sign attribute includeTimestamp set to false?

According to the documentation, it's use to prevent replay attacks. Use Single certificate to signing in SoapUI use quite the same methodology as a replay attacks.

http://docs.oracle.com/cd/E17802_01/webservices/webservices/docs/1.6/tutorial/doc/XWS-SecurityIntro4.html#wp565497

like image 136
Duff Avatar answered Oct 11 '22 05:10

Duff