Would sending the data to an applet first do the trick?

document.apple.someProperty=2;

This is how your tag needs to look.

<applet name="apple" MAYSCRIPT></applet>

Another way would be to send GET and POST requests to the servlet.

window.location = "someServlet?blah=foo";

or

populate hidden fields then,

document.formName.submit();


My opinion is that you'll need a 3 tier communication, either
javascript->applet->servlet
or
javascript->servlet->servlet









Get Your Private, Free Email at http://www.hotmail.com

___________________________________________________________________________
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