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 ...

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

Dodałem poniżej w service.xml

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

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

daje mi wyjątek

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 –