Hi All,
recently I got two very strange exceptions (I've never seen it before):


500 Internal Server Error
/scripts/master/pi_wizard.jsp:

null
java.lang.NullPointerException
 at
allaire.jrun.jsp.JRunJSPStaticHelpers.getStackTraceLineNumber(../jsp/JRunJSP
StaticHelpers.java:185)
 at
allaire.jrun.jsp.JRunJSPStaticHelpers.getStackTraceLineNumber(../jsp/JRunJSP
StaticHelpers.java:176)
 at
allaire.jrun.jsp.JRunJSPStaticHelpers.handleException(../jsp/JRunJSPStaticHe
lpers.java:116)
 at
jrun__scripts__master__pi_wizard2ejsp1d._jspService(jrun__scripts__master__p
i_wizard2ejsp1d.java:1315)
 at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
 at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
 at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
 at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
 at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
 at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
 at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
 at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
 at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
 at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
 at allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
 at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
 at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)

here string regarding my code (pi_wizard.jsp) refers to the following
JRun-added code block (in compiled jsp page):

} catch(Throwable t) {
            if(t instanceof ServletException)
                throw (ServletException) t;
            if(t instanceof java.io.IOException)
                throw (java.io.IOException) t;
            if(t instanceof RuntimeException)
                throw (RuntimeException) t;
            throw JRunJSPStaticHelpers.handleException(t, pageContext);
            }
 finally {
             __jspFactory.releasePageContext(pageContext);
}

After minor changes I've got the following message:

500 Internal Server Error
/scripts/master/pi_wizard.jsp:

d:\inetpub\scripts\login.jsp (Too many open files)
java.io.FileNotFoundException: d:\inetpub\scripts\login.jsp (Too many open
files)
 at java.io.FileInputStream.open(Native Method)
 at java.io.FileInputStream.(FileInputStream.java:64)
 at java.io.FileInputStream.(FileInputStream.java:95)
 at
allaire.jrun.resource.LocalFile.getInputStream(../resource/LocalFile.java:49
)
 at
allaire.jrun.servlet.JRunURLConnection.getInputStream(../servlet/JRunURLConn
ection.java:106)
 at java.net.URL.openStream(URL.java:798)
 at allaire.jrun.jsp.JSPParser.directive(../jsp/JSPParser.java:668)
 at allaire.jrun.jsp.JSPParser.parse(../jsp/JSPParser.java:598)
 at allaire.jrun.jsp.JSPParser.writeXML(../jsp/JSPParser.java:151)
 at allaire.jrun.jsp.JSPParser.generateXML(../jsp/JSPParser.java:123)
 at allaire.jrun.jsp.JSPParser.generateXML(../jsp/JSPParser.java:67)
 at allaire.jrun.jsp.JSPServlet.parsePage(../jsp/JSPServlet.java:409)
 at allaire.jrun.jsp.JSPServlet.createServlet(../jsp/JSPServlet.java:381)
 at allaire.jrun.jsp.JSPServlet.loadPage(../jsp/JSPServlet.java:202)
 at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:169)
 at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
 at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
 at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
 at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
 at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
 at allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
 at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
 at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)


The mentioned file (login.jsp) exists...

Any suggestions?

Regards,
Vit.


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to