Connect with WCF to a WebService authenticated with username/password

前端 未结 3 1860
不知归路
不知归路 2021-01-31 10:53

I created a proxy of a Web Service with Visual Studio 2008, and it created for me the following entry in the app.config:


        <         


        
相关标签:
3条回答
  • 2021-01-31 11:24

    The error message is right. WCF will not allow transport of usernames and passwords over an unprotected protocol. Your web service must be using HTTPS (with the attendant SSL certificate)

    Once you have an SSL certificate you have two options on how the credentials are sent, transport or security and multiple options for the type of credential. MSDN has a good guide to all of the various options.

    0 讨论(0)
  • 2021-01-31 11:24

    I had the same problem and tried the solution above Somehow this didn't work for me I was keep getting the message "No WS-Security header found"

    After a long time of testing and trying I manage to get it work I added the header code in the client as below and then it works!

    <client>
        <endpoint address="http://your.service.com" binding="basicHttpBinding" bindingConfiguration="XXXBinding" contract="contract.XXX" name="XXXPort">
            <headers xmlns:wsse="http://your.xsd">
                <wsse:Security mustUnderstand="1">
                    <wsse:UsernameToken>
                        <tenant>XXX</tenant>
                        <wsse:Username>XXX</wsse:Username>
                        <wsse:Password Type="http://www.xxxx.com/wss#PasswordText">XXX</wsse:Password>
                    </wsse:UsernameToken>
                </wsse:Security>
            </headers>
        </endpoint>
    </client>
    
    0 讨论(0)
  • 2021-01-31 11:32

    I post here the solution for future readers:

    <system.serviceModel>
        <bindings>
          <basicHttpBinding>
            <binding name="MyHandlerSoapBinding" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                useDefaultWebProxy="true">
              <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                  maxBytesPerRead="4096" maxNameTableCharCount="16384" />
              <security mode="TransportCredentialOnly">
                <transport clientCredentialType="Basic"  />
              </security>
            </binding>
          </basicHttpBinding>
        </bindings>
        <client>
          <endpoint address="http://www.***/***/***/MyHandler"
              binding="basicHttpBinding" bindingConfiguration="MyHandlerSoapBinding"
              contract="***.MyHandler" name="MyHandler">
          </endpoint>
    
        </client>
      </system.serviceModel>
    

    In the end I could use the default basicHttpBinding. The only difference from the code posted in the question is the security node.

    Also note the mode="TransportCredentialOnly" option, this allows you to send username/password using http instead of https. This is necessary for testing environments as the one I'm using. Later on obviously you'll prefer https to send your credentials.

    Afterwards in code you'll enter your username/password:

    var ws = new ***.MyHandlerClient("MyHandler");
    ws.ClientCredentials.UserName.UserName = "myUsername";
    ws.ClientCredentials.UserName.Password = "myPassword";
    var result = ws.executeMyMethod();
    
    0 讨论(0)
提交回复
热议问题