1

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?

Pruthvi007
  • 52
  • 1
  • 1
  • 6

2 Answers2

2

SSL Settings at the request level can be done the following way:

  1. Double click on the Project name
  2. In the "WS-Security Configurations" tab, click on "Keystores" tab click, then on the green "+" to add a keystore:

enter image description here

  1. Enter the keystore location and password
  2. Click on the Request
  3. Change the request property "SSL keystore" to the one added in step 2-3:

enter image description here

  1. 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