• 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

java web server 2.0 crashing

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I am using jdk1.2.2 and java web server 2.0 with patch4.
I am trying to run the java web server using the following
httpdnojre -vmargs "-mx768M -ms384M" -javahome "c:\jdk1.2.2"
the java web server is crashing every few seconds with the following error message.
javawebserver: c:\javawebserver2.0\bin\..\bin\jserv.exe
javawebserver: Program c:\jdk12~1.2\bin\java.exe exited with code 1073807364
javawebserver: c:\javawe~1.0\bin..\bin\jserv.exe
java web server WARNING: Server javawebserver unexpectedly exited with code 1073807364.
Even we have tried out the following
jserv -javahome c:\jdk1.2.2 -vmargs -Djava.compiler=NONE
In this case also the javawebserver is crashing after every few minutes
javawebserver: c:\javawebserver2.0\bin\..\bin\jserv.exe
javawebserver: Program c:\jdk12~1.2\bin\java.exe exited with code 1073807364
javawebserver: c:\javawe~1.0\bin..\bin\jserv.exe
java web server WARNING: Server javawebserver unexpectedly exited with code 1073807364.
I shall be thankful if some one helps me in resolving the problem.
Can any one help me out in finding out the exact problem with the java web server crashing all of a sudden.
Thank you in anticipation.
Krishna
 
Sheriff
Posts: 3341
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I beleive in JDK 1.2(and I no longer have this on any machine so I can't verify this) they remove the ms arguement(or it didn't function so they removed it from 1.3 I can't fully remember when this happened.) However, by the looks of your error, your code has infiniate recursion going on and you are erroring out on Stack overflow. What is the code where this is occuring?
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic