Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

load bar in the status bar don't stop!

Status
Not open for further replies.

Izzac

Programmer
Jan 26, 2001
20
CA
Hi,

I use servlets with IE5.5, Apache 1.3.12, Jserv 1.1.2

I've a problem with the load bar (that give the state of page download) in the status bar. I call a servelt that define 2 frames, all work perfectly, the content of the 2 frames (that are also a servelts) is downloaded completely but, sometimes, the load bar continues like when the page is not responding. This can last several minutes.

If I take the content (generated by the servelts) of the 2 frames with the framseset definition, and I put this in static HTML page, I've no problem with the load bar.

Does anybody know why the load bar don't stop ?
thanks
 
I had once met a similar problem.My JSP page forwarded by a servlet never loaded but the status bar was in the loading state.
However after typing
System.out.println("whatever it is");
to some stages of my jsp.I saw that,in a critical situation my program had entered in a endless loop.That is why it never worked.

So firstly I suggest you to print
System.out.println(<String>); to various stages of your servlet,or jsp.In that way you may see what happens inside your transactions.
Salih Sipahi
Software Engineer.
City of Istanbul Turkey
openyourmind77@yahoo.com
 
thanks Hattusas

But the last lines of each of my 3 servelts (out.print(&quot;<!-- comment -->&quot;))are in the source of frame (and frameset) that i can see with IE.

unfortunately (?!), no endless loop!
 
No no no.Not in your browser.I never used Tomcat I am using WebLogic 6.1 and in the console of Weblogic I can see the System.out.println(<String>);
By the way notice that not I wrote:System.out.println(<String>);
I didn't write

out.println(String);

There must be a way that you can see the prints you type by using System.out.println(<String>);
Salih Sipahi
Software Engineer.
City of Istanbul Turkey
openyourmind77@yahoo.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top