i have a service class that i can use in my actions by passing the servlet
variable to it
    MyService service = new MyService(servlet);
        or
    MyService service = new MyService()
    service.setServlet(servlet);

this works fine on my action classes. My question is
how can i use this service in a normal servlet.

public class MyServlet extends HttpServlet{
    ....
}

how can i pass the servlet variable and how to get it so i can use my
service in a normal servlet. Please help me
thanks.

-richard



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to