2012-08-28 41 views
1

我正試圖用一個服務引用時出現以下錯誤:服務引用安全首

Urgent: wsdoallreceiver incoming message does not contain required security header 

我的配置文件有以下幾點:

<configuration> 
    <configSections> 
    </configSections> 
    <system.serviceModel> 
     <bindings>     
      <basicHttpBinding> 
       <binding name="ProjectServiceSOAP11Binding" 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="None"> 
         <transport clientCredentialType="None" proxyCredentialType="None" 
          realm="" /> 
         <message clientCredentialType="UserName" algorithmSuite="Default" /> 
        </security> 
       </binding> 
      </basicHttpBinding> 
      <customBinding> 
       <binding name="ProjectServiceSOAP12Binding"> 
        <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16" 
         messageVersion="Soap12" writeEncoding="utf-8"> 
         <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" 
          maxBytesPerRead="4096" maxNameTableCharCount="16384" /> 
        </textMessageEncoding> 
        <httpTransport manualAddressing="false" maxBufferPoolSize="524288" 
         maxReceivedMessageSize="65536" allowCookies="false" authenticationScheme="Anonymous" 
         bypassProxyOnLocal="false" decompressionEnabled="true" hostNameComparisonMode="StrongWildcard" 
         keepAliveEnabled="true" maxBufferSize="65536" proxyAuthenticationScheme="Anonymous" 
         realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false" 
         useDefaultWebProxy="true" /> 
       </binding> 
      </customBinding> 
     </bindings> 
     <client> 
      <endpoint address="(address here)" 
       binding="basicHttpBinding" bindingConfiguration="ProjectServiceSOAP11Binding" 
       contract="ProjectService.ProjectServicePortType" name="ProjectServiceSOAP11port_http" /> 
      <endpoint address="(address here)" 
       binding="customBinding" bindingConfiguration="ProjectServiceSOAP12Binding" 
       contract="ProjectService.ProjectServicePortType" name="ProjectServiceSOAP12port_http" /> 
     </client> 
    </system.serviceModel> 
</configuration 

我試圖像這樣來驗證:

ProjectServicePortTypeClient myProjectClient = new ProjectServicePortTypeClient("ProjectServiceSOAP11Binding"); 
    myProjectClient.ClientCredentials.SupportInteractive = true; 
    myProjectClient.ClientCredentials.UserName.UserName = myLogInEmail; 
    myProjectClient.ClientCredentials.UserName.Password = myPassword; 

是否存在明顯的錯誤?

回答