473,496 Members | 2,196 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Exceptions in server log

madhoriya22
252 Contributor
Hi,
while deploying applicatin tomcat server is throwing these exceptions :--
Expand|Select|Wrap|Line Numbers
  1.  SEVERE: Servlet.service() for servlet RequestHandler threw exception
  2. java.lang.NumberFormatException: null
  3.         at java.lang.Integer.parseInt(Integer.java:415)
  4.         at java.lang.Integer.parseInt(Integer.java:497)
  5.         at com.spi.defecttracker.controller.RequestHandler.processRequest(RequestHandler.java:54)
  6.         at com.spi.defecttracker.controller.RequestHandler.doGet(RequestHandler.java:284)
  7.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
  8.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  9.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  10.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  11.         at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
  12.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  13.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  14.         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  15.         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  16.         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  17.         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  18.         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  19.         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  20.         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  21.         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  22.         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  23.         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
  24.         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
  25.         at java.lang.Thread.run(Thread.java:595)
  26.  
  27.  
and
Expand|Select|Wrap|Line Numbers
  1. SEVERE: Servlet.service() for servlet RequestHandler threw exception
  2. java.lang.NullPointerException
  3.         at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:991)
  4.         at java.lang.Double.parseDouble(Double.java:482)
  5.         at com.spi.defecttracker.controller.RequestHandler.updateInActivityLog(RequestHandler.java:1097)
  6.         at com.spi.defecttracker.controller.RequestHandler.processRequest(RequestHandler.java:125)
  7.         at com.spi.defecttracker.controller.RequestHandler.doPost(RequestHandler.java:293)
  8.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  9.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  10.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  11.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  12.         at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
  13.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  14.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  15.         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  16.         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  17.         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  18.         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  19.         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  20.         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  21.         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  22.         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  23.         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  24.         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
  25.         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
  26.         at java.lang.Thread.run(Thread.java:595)
  27.  
This is not creating any problem till now. My applications is using JSP/Servlets. But I want to know in future will it effect anyway...........

Thanks and regards,
madhoriya22
Jul 26 '07 #1
2 1658
PLA
44 New Member
Hi,
while deploying applicatin tomcat server is throwing these exceptions :--
Expand|Select|Wrap|Line Numbers
  1.  SEVERE: Servlet.service() for servlet RequestHandler threw exception
  2. java.lang.NumberFormatException: null
  3.         at java.lang.Integer.parseInt(Integer.java:415)
  4.         at java.lang.Integer.parseInt(Integer.java:497)
  5.         at com.spi.defecttracker.controller.RequestHandler.processRequest(RequestHandler.java:54)
  6.         at com.spi.defecttracker.controller.RequestHandler.doGet(RequestHandler.java:284)
  7.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
  8.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  9.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  10.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  11.         at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
  12.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  13.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  14.         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  15.         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  16.         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  17.         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  18.         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  19.         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  20.         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  21.         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  22.         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  23.         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
  24.         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
  25.         at java.lang.Thread.run(Thread.java:595)
  26.  
  27.  
and
Expand|Select|Wrap|Line Numbers
  1. SEVERE: Servlet.service() for servlet RequestHandler threw exception
  2. java.lang.NullPointerException
  3.         at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:991)
  4.         at java.lang.Double.parseDouble(Double.java:482)
  5.         at com.spi.defecttracker.controller.RequestHandler.updateInActivityLog(RequestHandler.java:1097)
  6.         at com.spi.defecttracker.controller.RequestHandler.processRequest(RequestHandler.java:125)
  7.         at com.spi.defecttracker.controller.RequestHandler.doPost(RequestHandler.java:293)
  8.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  9.         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  10.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  11.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  12.         at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
  13.         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  14.         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  15.         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  16.         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  17.         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  18.         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  19.         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  20.         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  21.         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  22.         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  23.         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  24.         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
  25.         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
  26.         at java.lang.Thread.run(Thread.java:595)
  27.  
This is not creating any problem till now. My applications is using JSP/Servlets. But I want to know in future will it effect anyway...........

Thanks and regards,
madhoriya22
It looks like you have a product of SPI Dynamics installed on your server, the bug is in this product. I don't know what it does (It is about security I think).
Jul 26 '07 #2
madhoriya22
252 Contributor
It looks like you have a product of SPI Dynamics installed on your server, the bug is in this product. I don't know what it does (It is about security I think).
Hi,
I am using NetBeans5.5 and tomcat server bundled in that..
Thanks and regards,
madhoriya.
Jul 27 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

21
2195
by: dkcpub | last post by:
I'm very new to Python, but I couldn't find anything in the docs or faq about this. And I fished around in the IDLE menus but didn't see anything. Is there a tool that can determine all the...
7
4731
by: Ken Allen | last post by:
I have a .net client/server application using remoting, and I cannot get the custom exception class to pass from the server to the client. The custom exception is derived from ApplicationException...
16
2139
by: Einar Høst | last post by:
Hi, I'm getting into the Trace-functionality in .NET, using it to provide some much-needed logging across dlls in the project we're working on. However, being a newbie, I'm wondering if some...
2
2523
by: Juan Dent | last post by:
Hi, How does one handle exceptions in a Web application? For instance, I have a Page_Load method that throws an ArgumentNullException on some ocassions and I have set the Web.config file with a...
34
18134
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow...
1
2365
by: Anonieko | last post by:
Understanding and Using Exceptions (this is a really long post...only read it if you (a) don't know what try/catch is OR (b) actually write catch(Exception ex) or catch{ }) The first thing I...
2
6915
by: Jobs | last post by:
Download the JAVA , .NET and SQL Server interview with answers Download the JAVA , .NET and SQL Server interview sheet and rate yourself. This will help you judge yourself are you really worth of...
7
15653
by: illegal.prime | last post by:
Hi all, I've got a client/server application and just wanted to ensure that this is expected behavior. I recently set the following configuration in Visual Studio: Debug->Exceptions->Break Into...
6
2029
by: Liming | last post by:
Hi, In a typical 3 tier model (view layer, busines layer and data access layer) where do you handle your exceptions? do you let it buble up all the way to the .aspx pages or do you handle it in...
0
6991
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7160
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7196
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6878
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
4897
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3078
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1405
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
286
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.