【发布时间】:2012-04-21 05:47:18
【问题描述】:
是的,我的应用程序服务器在 https 上运行。客户要求将肥皂地址从 http 更改为 https。
客户要求无论何时他想要 2 通过浏览器查看 wsdl,soap 地址应为 https
我已经在axis2.xml中添加了这个...
<transportReceiver name="https" class="org.apache.axis2.transport.http.SimpleHTTPServer"> <parameter name="port">8443</parameter>
</transportReceiver>
我在 service.xml 中添加了以下内容
<transports> <transport>HTTPS</transport> </transports>
在关闭标签之后,但它给了我以下错误。
它给了我例外
org.apache.axis2.deployment.DeploymentException: Service [ RTAPDevService] is trying to expose in a transport : <transports> <transport>HTTPS</transport> </transports> and which is not available in Axis2 –
【问题讨论】:
标签: java web-services soap axis2