0

以下は、私のweb.configファイルのサービスモデル構成です。

    <system.serviceModel>
  <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" />
        <dataContractSerializer maxItemsInObjectGraph="2147483647" />
      </behavior>
    </serviceBehaviors>
  </behaviors>
  <bindings>
    <basicHttpBinding>
      <binding name="BasicHttpBinding_IDataPortal" closeTimeout="01:00:00" openTimeout="01:00:00" receiveTimeout="01:00:00" sendTimeout="01:00:00"
       allowCookies="false" bypassProxyOnLocal="true" hostNameComparisonMode="StrongWildcard"
       maxBufferPoolSize="524288" maxBufferSize="65536" maxReceivedMessageSize="65536"
       textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true" messageEncoding="Text">
        <readerQuotas maxDepth="64" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="4096"
                      maxNameTableCharCount="2147483647"/>
        <security mode="None">
          <transport clientCredentialType="None" proxyCredentialType="None" realm=""></transport>
          <message clientCredentialType="UserName" algorithmSuite="Default"/>
        </security>
      </binding>
    </basicHttpBinding>
  </bindings>
  <client>
    <endpoint address="http://localhost:4481/MyDataService.svc"
              binding="basicHttpBinding"
              bindingConfiguration="BasicHttpBinding_IDataPortal"
              name="BasicHttpBinding_IDataPortal"
              contract="eBusiness_Core.Contracts.ServiceContracts.IBusinessData">
    </endpoint>
  </client>
  <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>

WCFテストクライアントでWCFメソッドの実行を確認すると、呼び出しが実行されますが、最終的に「基になる接続が閉じられました:接続が予期せず閉じられました」という例外が返されます。WCFサービスでカスタムタイプを使用し、それらを「DataContract」と「Serializable」の両方の属性で装飾しました。文字列を返す単純なメソッドをチェックすると、正常に機能します。理由は何でしょうか?

4

1 に答える 1