You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by AC...@btabank.ru on 2009/11/11 09:09:37 UTC

PLEASE HELP ME!!!

After autorization on http server occure this problem.
What's happened, who know? Please help me.


HTTP Status 500 - 

type Exception report
message 
description The server encountered an internal error () that prevented it 
from fulfilling this request.

org.apache.jasper.JasperException: null
 
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:460)
 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
 javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
 ftc.budget.common.tomcat.CharsetFilter.doFilter(CharsetFilter.java:41)

root cause 
java.lang.NumberFormatException: null
                 java.lang.Integer.parseInt(Unknown Source)
                 java.lang.Integer.parseInt(Unknown Source)
 
org.apache.jsp.check_005fenter_jsp._jspService(check_005fenter_jsp.java:61)
 ftc.budget.servlet.BudgetJspPage.service(BudgetJspPage.java:71)
 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
 javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
 ftc.budget.common.tomcat.CharsetFilter.doFilter(CharsetFilter.java:41)

note The full stack trace of the root cause is available in the Apache 
Tomcat/5.5.27 logs.

Apache Tomcat/5.5.27

Anton Chudesnikov.

Re: PLEASE HELP ME!!!

Posted by Pid <pi...@pidster.com>.
On 11/11/2009 08:57, André Warnier wrote:
> AChudesnikov@btabank.ru wrote:
>> After autorization on http server occure this problem.
>> What's happened, who know? Please help me.
>>
>>
>> HTTP Status 500 -
>> type Exception report
>> message description The server encountered an internal error () that
>> prevented it from fulfilling this request.
>>
>> org.apache.jasper.JasperException: null
>>
>> org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:460)
>>
>>
>> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
>>
>> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
>> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
>> javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
>> ftc.budget.common.tomcat.CharsetFilter.doFilter(CharsetFilter.java:41)
>>
>> root cause java.lang.NumberFormatException: null
>> java.lang.Integer.parseInt(Unknown Source)
>> java.lang.Integer.parseInt(Unknown Source)
>>
>> org.apache.jsp.check_005fenter_jsp._jspService(check_005fenter_jsp.java:61)
>>
>> ftc.budget.servlet.BudgetJspPage.service(BudgetJspPage.java:71)
>>
>
> That, sir, looks to me like another serious financial crisis in the
> making. I think you should immediately report this higher up.

... and lose 10 points for not using a descriptive subject line.

p


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: PLEASE HELP ME!!!

Posted by André Warnier <aw...@ice-sa.com>.
AChudesnikov@btabank.ru wrote:
> After autorization on http server occure this problem.
> What's happened, who know? Please help me.
> 
> 
> HTTP Status 500 - 
> 
> type Exception report
> message 
> description The server encountered an internal error () that prevented it 
> from fulfilling this request.
> 
> org.apache.jasper.JasperException: null
>  
> org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:460)
>  
> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
>  org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
>  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
>  javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
>  ftc.budget.common.tomcat.CharsetFilter.doFilter(CharsetFilter.java:41)
> 
> root cause 
> java.lang.NumberFormatException: null
>                  java.lang.Integer.parseInt(Unknown Source)
>                  java.lang.Integer.parseInt(Unknown Source)
>  
> org.apache.jsp.check_005fenter_jsp._jspService(check_005fenter_jsp.java:61)
>  ftc.budget.servlet.BudgetJspPage.service(BudgetJspPage.java:71)
>  

That, sir, looks to me like another serious financial crisis in the 
making.  I think you should immediately report this higher up.



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: PLEASE HELP ME!!!

Posted by Konstantin Kolinko <kn...@gmail.com>.
> root cause
> java.lang.NumberFormatException: null
>                 java.lang.Integer.parseInt(Unknown Source)
>                 java.lang.Integer.parseInt(Unknown Source)
>
> org.apache.jsp.check_005fenter_jsp._jspService(check_005fenter_jsp.java:61)
>  ftc.budget.servlet.BudgetJspPage.service(BudgetJspPage.java:71)
>

Go to the /work directory of your Tomcat installation and find
"check_005fenter_jsp.java" file somewhere there. It is Java source for
your JSP page (check/enter.jsp).  Somewhere there (on line 61 of java
code) is a Integer.parseInt() call. The exception was thrown because
the argument to that call was null.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org