我使用sun-jaxws制作了wsdl。我在Netbeanse中创建了Web服务客户端,并成功调用了wsdl Web服务。然后我将我的nginx服务器配置为通过https访问Web服务。当我通过https呼叫服务时,我收到错误com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 200: OK
我的wsdl可通过地址https://somesite.com/mywsdl/?wsdl
获取。在wsdl里面,我看到了这样的服务位置:
<service name="GenericService">
<port name="GenericServicePort" binding="tns:GenericServicePortBinding">
<soap:address location="https://somesite.com:443/mywsdl"/>
</port>
</service>
我不知道我的nginx配置中的问题,还是我的jaxws中的问题。
答案 0 :(得分:3)
问题在于我网址中的额外斜线。我将网址从https://somesite.com/mywsdl/?wsdl
更改为https://somesite.com/mywsdl?wsdl
,问题就消失了。