Hey!

If I understand your question, get a reference to your applet (e.g. theApplet in this 
case) and do this:

In the applet
this.getAppletContext().showDocument(theURL, name);

or, in the helper class pass the reference to the applet (theApplet)

theApplet.getAppletContext().showDocument(theURL, name);

where theURL is like this:
"http://your_server/servlet/yourServlet?yourParam=yourParamValue"

where name is like this:

"My wonderful Servlet"

Sans adieu,
Danny Rubis

Number Six wrote:

> Hi,
>
> let's say I have an applet running in my browser that mimic a POST method to process 
>a form and receives an HTML answer from the server. How can I pass that HTML in a 
>frame of my browser ? So far, no success...
>
> thanks,
>
> Roswell
>
> ___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to