Webservice administrator gave me WSDL, two certificates and a private key:
service.wsdl
ssl.cer
auth_cert.pem
auth_private_key.pem
In Visual Studio 2010 I added a Web Reference (Service Reference didn't work) from the WSDL. Then I tried to use it as it was an http soap client:
MySoapClient client = new MySoapClient();
client.Operation();
and I obtain this stack trace:
Unhandled Exception: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request)
at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
What I have to do with certificates and private key?
I can't find any tutorial online nor books that covers this matter. Any hint?
Update
Accessing the endpoint with Firefox:
SSL peer cannot verify your certificate. (Error code: ssl_error_bad_cert_alert)