I am trying to access a web service located on my server at https://test.mydomain.com . For this, I use low-level SOAP XML.
Unfortunately, the domain only has a self-signed certificate that shows the "Accept this security certificate" error to continue when I go to the web page. I get the same error message when sending a SOAP request.
I tried to examine some of the SOAP header data regarding security, but all I can find is how to connect the X509 certificate. What I would like to do would be to completely ignore / circumvent it.
Again, I am doing this in XML, so I am looking for something in these lines:
<soap:header>
<soap:certificate ignoreInvalid="true" />
</soap:header>
Any help would be appreciated and appreciated for your time!
source
share