• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to deploy WAR file in weblogic 5.1

 
Ranch Hand
Posts: 92
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know and actually done that -- create a war file and deploy and configure in weblogic 5.1 and test it?
If someone would kindly give me some insight and I would appreciate it.
 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We've done that in our previous project. The .war file included all the JSPs, Servlets, and Utility classes(such as Java Beans), along with HTML pages, and image files. The tests went thru fine and our application now runs using this .war file.
If you are looking for general info. on this topic, please visit http://www.weblogic.com/docs51/classdocs/webappguide.html.
That's what we did, when we started off with the idea to deploy applications as .war files.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Asuthosh Borikar
I am trying to deploy war file in weblogic 5.1.
Well i have prepared war file on my local drive here are the steps:
1.Create directory MyApp and subdirectories META-INF & WEB-INF
2.Create subdirectory classes in WEB-INF
3.Put all Jsp,HTML in MyApp directory and Java Bean,Servlets in
MyApp/WEB-INF/classes.
4.Create web.xml and weblogic.xml and put it in MyApp/WEB-INF directory.
5.Generate war file using jar -cvf MyApp.war MyApp
6.Put war file in weblogic/myserver directory
7.Update weblogic.properties with following path
weblogic.httpd.webApp.MyApp=e:/weblogic/myserver/MyApp.war
When i start the weblogic server it giving me the following error
web.xml not found in weblogic/WEB-INF directory.
can you please help me out.

Originally posted by Asuthosh Borikar:
We've done that in our previous project. The .war file included all the JSPs, Servlets, and Utility classes(such as Java Beans), along with HTML pages, and image files. The tests went thru fine and our application now runs using this .war file.
If you are looking for general info. on this topic, please visit http://www.weblogic.com/docs51/classdocs/webappguide.html.
That's what we did, when we started off with the idea to deploy applications as .war files.


 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guyz... The link provided was broken can anyone teach me how to deploy WAR file in weblogic 5.1 ? It is very important to me now.. Thank guyz...
 
Ranch Hand
Posts: 1871
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This link works
http://www.weblogic.com/docs51/classdocs/webappguide.html
reply
    Bookmark Topic Watch Topic
  • New Topic