I've an Enterprise Application deployed on WLS 6.1 sp5 with an average of 30000
accesses per hour. This application is in a cluster of 4 wls's instances in a
Sun 15K. Suddenly one of the instance ( randomly ) gives the following problem:
<Jun 4, 2003 4:22:18 PM CEST> <Error> <HTTP> <[WebAppServletContext(4265202,MspClient,/MspClient)]
Servlet failed with Exception
java.lang.NullPointerException:
Start server side stack trace:
java.lang.NullPointerException
<<no stack trace available>>
End server side stack trace
Start server side stack trace:
java.lang.NullPointerException:
Start server side stack trace:
java.lang.NullPointerException
<<no stack trace available>>
End server side stack trace
<<no stack trace available>>
End server side stack trace
Start server side stack trace:
java.lang.NullPointerException:
Start server side stack trace:
java.lang.NullPointerException
<<no stack trace available>>
End server side stack trace
.........................
...........................
.......................
How can I resolve this?
>........................
>
>How can I resolve this?
>
Hi Andrea
A Null pointer exception is very generic.
In your case it is coming from a servlet.
This could be due to several reasons like your servlet may be
>1. Calling the instance method of a null object.
>2. Accessing or modifying the field of a null object.
All You need to do is recheck the servlet for one of the above possibilities.
and find out where exactly the above reasons are happening.
bye
Ahtesham