• 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

HTTP Status 500 - after upgrade to Tomcat 5.5.33

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Happy Holidays!

I am having a problem after updating Tomcat from 5.5.17 to 5.5.33 on a Windows server. The system was working before the update. This server runs Scala Infochannel 5 Content Manager - a web based CMS.

When I run try to access the Scala web GUI I get the first page, asking for a password. I enter the correct password and get a new page with the error text below. (the result is she same no matter what password I input. No password entered gives an message on the same page that a password is required)

Appreciate any help!

Dave

HTTP Status 500 -

--------------------------------------------------------------------------------

type Exception report

message

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

exception

javax.servlet.ServletException: For input string: "2s"
org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:508)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:415)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:225)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1858)
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:459)
javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:185)
net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:159)
com.scala.planning.filters.HibernateFilter.doFilter(HibernateFilter.java:242)
com.scala.planning.filters.AccessFilter.doFilter(AccessFilter.java:114)
com.scala.planning.filters.ResponseFilter.doFilter(ResponseFilter.java:43)
com.scala.planning.filters.CharsetFilter.doFilter(CharsetFilter.java:25)


root cause

java.lang.NumberFormatException: For input string: "2s"
java.lang.NumberFormatException.forInputString(Unknown Source)
java.lang.Integer.parseInt(Unknown Source)
com.scala.planning.commons.utilities.HexUtilities.hexStringToBytes(HexUtilities.java:43)
com.scala.planning.modules.install.actions.PasswdAction.checkPasswd(PasswdAction.java:198)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
java.lang.reflect.Method.invoke(Unknown Source)
org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:266)
org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:167)
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:413)
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:225)
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1858)
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:459)
javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:185)
net.bull.javamelody.MonitoringFilter.doFilter(MonitoringFilter.java:159)
com.scala.planning.filters.HibernateFilter.doFilter(HibernateFilter.java:242)
com.scala.planning.filters.AccessFilter.doFilter(AccessFilter.java:114)
com.scala.planning.filters.ResponseFilter.doFilter(ResponseFilter.java:43)
com.scala.planning.filters.CharsetFilter.doFilter(CharsetFilter.java:25)


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


--------------------------------------------------------------------------------

Apache Tomcat/5.5.33
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic