はい、私のアプリケーションサーバーはhttpsで実行されます。クライアントは、soapアドレスを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 –