I have written my webservice with https. but as per requirement I should provide authentication. so thought of going with SSL (HTTPs). Could anyone help me with steps like moving HTTP to HTTPs and SSL certification part with step by step.
i did by adding below in service and axis xml files:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/root/my_workspace/server.keystore" keystorePass="changeit"/>
<transportReceiver name="http" class= "org.apache.axis2.transport.http.AxisServletListener">
<parameter name="port">8080</parameter>
</transportReceiver>
<transportReceiver name="https" class= "org.apache.axis2.transport.http.AxisServletListener">
<parameter name="port">8443</parameter>
</transportReceiver>
but I don't want to access through HTTP. How can I restrict?
Also I created the WDSL request via eclipse, the value tag starts with "q0" and response has return tag as well. so how can avoid and go with custom req/response?