1

SubmitTicket(flightticket ft, string username, string password) という 1 つのメソッドを持つ単純な WCF Web サービスを作成しました。

クライアント側には、フォーム (航空券) に記入して、この新しく作成された Web サービスに送信するためのアプリケーションがあります。このフライトチケット オブジェクトが 8192 バイトを超えると、次のエラーが発生します。

「flightticket 型のオブジェクトのデシリアライズ中にエラーが発生しました。XML データの読み取り中に、文字列コンテンツの最大長クォータ (8192) を超えました。このクォータは、XML リーダーの作成時に使用される XmlDictionaryReaderQuotas オブジェクトの MaxStringContentLength プロパティを変更することで増加できます」

オンラインで調査を行ったところ、web.config (サーバー) と app.config (クライアント) の MaxStringContentLength をより大きな数値に設定する必要があることがわかりました。問題は、さまざまなブログやサイトを読んで、両方の構成ファイルで考えられるすべての設定の組み合わせを試しましたが、それでも同じエラーで失敗することです!

クライアントとサーバーの構成コードを添付しました (現時点では、1 日に何度も多くの変更を行ってきましたが、成功していません)。

サービス参照を更新すると、クライアント アプリケーションの configuration.svcinfo ファイルで MaxStringContentLength が常に 8192 と表示されることに気付きました。バインディング プロパティを明示的に設定しても、すべてのデフォルト値を使用しているように見えます。それが私の問題に関連しているかどうかはわかりませんが、言及する価値があります。


エンドポイント バインディングを定義するための適用可能な app.config/web.config コードを次に示します。

<<<<< クライアント >>>>>

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="BasicHttpBinding_IFlightTicketWebService" 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="65536" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <security mode="None">
                    <transport clientCredentialType="None" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="UserName" algorithmSuite="Default" />
                </security>
            </binding>
        </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://xx.xx.xx/xxxxxxxx.svc"
            binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IFlightTicketWebService"
            contract="FlightTicketWebService.IFlightTicketWebService"
            name="BasicHttpBinding_IFlightTicketWebService" />
    </client>
</system.serviceModel>
</configuration>

<<<<< サーバー >>>>>

<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
  <section name="GSH.FlightTicketWebService.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<system.web>
<httpRuntime maxRequestLength="16384"/>
<compilation debug="true" targetFramework="4.0"/>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
</system.web>

<system.serviceModel>
  <bindings>
      <basicHttpBinding>
          <binding name="BasicHttpBinding_IFlightTicketWebService" 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="65536" maxArrayLength="16384"
                  maxBytesPerRead="4096" maxNameTableCharCount="16384" />
              <security mode="None">
                  <transport clientCredentialType="None" proxyCredentialType="None"
                      realm="" />
                  <message clientCredentialType="UserName" algorithmSuite="Default" />
              </security>
          </binding>
      </basicHttpBinding>
  </bindings>
<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"/>
<services>
    <service name="FlightTicketWebService">
        <endpoint 
            name="FlightTicketWebServiceBinding"
            address="http://xx.xx.xx/xxxxxxxxxxx.svc" 
            binding="basicHttpBinding" 
            bindingConfiguration="BasicHttpBinding_IFlightTicketWebService"
            contract="IFlightTicketWebService"/>
    </service>
</services>
</system.serviceModel>
<system.webServer>
4

2 に答える 2

4

問題は、サービス名を FlightTicketWebService に設定しているため、サービスが構成を取得していないことだと思いますが、実際のタイプは名前空間にあると思います。サービス名を名前空間で完全に修飾すると、構成が取得されます

基本的に、これは WCF 4 の既定のエンドポイント機能の副産物であり、一致する構成が見つからない場合、既定の構成でエンドポイントを設定します。

于 2011-08-16T16:54:16.373 に答える
2

これが答えです!私はWCF4.0でこの問題の解決策をどこでも検索しましたが、RichardBlewettによるこのエントリはパズルの最後のピースでした。

私の研究から学んだ重要なこと:

  • サービスによって例外がスローされた場合は、サーバーのWeb.configファイルのみを変更してください。クライアントのことは気にしないでください
  • カスタムbasicHttpBindingを作成します:
<system.serviceModel>
    <bindings>
        <basicHttpBinding>
            <binding name="customBindingNameForLargeMessages">
  • より大きなreaderQuota値を追加します(ここに表示されている最大値、好みに合わせて調整してください)
        <binding name="customBindingNameForLargeMessages"
          maxReceivedMessageSize="2147483647">
          <readerQuotas maxDepth="2147483647"
             maxStringContentLength="2147483647"
             maxArrayLength="2147483647"
             maxBytesPerRead="2147483647"
             maxNameTableCharCount="2147483647" />
        </binding>
    </basicHttpBinding>
</bindings>
  • カスタムバインディングにマップするエンドポイントを使用して、サービスエントリを作成します。マッピングは、エンドポイントのbindingConfigurationがバインディングの名前と同じである場合に発生します。
  • サービス名コントラクト値が完全に修飾されていることを確認してください。名前空間とクラスの名前を使用してください。
<system.serviceModel>
    <services>
        <service name="Namespace.ServiceClassName">
             <endpoint 
                 address="http://urlOfYourService"
                 bindingConfiguration="customBindingNameForLargeMessages"                     
                 contract="Namespace.ServiceInterfaceName" 
                 binding="basicHttpBinding"
                 name="BasicHTTPEndpoint" />
        </service>
    </services>
于 2013-02-12T18:03:28.343 に答える