Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a Problem when I try to run the project that consume a service, really I'm crazy with this error because reading on internet nothing can resolve it.

the error told me this : Could not establish secure channel for SSL/TLS with authority

this service consume some certificates that he need and i have installed on my local machine.

I need help please or some ideas

What I have tried:

I proved the service with the Soap/ui and this is ok, this returns the requested data, but when i try prove the same service in the web project , this not function and dont returns nothing only the error Could not establish secure channel for SSL/TLS with authority
Posted
Updated 19-Mar-18 3:49am
v2

1 solution

You may need something like this in your wcf config:
XML
<bindings>
  <basicHttpBinding>
    <binding name="xxxBinding">
      <security mode="Transport">
        <transport clientCredentialType="Certificate"/>
      </security>
    </binding>
  </basicHttpBinding>
</bindings>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900