0

私はbasicHttpBindingでWCFサービスを持っています:

 <basicHttpBinding>
    <binding name="DefaultBasic" closeTimeout="00:30:00" openTimeout="00:30:00"
      receiveTimeout="05:00:00" sendTimeout="00:30:00" maxBufferSize="655360000"
      maxBufferPoolSize="524288000" maxReceivedMessageSize="655360000">
      <readerQuotas maxDepth="655320000" maxStringContentLength="655320000"
        maxArrayLength="655320000" maxBytesPerRead="655320000"        maxNameTableCharCount="655320000" />
      <security mode="TransportCredentialOnly">
        <transport clientCredentialType="Basic" />
        <message clientCredentialType="UserName" />
      </security>
    </binding>
  </basicHttpBinding>

Java クライアントはこのサービスを利用できますか? 同僚は、wsdl のこの部分が問題であると言いました。

<wsp:Policy wsu:Id="Basic_policy">
 <wsp:ExactlyOne>
   <wsp:All>
       <http:BasicAuthentication     xmlns:http="http://schemas.microsoft.com/ws/06/2004/policy/http"/>
   </wsp:All>
 </wsp:ExactlyOne>
</wsp:Policy>

編集: Java クライアントは Windows 認証でサービスを利用できますか?

4

1 に答える 1

0

問題は、呼び出したいサービスが基本的な http 認証を必要とする ことです。この以前の投稿が役立つかもしれません。

于 2012-12-12T12:48:43.680 に答える