从Java客户端使用WCF服务

时间:2012-12-12 12:37:14

标签: java wcf saas

我有使用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身份验证服务?

1 个答案:

答案 0 :(得分:0)

问题是您要调用的服务需要基本的http身份验证,maybe this previous帖子可以帮助您。