Hello,

I have the following method in a class derived from HttpServlet:

public synchronized void service(HttpServletRequest req, HttpServletResponse res) 
throws ServletException,IOException {
        RequestDispatcher disp = getServletContext().getNamedDispatcher("jsp");
    disp.forward(req, res);
}

and i keep getting a 404(file not found), but i have associated the file with a 
url-pattern, which differs from /*.jsp, so the file is there.
How do i involk the com.evermind.server.http.JSPServlet, to parse this given request.

p.s. im actually trying to use jsp as a preprocessor for generation of scripts which 
will then be converted to a binairy reponse. I hope im correct when i use the 
RequestDispatcher.include() with a ServletResponse(implementation), which i will 
convert to a String. 

-- 
Eduard Witteveen        Systeemontwikkelaar NOS Internet
Mediacentrum Kamer 203, tel. +31(0)35 6773059

Sed quis custodiet ipsos custodes? : The sixth Satire from Juvenal

Reply via email to