2

WCF を使用していますが、次のエラーが見つかりました。

「呼び出し元がサービスによって認証されませんでした。」

client.configファイルでこのコードを使用しました:

<system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="WSDualHttpBinding_IReceiverController" closeTimeout="00:00:05"
         openTimeout="00:00:05" receiveTimeout="00:10:00" sendTimeout="00:00:05"
         bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
         maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
         messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" />
          <security mode="None">
            <message clientCredentialType="Windows" negotiateServiceCredential="false" />
          </security>
        </binding>
        <binding name="WSHttpBinding_IEMRProWCFService" />
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://pionbuggs-pc:4567/EMRProWCFService.svc"
        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IEMRProWCFService"
        contract="EMRProWCFService.IEMRProWCFService" name="WSHttpBinding_IEMRProWCFService">
        <identity>
          <dns value="http://pionbuggs-pc:4567/EMRProWCFService.svc" />
        </identity>
      </endpoint>
    </client>
  </system.serviceModel>

以下は、service.configファイル内のコードです。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>

  <system.web>
    <compilation />
    <httpRuntime maxRequestLength="2147483647" />

  </system.web>

  <system.serviceModel>
    <services>
      <service name="WCFService.EMRProWCFService">
        <endpoint address="" binding="wsHttpBinding" contract="WCFService.IEMRProWCFService">
          <identity>
            <dns value="http://pionbuggs-pc:4567/EMRProWCFService.svc" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
    </services>

    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true" />
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    <bindings>
      <webHttpBinding>
        <binding name="WebConfiguration" maxBufferSize="65536" maxReceivedMessageSize="2147483647" transferMode="Streamed">
        </binding>
      </webHttpBinding>
    </bindings>
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <directoryBrowse enabled="true" />
  </system.webServer>

</configuration>
4

1 に答える 1

2

を使用する代わりにbinding="wsHttpBinding"、基本的なものだけを使用して、クライアントのエンドピントを次のように変更してみてください。

<endpoint address="http://pionbuggs-pc:4567/EMRProWCFService.svc"
    binding="basicHttpBinding" bindingConfiguration="WSHttpBinding_IEMRProWCFService"
    contract="EMRProWCFService.IEMRProWCFService" name="WSHttpBinding_IEMRProWCFService">

そしてあなたのサービスで:

<endpoint address="" binding="basicHttpBinding" contract="WCFService.IEMRProWCFService">

エラーは、認証を必要とするセキュリティ上の制約がない限り、認証を使用する必要がある高度なセキュリティを使用していることです。

これに関するいくつかの情報があります:

BasicHttpBinding vs WsHttpBinding vs WebHttpBinding

于 2012-12-25T05:44:31.987 に答える