How can I install one Web Application in two context roots in Weblogic 10g?
|
This is a packaging issue. Package the WAR twice, each with a specific
For the second WAR:
This will allow you to use standard deployment tools. I don't recommend installing your application as a shared library. | |||
|
feedback
|
|
If you really need this, I recommend making your application a shared library and creating just a new web.xml file to change the context root for the two deployments. This way you won't duplicate the entire war file and you still can configure them individually. | |||
|
feedback
|
|
Assuming you have an Apache reverse proxy in front of the app server, you could use mod_rewrite to change the context root on-the-fly on the server side (transparent for the client).
Respectivly, you could make the obvious translation to translate the second context root to the other single context root. | |||
|
feedback
|