What's the best way to expose a SOAP web service through multiple context roots/urls?
Example:
http://server:8080/app/services/1.1.0/service
http://server:8080/app/services/1.2.0/service
should point to the same web service.
The services are stateless session beans. We've tried creating a servlet to forward requests to the appropriate
actual service but it failed to forward the security context to the web service.
Thanks!