Java Servlets doesn't provide anything for the communication of two explorer window as 
it is a server side language. For this you have to use some client side scripting.

The following javascript code should be in the child window.

<SCRIPT LANGUAGE="JavaScript">
function openLink(path)
{
window.opener.parent.location = path;
}
</SCRIPT>

This is the use of above javascripting.

<a href="javascript:openLink('/servlet/xyz')">Servlet</a>


Thanks & Regards
Bhushan Bhangale
Consultant
http://www.netacross.com
Chequemail.com - a free web based e-mail service that also pays!!!
http://www.chequemail.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