----- Original Message -----
Sent: Tuesday, December 03, 2002 11:38
AM
Subject: frame with servlet as
source
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="no" src=""
name="idFrame">
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="'"+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.
Gianluca