zmień mydło: lokalizacja adresu z http na https

tak mój serwer aplikacji działa na https. Klient prosi o zmianę adresu mydła z http na https.

klient pyta, czy kiedykolwiek chce 2, zobacz wsdl przez broswer adres mydła powinien mieć postać https

dodałem to już w axis2.xml ...

<code><transportReceiver name="https"      class="org.apache.axis2.transport.http.SimpleHTTPServer"> <parameter     name="port">8443</parameter> 
</transportReceiver>
</code>

Dodałem poniżej w service.xml

<code><transports> <transport>HTTPS</transport> </transports> 
</code>

po tagu zamkniętym, ale daje mi poniżej błędu.

daje mi wyjątek

<code>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 – 
</code>

questionAnswers(3)

yourAnswerToTheQuestion