By: Jothikumar - kbmkumar
JVM Crashes while generating reoprts
2004-03-15 04:17
Hi,
I am using RH8 + Tomcat(4.1.26) JSP.And my intention is to generate reports and include in a jsp page(view). My application crahes and i am getting this error.Can anyone help me on this. I am using jdk 1.4.2.
Unexpected Signal : 11 occurred at PC=0x402B0741
Function=(null)+0x402B0741
Library=/usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
NOTE: We are unable to locate the function name symbol for the error just occurred. Please refer to release documentation for possible reason and solutions.
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x402b0741
SIGNAL = 11
FUNCTION NAME = (N/A)
OFFSET = 0x402B0741
LIBRARY NAME = /usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
By: Navaneetha Krishnan J - navaneethanj
RE: JVM Crashes while generating reoprts
2004-03-15 05:01
I do often got this crash, while using ResultSetDataSource.
Mine also very similar to this. i.e. the exception is started at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
Please help us to resolving this issue. Thanks for your help.
Navaneethan.
By: Thorsten Klusemann - klusi
RE: JVM Crashes while generating reoprts
2004-04-16 01:02
The problem here is that probably two or more users are executing the same report at the same time. Every Jasper report will be compiled into a java class before it gets executed. This process must be synchronized between Threads or else the JVM might crash like in your description because two threads may write into the same class file at the same time.
By: Ashish - ashisharte
RE: JVM Crashes while generating reoprts
2004-04-22 12:58
I traced the code and it seems to happen in one of the evaluate(JRExpression expression ) methods in JRCalculator.java
I fixed it temporarily by adding a e.printStackTrace() in the catch Null pointer exception so that when my report gets into this state, it doesnt crash our web server.
By: madhu - nja
RE: JVM Crashes while generating reoprts
2004-04-29 01:09
Hi,
I have the same issue. My env is single user, standalone Java application generating automated reports. As a temporary fix I use
java -Xmx200m xxx.yyy.zzz
This works erratically. Sometimes I am able to get the entire result.
The following is the error msg :
Unexpected Signal : 11 occurred at PC=0x402B0741
Function=(null)+0x402B0741
Library=/usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
- locked <0x44748a68> (a java.lang.NullPointerException)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:715)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x402b0741
SIGNAL = 11
FUNCTION NAME = (N/A)
OFFSET = 0x402B0741
LIBRARY NAME = /usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
Aborted
By: aam - arielelmejor
JVM Crashes while generating reports
2004-04-27 17:59
Hi:
I have the same problem. My system use jjdk1.4.3, J2EE and JBOSS. The error is the following:
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x80A
5906
Function=JVM_FindSignal+0x1876C
Library=D:\j2sdk1.4.2_03\jre\bin\client\jvm.dll
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
- locked <0x100f20c8> (a java.lang.NullPointerException)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x080a5906
SIGNAL = -1073741819
FUNCTION NAME = JVM_FindSignal
OFFSET = 0x1876C
LIBRARY NAME = D:\j2sdk1.4.2_03\jre\bin\client\jvm.dll
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
Please help, is urgent, help....help... Theodor
By: Teodor Danciu - teodord
RE: JVM Crashes while generating reports
2004-04-30 02:53
Hi,
Try to launch your JVM using the -server command line
switch instead of the default which is -client.
Thank you,
Teodor
JVM Crashes while generating reoprts
2004-03-15 04:17
Hi,
I am using RH8 + Tomcat(4.1.26) JSP.And my intention is to generate reports and include in a jsp page(view). My application crahes and i am getting this error.Can anyone help me on this. I am using jdk 1.4.2.
Unexpected Signal : 11 occurred at PC=0x402B0741
Function=(null)+0x402B0741
Library=/usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
NOTE: We are unable to locate the function name symbol for the error just occurred. Please refer to release documentation for possible reason and solutions.
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x402b0741
SIGNAL = 11
FUNCTION NAME = (N/A)
OFFSET = 0x402B0741
LIBRARY NAME = /usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
By: Navaneetha Krishnan J - navaneethanj
RE: JVM Crashes while generating reoprts
2004-03-15 05:01
I do often got this crash, while using ResultSetDataSource.
Mine also very similar to this. i.e. the exception is started at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
Please help us to resolving this issue. Thanks for your help.
Navaneethan.
By: Thorsten Klusemann - klusi
RE: JVM Crashes while generating reoprts
2004-04-16 01:02
The problem here is that probably two or more users are executing the same report at the same time. Every Jasper report will be compiled into a java class before it gets executed. This process must be synchronized between Threads or else the JVM might crash like in your description because two threads may write into the same class file at the same time.
By: Ashish - ashisharte
RE: JVM Crashes while generating reoprts
2004-04-22 12:58
I traced the code and it seems to happen in one of the evaluate(JRExpression expression ) methods in JRCalculator.java
I fixed it temporarily by adding a e.printStackTrace() in the catch Null pointer exception so that when my report gets into this state, it doesnt crash our web server.
By: madhu - nja
RE: JVM Crashes while generating reoprts
2004-04-29 01:09
Hi,
I have the same issue. My env is single user, standalone Java application generating automated reports. As a temporary fix I use
java -Xmx200m xxx.yyy.zzz
This works erratically. Sometimes I am able to get the entire result.
The following is the error msg :
Unexpected Signal : 11 occurred at PC=0x402B0741
Function=(null)+0x402B0741
Library=/usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
- locked <0x44748a68> (a java.lang.NullPointerException)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:715)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x402b0741
SIGNAL = 11
FUNCTION NAME = (N/A)
OFFSET = 0x402B0741
LIBRARY NAME = /usr/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
Aborted
By: aam - arielelmejor
JVM Crashes while generating reports
2004-04-27 17:59
Hi:
I have the same problem. My system use jjdk1.4.3, J2EE and JBOSS. The error is the following:
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x80A
5906
Function=JVM_FindSignal+0x1876C
Library=D:\j2sdk1.4.2_03\jre\bin\client\jvm.dll
Current Java thread:
at java.lang.Throwable.fillInStackTrace(Native Method)
- locked <0x100f20c8> (a java.lang.NullPointerException)
at java.lang.Throwable.<init>(Throwable.java:180)
at java.lang.Exception.<init>(Exception.java:29)
at java.lang.RuntimeException.<init>(RuntimeException.java:32)
at java.lang.NullPointerException.<init>(NullPointerException.java:36)
at dori.jasper.engine.fill.JRCalculator.evaluate(JRCalculator.java:707)
****************
Another exception has been detected while we were handling last error.
Dumping information about last error:
ERROR REPORT FILE = (N/A)
PC = 0x080a5906
SIGNAL = -1073741819
FUNCTION NAME = JVM_FindSignal
OFFSET = 0x1876C
LIBRARY NAME = D:\j2sdk1.4.2_03\jre\bin\client\jvm.dll
Please check ERROR REPORT FILE for further information, if there is any.
Good bye.
Please help, is urgent, help....help... Theodor
By: Teodor Danciu - teodord
RE: JVM Crashes while generating reports
2004-04-30 02:53
Hi,
Try to launch your JVM using the -server command line
switch instead of the default which is -client.
Thank you,
Teodor
0 Answers:
No answers yet