I have X509 certificate implementation in one of my projects and i want to use Client certificate while consuming it from SoapUI. I got some solution here but it applies the same certificate for all the invocations from SoapUI. what if I have different certificates for different services that I invoke? How can I add the client certificate in my SOAP request itself?
Asked
Active
Viewed 1.5k times
1
-
Double Click on project --> WS-Security Configuration -->KeyStore place you can add more – Suman g May 25 '16 at 11:21
2 Answers
2
SSL Settings at the request level can be done the following way:
- Double click on the Project name
- In the "WS-Security Configurations" tab, click on "Keystores" tab click, then on the green "+" to add a keystore:
- Enter the keystore location and password
- Click on the Request
- Change the request property "SSL keystore" to the one added in step 2-3:
- You can now run the request
Source: https://blogs.sap.com/2011/01/06/soap-ui-tool-soap-https-client-authentication/

Julien Kronegg
- 4,968
- 1
- 47
- 60
1
You can add as many trutstore or keystore based on the requirement.Double click on the name of the project-> Go to WS-Security Config. Please find few useful urls
http://pglezen.github.io/was-config/html/soapui.html ( Check config SOAP UI)
https://www.soapui.org/blog/ws-security-settings.html.
Based on the SOAPUI version. Truststore and Keystore tab will vary. But all with the same configuration.

star
- 1,493
- 1
- 28
- 61
-
Thanx @Star for the solution. it really helps. sorry for making a delay in marking the answer. – Pruthvi007 Aug 23 '16 at 06:16