Since I can't find solid example on how to solve this problem, I'm gonna ask here. Please point me the links to threads if this has been asked here before.
I tried deploying this sample Spring JAX-WS project to Tomcat.
<bean class="org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter">
<property name="baseAddress" value="http://localhost:9999/"/>
</bean>
Now, everything ran fine. However, I need the address to be HTTPS so I changed it to:
<bean class="org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter">
<property name="baseAddress" value="https://localhost:8443/"/>
</bean>
When I restarted the application, I got this message
java.lang.IllegalArgumentException: https protocol based address is not supported
How can I deploy this Spring based JAX-WS with HTTPS ?