-
How to Deploy JSP on Bea WebLogic Server (5 messages)
- Posted by: Pardha Saradhi
- Posted on: April 23 2003 05:24 EDT
Hello All,
I had written a sample program in jsp. I am confused in deploying this page on to the weblogic server. Can any one help me in solving my problem. I had installed the Latest version (8.1) of WebLogic Server on my system.
Regards,
Saradhi.Threaded Messages (5)
- How to Deploy JSP on Bea WebLogic Server by Karthikeyan Balasubramaniam on April 23 2003 06:20 EDT
- How to write a .war file for jsp ? by Pardha Saradhi on April 23 2003 10:09 EDT
- user jar utility by Venkata Nagaraju Kallagunta on April 24 2003 07:32 EDT
- How to Deploy JSP on Bea WebLogic Server by Anshuman Purohit on April 24 2003 14:07 EDT
- Deploying ear file in Weblogic 10.3 by Ramesh kumar on May 22 2012 06:23 EDT
-
How to Deploy JSP on Bea WebLogic Server[ Go to top ]
- Posted by: Karthikeyan Balasubramaniam
- Posted on: April 23 2003 06:20 EDT
- in response to Pardha Saradhi
Before deploying on Weblogic, you should create a .war file with all the files needed for your web application namely jsp files,java beans,image files and servlet class files if any needed. Then lanuch your weblogic server using the batch(StartWLS.cmd) file. After your server started, use this link in your machine http://localhost:7000/console to launch the console, login and select your domain and then the web application (.war file) that you want to deploy.
More information read http://e-docs.bea.com/ -
How to write a .war file for jsp ?[ Go to top ]
- Posted by: Pardha Saradhi
- Posted on: April 23 2003 10:09 EDT
- in response to Karthikeyan Balasubramaniam
Dear All,
Can any one suggest, how to write .war file for the jsp page(s). If possible explain the method in detail.
Regards,
Saradhi. -
user jar utility[ Go to top ]
- Posted by: Venkata Nagaraju Kallagunta
- Posted on: April 24 2003 07:32 EDT
- in response to Karthikeyan Balasubramaniam
Dear Saradhi
For creating .war file simple make use of jar utility that is available with j2sdk.
ex: jar cvf HelloWorld.war *.class *.jsp *.java
Hope this will help you. -
How to Deploy JSP on Bea WebLogic Server[ Go to top ]
- Posted by: Anshuman Purohit
- Posted on: April 24 2003 14:07 EDT
- in response to Pardha Saradhi
Saradhi:
There are two ways to deploy your JSP
1. (Prefered) Create a WAR file. Put it in %WEBLOGIC%/config/myserver/applications folder.
2. Just put the JSP in appropreate sub-folder in %WEBLOGIC%/config/myserver/applications
make sure you are running WLS in "Development" mode.
Anshuman -
Deploying ear file in Weblogic 10.3[ Go to top ]
- Posted by: Ramesh kumar
- Posted on: May 22 2012 06:23 EDT
- in response to Anshuman Purohit
Saradhi:
There are two ways to deploy your JSP
1. (Prefered) Create a WAR file. Put it in %WEBLOGIC%/config/myserver/applications folder.
2. Just put the JSP in appropreate sub-folder in %WEBLOGIC%/config/myserver/applications
make sure you are running WLS in "Development" mode.
AnshumanHi folks,
I have just installed Weblogic 10.3 in Linux machine, and i have ear file with me, which i would like to deploy on the same. can someone help me configuring a new admin server and verify whether its working as expected.