The servlet in examples directory gets executed and the response is sent
back.
But the Servlet calls to Local Classes is not executed.
What is the problem?
TO be specific, I have servlet called Start and within this servlet Start ,
one more Instance of an Object is created like this:
servlet start....
Send a response;
procthread pp = new procthread(string,string);
pp.start();
wait();
send a response;
The above code is not executed. But what ever the code before these two
lines is executed??
Thanks