I have a web application runnung on Tomcat. Could some one give me a step by step process of migrating the app to weblogic server.
Thanks
-
Deploying web applications on weblogic 5.1.0 (3 messages)
- Posted by: Lina Verma
- Posted on: June 25 2001 13:44 EDT
Threaded Messages (3)
- Deploying web applications on weblogic 5.1.0 by Nathan Phillips on June 25 2001 13:50 EDT
- Deploying web applications on weblogic 5.1.0 by Lyndon Samson on June 26 2001 04:26 EDT
- Deploying web applications on weblogic 5.1.0 by Lina Verma on June 26 2001 15:54 EDT
-
Deploying web applications on weblogic 5.1.0[ Go to top ]
- Posted by: Nathan Phillips
- Posted on: June 25 2001 13:50 EDT
- in response to Lina Verma
You shouldn't have to do a whole lot to migrate. Just a few configuration tweaks that you can find out about from the WL documentation for 5.1
http://www.weblogic.com/docs51/classdocs/webappguide.html -
Deploying web applications on weblogic 5.1.0[ Go to top ]
- Posted by: Lyndon Samson
- Posted on: June 26 2001 04:26 EDT
- in response to Lina Verma
Just add to weblogic.properties ( or whatever your props files is )
weblogic.httpd.webApp.MyWebAppName=/mywebapppath/mywebapp.war
The above can also point to an unjared directory.
Also you must enable JSP if you are using them, search the props file for WEBLOGIC JSP PROPERTIES and follow the instructions.
-
Deploying web applications on weblogic 5.1.0[ Go to top ]
- Posted by: Lina Verma
- Posted on: June 26 2001 15:54 EDT
- in response to Lyndon Samson
I have a file called web.xml, where should I put this file?