Adding Signature Information to a SOAP request using SOAP UI

Опубликовано: 17 Октябрь 2024
на канале: TechFunnel
1,628
5

WS-Security is a massive specification that dictates various web services security related matters such as authentication, signing and verifying SOAP messages etc. In this video I show how you can use to compose signed SOAP request, which otherwise you'll have to manually write a SOAP client with complex logic, although in real client implementations you will still have to do.

e.g: commands used in the video
keytool -genkey -alias newcert -keyalg RSA -keysize 2048 -keystore newkeystore.jks -dname "CN=localhost, OU=Home,O=Home,L=SL,S=WS,C=LK" -storepass mypassword -keypass mypassword

keytool -export -alias newcert -keystore newkeystore.jks -rfc -file public.cert