是的,我的应用程序服务器在 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 –