473,808 Members | 2,758 Online
Bytes | Software Development & Data Engineering Community
+ 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 1672
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
2239
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 exceptions that can be raised in a Python function, or in any of the functions it calls, etc.? /Dan
7
4758
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 and is defined in an assembly common to the client and server components. The custom class merely defines three (3) constructors -- the null constructor; one with a string parameter; and one with a string and innner exception parameter -- that...
16
2181
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 more experienced loggers can provide me with some ideas as to how to log in a simple yet flexible manner. For instance, I'd like the code to be as uncluttered as possible by Trace statements. As an example of basic logging functionality, I've come...
2
2544
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 section like so: <customErrors mode="On" defaultRedirect="ErrorForm.aspx"/> From that page, how can I determine what kind of
34
18313
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 "127.0.0.1". 4. Authentication: "Anonymous access" only. 5. Outbound connection listen to TCP 25. Besides,
1
2393
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 look for when evaluating someone's code is a try/catch block. While it isn't a perfect indicator, exception handling is one of the few things that quickly speak about the quality of code. Within seconds you might discover that the code author...
2
6971
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 attending interviews. If you own a company best way to judge if the candidate is worth of it. http://www.questpond.com/InterviewRatingSheet.zip
7
15678
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 Debugger for the CLR Exceptions And when my debugger hits the TcpClient.Connect statement and the server is not available - I get the following three first chance exceptions: A first chance exception of type 'System.Net.Sockets.SocketException'
6
2054
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 your business layer and/or data access layer? suppose in my data access layer, I provide try and catch, log the exception and re-throw it back to business layer, then in yoru business layer, what do you do? throw it back to the code behind or...
0
9721
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9600
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10631
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10374
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10114
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9196
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5548
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3859
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3011
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.