Home > OS >  Add service reference from Visual Studuio
Add service reference from Visual Studuio

Time:06-09

when I try to add a web service reference appear this window: enter image description here

Will this be a blocking error when i call the webservice from code?

When I call a method of the webservice I get the following error: Request canceled: Unable to create SSL / TLS secure channel.

Can this error be related to the problem in the image? Tank you

CodePudding user response:

This error usually happens when you are accessing a HTTPS site without proper SSL certificate. If you know the service and what you are doing, like when you have a local HTTPS service you can disable SSL verification, and you should be fine then.

CodePudding user response:

This may be a certificate access error, you can edit the certificate's ACL: Select Certificates in MMC -> Context Menu -> All Tasks -> Manage Private Keys. Administrators are on this list by default. You can also refer to this link here.

  • Related