• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tomcat servlets( and jsps) loading delay in Netscape 4.7

 
Ranch Hand
Posts: 200
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I notice that there is a lot of delay when i load my servlets a jsps using Netscape 4.7. The servlets / jsps are hosted on Tomcat server.
But they r loaded quite faster in Internet explorer. Any idea y???
 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This happens consistently? I mean, if you hit the refresh button in Netscape, it still takes a long time? Or only the first time?
 
Sajee Joseph
Ranch Hand
Posts: 200
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
It come always. eeven with refresh i get the same delay
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Netscape 4.n has a notoriously bad display engine. Chances are that your response contains HTML that is taking the Netscape engine a long time to display. For example, deeply nested tables can drive it nuts! There are also certain combinations of CSS elements that I've found cause it to take forever to display the page.
If performance on Netscape 4.n is important for your app, you're best bet is to examine the resulting HTML for complexities (the deeply nested table instance being a likely suspect), and to simplify it when sending a respone to Netscape.
hth,
bear
 
Sajee Joseph
Ranch Hand
Posts: 200
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Do anyof u have any URLs that describe the problems with Netscape 4.x??
Regards
Saj
reply
    Bookmark Topic Watch Topic
  • New Topic