Re: running servlet manually

2002-01-24 Thread Ashish kulkarni
i think, if you have that servlet in the package then http://localost:8080/appdir/servlet/subdir.HelloWorldExample will work, or else i think http://localost:8080/appdir/servlet/subdir/HelloWorldExample may also work i dont no for sure about the second case, but the package thing works for sure --

running servlet manually

2002-01-24 Thread Cressatti, Dominique
How do I run manually a servlet located in subdirectory. I mean I can run HelloWorldExample directly (not using web.xml) by doing: http://localost:8080/appdir/servlet/HelloWorldExample when it is located in: /webapp/appdir/WEB-INF/classes/ but how would I do it (specify the subdirectory) if Hell