Hi
I just wanted to know If i can put my .jsp files in my websphere application server. Where exactly do i need to put my files.
Any suggestions will be really helpfull.
Thanx
Nitesh
-
JSP with websphere (6 messages)
- Posted by: Nitesh Garg
- Posted on: November 15 2002 11:27 EST
Threaded Messages (6)
- JSP with websphere by Web Master on November 15 2002 13:21 EST
- JSP with websphere by Nitesh Garg on November 15 2002 14:09 EST
-
JSP with websphere by Web Master on November 15 2002 02:33 EST
-
JSP with websphere by Nitesh Garg on November 16 2002 11:17 EST
-
JSP with websphere by Web Master on November 17 2002 08:01 EST
- JSP with websphere by Web Master on November 17 2002 08:02 EST
-
JSP with websphere by Web Master on November 17 2002 08:01 EST
-
JSP with websphere by Nitesh Garg on November 16 2002 11:17 EST
-
JSP with websphere by Web Master on November 15 2002 02:33 EST
- JSP with websphere by Nitesh Garg on November 15 2002 14:09 EST
-
JSP with websphere[ Go to top ]
- Posted by: Web Master
- Posted on: November 15 2002 13:21 EST
- in response to Nitesh Garg
Put them in your WAR and deploy your WAR using WebSphere's admin console, WebSphere will take care of the rest. -
JSP with websphere[ Go to top ]
- Posted by: Nitesh Garg
- Posted on: November 15 2002 14:09 EST
- in response to Web Master
Thanx for replying,
can u tell me a litlle about how to construct .war and .ear files from my .jsp files.
Thanx alot
Nitesh -
JSP with websphere[ Go to top ]
- Posted by: Web Master
- Posted on: November 15 2002 14:33 EST
- in response to Nitesh Garg
sure
Below is a WAR directory structure. Use ANT to create the WAR or simply jar the files into a .WAR
jsps
other web folders
[WEB-INF]
web.xml
[lib]
jars
[classes]
classes
An EAR contains the WAR as well as ejb jars and a META-INF folder that contains your application.xml.
If you only have jsp's, simply create the WAR and WebSphere will create the EAR (with application.xml) for you when you deploy. It will ask you for your context root which it sticks in the application.xml.
Hope that works for you... -
JSP with websphere[ Go to top ]
- Posted by: Nitesh Garg
- Posted on: November 16 2002 23:17 EST
- in response to Web Master
Thanx alot. But i am still in little trouble.
I have made the .ear and .war using the Application Assembly Tool. Its showing the content correctly under the installedApps. I have index.html and start.jsp files. But I am not able to run it using
http://localhost:9080/webapp/ATFP/index.html
where /webapp/ATFP is my contect root. I have done everything like mentioned in
http://www.intrinsyc.com/support/j-integra/doc/servlet_com/deployingJSPtoWS.html
except that i havenot installed their integra software, as I feel that is unnecessary.
Pls Advice.
Thanx in advance
Nitesh -
JSP with websphere[ Go to top ]
- Posted by: Web Master
- Posted on: November 17 2002 08:01 EST
- in response to Nitesh Garg
integra is not necessary.
Maybe double-check that your server is bound to port 9080 as your URL shows. Most installations Ive done have defaulted to port 8080. Also, if your app server is running with IBM HTTP Server in front, then you dont need to specify the port at all since it uses port 80 and it passes requests for JSP's back to WebSphere.
Other than that, Im out of suggestions.
Good luck... -
JSP with websphere[ Go to top ]
- Posted by: Web Master
- Posted on: November 17 2002 08:02 EST
- in response to Web Master
I take that back, 9080 is usually the default (I was thinking Tomcat, not WebSphere).
Still double check your port though...