Was your servlet container running at the time? Does it work from a browser?
SCJP
anuj khanna
Greenhorn
Joined: Jan 11, 2001
Posts: 20
posted
0
servletrunner was running.whats servlet container the servletrunner was showing init when the applet called the servlet
Marius Holm
Ranch Hand
Joined: Sep 11, 2000
Posts: 84
posted
0
Anuj, If you could give some more details, perhaps it would be easier for people to help you. Like WHAT server do you run? You don't know what a servlet container is? If you gave more info that would perhaps have been obvious to the person above who tried to answer your question. But, if you come here for the social aspect, I meen if that is what you want, to have a correspondence going on here for weeks, then you might perhaps do just the right thing... Good luck with your problem, whatever it is... Marius
anuj khanna
Greenhorn
Joined: Jan 11, 2001
Posts: 20
posted
0
well i'm not using any server but using servletrunner which is used to view how a sevlet works i don't have java web server.i'm stuck with this problem and not able to move ahead in my project. well i'm new to servlet programming. thanks anyway
typksn
Greenhorn
Joined: Feb 05, 2001
Posts: 3
posted
0
Were you able to find a solution? If not, do you know if the servlet has a process id, which indicates that it is truly running?
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
1
posted
0
That error message: "using serveletrunner error:FileNotFoundException:http://localhost:8080/servlet/srveapp" suggests that servlet runner was looking for a "srveapp.class" - maybe there is just a spelling error somewhere. "servlet container" is the way Sun talks about any servlet engine - the idea being that a servlet container provides specific functions for a servlet that "lives" inside it. Bill