Re: perplexing multiple servlet output question..

2001-05-16 Thread Bip Thelin
On Wed, 16 May 2001, John Clark L. Naldoza wrote: > > javax.servlet.RequestDispatcher > > public void include(ServletRequest request, ServletResponse response) > throws ServletException, IOException > > According to the DOCs this would be kinda like SSI's...;-) This is actually how we've solved

Re: perplexing multiple servlet output question..

2001-05-15 Thread Richard Draucker
You can do it by generating your output using javascript document.write from within the servlets to print your results. Ex: Within each servlet include something like... PrintWriter out = response.getWriter(); out.println( "document.write('this is servlet data') ); ...and in your web page put s

Re: perplexing multiple servlet output question..

2001-05-15 Thread John Clark L. Naldoza
Kevin Fonner wrote: > > include()?? Could you please elaborate a little more? I am unfamiliar with > that. > > Thanks, > Kevin > Kindly refer to javax.servlet.RequestDispatcher public void include(ServletRequest request, ServletResponse response) throws ServletException, IOException Acco

Re: perplexing multiple servlet output question..

2001-05-15 Thread Kevin Fonner
include()?? Could you please elaborate a little more? I am unfamiliar with that. Thanks, Kevin - Original Message - From: "John Clark L. Naldoza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 9:11 PM Subject: Re: perplexing multiple s

Re: perplexing multiple servlet output question..

2001-05-15 Thread Kevin Fonner
Yep, I tried that to. Frameset tags don't seem to have scrolling property. - Original Message - From: "Jan Labanowski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Jan Labanowski" <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 7:53 PM Subj

Re: perplexing multiple servlet output question..

2001-05-15 Thread John Clark L. Naldoza
> Kevin Fonner wrote: > > I wanted a web page to display the results of mutiple servlets (maybe > even as many as 30 servlets) in rows on a web page. At first I was > going to try to do it with frames where each frame would load a > servlet. I then ran into a problem. I forgot that frames bind

Re: perplexing multiple servlet output question..

2001-05-15 Thread Jan Labanowski
Try to see if putting a frameset into a frame will help Jan On Tue, 15 May 2001, Kevin Fonner wrote: > I wanted a web page to display the results of mutiple servlets (maybe even as many >as 30 servlets) in rows on a web page. At first I was going to try to do it with >frames where each frame

perplexing multiple servlet output question..

2001-05-15 Thread Kevin Fonner
I wanted a web page to display the results of mutiple servlets (maybe even as many as 30 servlets) in rows on a web page.  At first I was going to try to do it with frames where each frame would load a servlet.  I then ran into a problem.  I forgot that frames bind to a window and that you c

perplexing multiple servlet output question..

2001-05-15 Thread Kevin Fonner
I wanted a web page to display the results of mutiple servlets (maybe even as many as 30 servlets) in rows on a web page.  At first I was going to try to do it with frames where each frame would load a servlet.  I then ran into a problem.  I forgot that frames bind to a window and that you c