2

おそらく明らかなことを見逃していますが、WCF サービスの PutMessage という 1 つのメソッドが GZip された要求と通常の要求の両方を受け入れるようにするにはどうすればよいでしょうか? 現在、サービスから次のエラーが表示されています。

Cannot process the message because the content type 'application/gzip' was not the expected type 'text/xml; charset=utf-8'.

binaryMessageCoding/compressionFormat="GZip" と httpTransport を使用してカスタム バインディングを追加しようとしました。これには、複数のバインディングと複数のエンドポイントを構成する必要がありますか? それとも複数のバインディングと 1 つのエンドポイントですか? 1 つのエンドポイントと 1 つのバインディング?

アクセス権のないサードパーティであるため、送信コードを変更できません。

これまでの私の Web.config は次のとおりです。

  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="UserNameAuthenticationBehaviour">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
          <serviceCredentials>
            <userNameAuthentication userNamePasswordValidationMode="Custom" customUserNamePasswordValidatorType="API.Star.XXXUsernamePasswordValidator, API" />
          </serviceCredentials>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <basicHttpBinding>
        <binding name="API.Star.starTransport">
          <security mode="TransportWithMessageCredential">
            <transport clientCredentialType="Basic" />
            <message clientCredentialType="UserName" />
          </security>
        </binding>
      </basicHttpBinding>
      <customBinding>
        <binding name="API.Star.starTransportGzip">
          <binaryMessageEncoding compressionFormat="GZip" />
          <httpTransport />
        </binding>
      </customBinding>
    </bindings>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
    <services>
      <service name="API.Star.StarWebService" behaviorConfiguration="UserNameAuthenticationBehaviour">
        <endpoint name="StarWebServiceEndpoint" address="" binding="basicHttpBinding" bindingConfiguration="API.Star.starTransport" contract="API.Star.operations" bindingNamespace="http://www.starstandards.org/webservices/2005/10/transport" />
        <endpoint name="StarWebServiceEndpointGzip" address="" binding="customBinding" bindingConfiguration="API.Star.starTransportGzip" contract="API.Star.operations" bindingNamespace="http://www.starstandards.org/webservices/2005/10/transport" />
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
    </services>
  </system.serviceModel>
4

1 に答える 1