简体   繁体   中英

wsHttpBinding over Internet

We have a set of WCF services hosted in IIS and secured with wsHttpBinding and exposed on Internet. When I am trying to consume those services from a client I am getting an error "Request for the security token has invalid or malformed elements."

I am using

    <security mode="Message">
          <message clientCredentialType="None" negotiateServiceCredential="true"
              algorithmSuite="Default" establishSecurityContext="true" />
     </security>

Any help on this would be appreciated

Try changing the security mode to none.

Alternativily, over the internet basichttpbinding over ssl with basic authenication works well.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM