Re: how to dynamically include a servlet in a jsp page (jsp1.0ea) ?

1999-06-09 Thread Hans Bergsten
Marc Bordessoule wrote: > > Hi, > > I am trying to dynamically include a servlet in a jsp page but i receive > a Internal Servlet Error: > > 1 - the page.jsp > ... > > > > 2 - the servlet : > > public class myservlet extends HttpServlet > { >public void doGet(HttpServletRequest req, Http

Re: how to dynamically include a servlet in a jsp page (jsp1.0ea) ?

1999-06-09 Thread Jenkins, Ed
>PrintWriter out = new PrintWriter(resp.getOutputStream()); >out.println("my informations"); >Any ideas? thanks in advance. Maybe replace "out" with another name. === To unsubscribe, send email to [EMAIL PROTECTED] and inclu

how to dynamically include a servlet in a jsp page (jsp1.0ea) ?

1999-06-09 Thread Marc Bordessoule
Hi, I am trying to dynamically include a servlet in a jsp page but i receive a Internal Servlet Error: 1 - the page.jsp ... 2 - the servlet : public class myservlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws Se