i have created and deployed an EAR to my J2ee server. I have logged into visual administrator and went into the server-> services-> deploy and started my application.
I try to run my application:
http://sawzall:50000/RiskMgmt/index.jsp
and get the following error:
Details: File [RiskMgmt/index.jsp] not found in application root of alias [/] of J2EE application [sap.com/com.sap.engine.docs.examples].
-
Here is a snippet of my web.xml from my JSP build:
<web-app>
<display-name>WEB APP</display-name>
<description>WEB APP description</description>
<servlet>
<servlet-name>index.jsp</servlet-name>
<jsp-file>/index.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>index.jsp</servlet-name>
<url-pattern>/RiskMgmt/index.jsp</url-pattern>
</servlet-mapping>
</web-app>
-
I do not see it in my list of applications under my HTTP Provider either.
Any suggestions?