I have two Servlets ("A" and "B"
- both reside for the same server on the same machine. I need to call a method residing in Servlet "B" from Servlet "A" and pass back a parameter from the method I called in Servlet "B" to be used by Servlet "A".
I have messed with:
getServletConfig().getServletContext().getServlet("DBService"
;
and kept getting deprecation errors (and besides, it didn't seem to work!)
What should I be looking at to do? setAttribute()?
Thanks for your time?
> Muds
I have messed with:
getServletConfig().getServletContext().getServlet("DBService"
and kept getting deprecation errors (and besides, it didn't seem to work!)
What should I be looking at to do? setAttribute()?
Thanks for your time?
> Muds