Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Resource not found error.

Status
Not open for further replies.

facemann

Programmer
May 19, 2005
9
0
0
US
I am trying the jsp/servlet login tutorial at I am using the Orion Application Server.
When I run the app I get the following error:
500 Internal Server Error
java.lang.IllegalArgumentException: Resource /PPR_TV/hello?username=&password= not found

I don't understand why it can't find 'hello' since web.xml has the following entry:
<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>login</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>hello</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top