zoukankan      html  css  js  c++  java
  • How to configure SoapUI with client certificate authentication

    How to configure SoapUI with client certificate authentication

    (A document from Gerard van der Maaden)

    SoapUI is one of the best free tools around to test web services. Some time ago I was trying to send a soap message towards a SSL web service that was set up for client certificate authentication. I pretty soon got stuck at the “javax.net.ssl.SSLException: HelloRequest followed by an unexpected handshake message” error, but after reading several posts on the internet I solved that issue. It’s not really that complicated after all, but since I could not find a decent place on the internet that explains this scenario in a proper way, here’s a list of steps that you need to do to make it work.

    Note: this following steps are based on a Windows environment

    Step one:

    Export your certificate (the one that you want to use as the client certificate) using the export wizard with the private key and with all certificates in the certification path:

    Picture_(Device_Independent_Bitmap)_1

    Picture_(Device_Independent_Bitmap)_2

    Give it a password (anything you want):

    Picture_(Device_Independent_Bitmap)_3

    And export it as a PFX file to a location somewhere on disk:

    Picture_(Device_Independent_Bitmap)_4

    Step two:

    Install the newest version of SOAP UI (currently it is 3.6.1)

    Open the file C:\Program Files\eviware\soapUI-3.6.1\bin\ soapUI-3.6.1.vmoptions and add this line at the bottom:

    -Dsun.security.ssl.allowUnsafeRenegotiation=true

    Picture_(Device_Independent_Bitmap)_5

    This is needed because of a JAVA security feature in their newest frameworks (For further reading about this issue, read this: http://www.soapui.org/forum/viewtopic.php?t=4089 and this: http://java.sun.com/javase/javaseforbusiness/docs/TLSReadme.html).

    Open SOAPUI and go to preferences>SSL Settings and configure your certificate in the keystore (use the same password as in step one):

    Picture_(Device_Independent_Bitmap)_6

    That should be it. Just create a new project and import the WSDL from the client authenticated SSL webservice:

    Picture_(Device_Independent_Bitmap)_7

    And now you should be able to send soap messages with client certificate authentication.

    The above steps worked for me, but please drop a note if it does not work for you.

  • 相关阅读:
    oracle的over函数应用(转载)
    Oracle decode()函数应用
    EL表达式显示数据取整问题
    null值与空值比较
    case when语句的应用
    堆排序
    希尔排序
    插入排序
    异或运算
    选择排序
  • 原文地址:https://www.cnblogs.com/JasonLiao/p/2254262.html
Copyright © 2011-2022 走看看