Hi All,
I am delploying my first JSP in weblogic, but with problems. Your advice on this would greatly help. This is what I have done so far.
1) Created a new server instance in weblogic
C:\Data\user_projects\domains\mydomain
2) Created my applications directory in this server named PMO
C:\Data\user_projects\domains\mydomain\applications\PMO
3) Created the WEB-INF directory in the PMO directory
C:\Data\user_projects\domains\mydomain\applications\PMO\WEB-INF
4) placed the web.xml file in the WEB-INF
<web-app>
<description>Web Tier DD for the DashBoard application</description>
<servlet>
<servlet-name>a</servlet-name>
<jsp-file>a.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>a</servlet-name>
<url-pattern>/PMO/a.jsp</url-pattern>
</servlet-mapping>
</web-app>
5) Wrote a jsp. (a.jsp) and the directory structure is
C:\Data\user_projects\domains\mydomain\applications\PMO\a.jsp
6) started the server and tried the url
http://localhost:7001/PMO/a.jsp 7) 404 error. In the server log got the following line
####<Jul 13, 2007 3:16:28 PM IST> <Debug> <HTTP> <MAAINI428015G> <myserver> <ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <BEA-101147> <HttpServer(12842832,null default ctx,myserver) Found no context for "/PMO/a.jsp". This request does not match the context path for any installed Web applications, and there is no default Web application configured.>
ANY IDEA ON WHAT I AM MISSING WILL BE HIGHLY APPRECIATED. Thanks.
Rajesh