• 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

JServ and Netscape incompatibility issue

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think this is probably yet another bug in Netscape 6 than anything to do with JServ.
However I'm getting the following (see below) dumped into my jserv.log file on every request from Netscape 6.0/6.1 (this doesn't happen with any other browser)...it doesn't affect the behaviour of my servlets but I am a little concerned.
Please help...-Nick
[04/09/2001 15:41:42:765 GMT+12:00] java.io.IOException: Broken pipe
at java.net.SocketOutputStream.socketWrite(Native Method)
at java.net.SocketOutputStream.write(SocketOutputStream.java:83)
at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:72)
at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:130)
at org.apache.jserv.JServConnection$JServOutputStream.flush(JServConnection.java:1791)
at org.apache.servlet.ssi.OSServletOutputStream.flush(OSServletOutputStream.java:106)
at org.apache.servlet.ssi.SSIOutputStream.flush(SSIOutputStream.java:86)
at org.apache.servlet.ssi.PageParser.interpretPage(PageParser.java:281)
at org.apache.servlet.ssi.PageParser.process(PageParser.java:140)
at org.apache.servlet.ssi.PageParserServlet.doGet(PageParserServlet.java:341)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:271)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:311)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:317)
at org.apache.jserv.JServConnection.run(JServConnection.java:188)
at java.lang.Thread.run(Thread.java:484)
 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i think this is something to do with which HTTP protocol the browser uses and which one the server expects... ie: 1.0 or 1.1...
Now one of these uses persistent connections and this could be the problem... I know IE5 has a switch in the config for which protocol to use - try browsing the servlets with 1.0 and then 1.1 and see if its different...
Cheers,
 
reply
    Bookmark Topic Watch Topic
  • New Topic