Re: Servlet Output to new Target Browser

1999-09-17 Thread Slava Kozlov
> -Original Message- > From: A mailing list for discussion about Sun Microsystem's Java Servlet > API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of > Huegele, Karin N. > Sent: Friday, September 17, 1999 1:32 PM > To: [EMAIL PROTECTED] > Subject: Re: Se

Re: Servlet Output to new Target Browser

1999-09-17 Thread Huegele, Karin N.
hanks! -- karin -- -Original Message- From: Nic Ferrier [mailto:[EMAIL PROTECTED]] Sent: Friday, September 17, 1999 10:42 AM To: [EMAIL PROTECTED] Subject: Re: Servlet Output to new Target Browser 1. JavaScript calls the applet to create the data 3. applet serializes data to a string (

Re: Servlet Output to new Target Browser

1999-09-17 Thread Nic Ferrier
>>> "Huegele, Karin N." <[EMAIL PROTECTED]> 9/17/99 6:24:46 PM >>> >However, what I don't know how to do is how >to stream the hmtl that the applet gets back from the servlet to a new >browser window. You can't do it. Well, you can, but it would mean having your applet act as an HTTP server and

Re: Servlet Output to new Target Browser

1999-09-17 Thread Huegele, Karin N.
1999 10:36 AM To: [EMAIL PROTECTED] Subject: Re: Servlet Output to new Target Browser > -Original Message- > From: A mailing list for discussion about Sun Microsystem's Java Servlet > API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of > Huegele, Karin N. > Sent: F

Re: Servlet Output to new Target Browser

1999-09-17 Thread Huegele, Karin N.
ECTED]] Sent: Friday, September 17, 1999 11:44 AM To: [EMAIL PROTECTED] Subject: Re: Servlet Output to new Target Browser why don't you let servlet put the html content in an object send use http object send back to the applet? You can avoid the use of temporary file. -Original Message---

Re: Servlet Output to new Target Browser

1999-09-17 Thread
TECTED]]On Behalf Of Huegele, Karin N. Sent: Friday, September 17, 1999 7:05 AM To: [EMAIL PROTECTED] Subject: Servlet Output to new Target Browser Importance: Low Hello All! I was wondering if somebody might have a better solution to the problem that I have: What I need to do is send data from an a

Re: Servlet Output to new Target Browser

1999-09-17 Thread Slava Kozlov
> -Original Message- > From: A mailing list for discussion about Sun Microsystem's Java Servlet > API Technology. [mailto:[EMAIL PROTECTED]]On Behalf Of > Huegele, Karin N. > Sent: Friday, September 17, 1999 10:05 AM > To: [EMAIL PROTECTED] > Subject: Servlet Ou

Re: Servlet Output to new Target Browser

1999-09-17 Thread Nic Ferrier
1. JavaScript calls the applet to create the data 3. applet serializes data to a string (using ObjectOutputStream(StringWriter)) - you'll need some extra plumbing though 2. a method returns the data JavaScript which stores it in a hidden field on a form pointing to your servlet 3. JavaScript SUBM

Servlet Output to new Target Browser

1999-09-17 Thread Huegele, Karin N.
Hello All! I was wondering if somebody might have a better solution to the problem that I have: What I need to do is send data from an applet to a servlet, then have the servlet format the data and launch a new browser window to display the formatted data. The solution that I came up with is: 1. o