cancel
Showing results for 
Search instead for 
Did you mean: 

deploying & running jsp

Former Member
0 Kudos

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?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

My apologies, I questioned too early. I have figured it out. I had deployed and started, but did not understand the Context Root. I did not know that I needed to change the context root of the application.xml of my EAR. Now that I have found that and changed it, my application is working properly.