IE violates html standards in so many weird ways! Try
"location.replace()" or "location=" instead of "location.href=" like this -

parent.frames["idFrame"].location="../servlet/blahblah";

    or

parent.frames["idFrame"].location.replace("../servlet/blahblah");


--  Paul Copeland, JOT Object Technologies - http://www.jotobjects.com

----------------------------------------------------------------------

Date:    Tue, 3 Dec 2002 11:38:09 +0100
From:    Gianluca Cecchini <[EMAIL PROTECTED]>
Subject: frame with servlet as source

This is a multi-part message in MIME format.

------=_NextPart_000_0040_01C29AC0.746D1760
Content-Type: text/plain;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hi, my name is Gianluca.
Sorry for my english. This is the problem:  i have an html page in which =
there is a frame that has a servlet with parameters as source, something =
like this:

   <frame noresize scrolling=3D"no" =
src=3D"servlet/servletName?param1=3Dvalue1" name=3D"idFrame"> =20

The servlet does an access to RDBMS and with the class OracleXMLQuery =
creates an XML stored in memory with ByteArrayInputStream, the XML is =
transformed with an
XSL document in text/html type using the package javax.xml.transform =
(jaxp-api.jar). All the procedure seems to work perfectly, the new page =
is loaded on the frame when a request is occurred, the problem is that =
on IE 6.0, after that the frame is been reloaded, the progress bar is =
started and seems that there is some request that remains hung. For me =
all the process are finished and i don't understand because the progress =
bar is started and because it remains hung. The source on the frame is =
changed with something like this:

parent.frames["idFrame"].location.href=3D"../servlet/servletName?param1=3D=
'"+valueN+"'";

I have tried to close all the objects remained eventually opened (i.e. =
OutputStream) but without any result.

On Netscape 7.0 this problem is not presented.

Is an IE6.0 problem only or is something in my configuration?

Thanks in advantage.=20
Gianluca
   =20

___________________________________________________________________________
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