Apache error messages

Hi :
I have started to see some strange messages in my apache logs. What does this mean?
When I see this messages the system is kind of hungup state? How do I identify the root cause of this issue that I am seeing.
[Sun Jun  1 10:56:30 2008] [error] [client 206.16.2.57] client denied by server configuration: /u02/prod/applprod/prodcomn/java/java
[Sun Jun  1 10:56:30 2008] [error] [client 206.16.2.57] client denied by server configuration: /u02/prod/applprod/prodcomn/java/java
[Sun Jun  1 10:56:31 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/forms/icons/ora
cle_logo_light.gif
[Sun Jun  1 10:56:31 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/forms/icons/ora
cle_logo_light.gif
[Sun Jun  1 10:56:31 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/forms/icons/ora
cle_logo_light.gif
[Sun Jun  1 10:56:31 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/forms/icons/ora
cle_logo_light.gif
[Sun Jun  1 10:58:24 2008] [error] [client 206.16.2.57] client denied by server configuration: /u02/prod/applprod/prodcomn/java/orac
le/ewt
[Sun Jun  1 10:58:24 2008] [error] [client 206.16.2.57] client denied by server configuration: /u02/prod/applprod/prodcomn/java/orac
le/ewt
[Sun Jun  1 10:58:24 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/ewt/alert/resou
rce/AlertBundle_en_US.properties
[Sun Jun  1 10:58:33 2008] [error] [client 206.16.2.57] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/apps/media/orac
...skipping...
a
[Mon Jan  5 15:14:06 2009] [error] [client 206.16.12.86] client denied by server configuration: /u02/prod/applprod/prodcomn/java/jav
a
[Mon Jan  5 15:23:16 2009] [error] [client 206.16.2.85] File does not exist: /u02/prod/applprod/prodcomn/portal/PROD_rack/_vti_bin/ow
ssvr.dll
[Mon Jan  5 15:23:17 2009] [error] [client 206.16.2.85] File does not exist: /u02/prod/applprod/prodcomn/portal/PROD_rack/MSOffice/cl
treq.asp
[Mon Jan  5 15:30:30 2009] [error] [client 206.16.10.207] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/apps/media/or
acle/apps/media/splash.gif
[Mon Jan  5 15:30:30 2009] [error] [client 206.16.10.207] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/apps/media/or
acle/apps/media/splash.gif
[Mon Jan  5 15:30:30 2009] [error] [client 206.16.10.207] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/apps/media/or
acle/apps/media/splash.gif
[Mon Jan  5 15:30:30 2009] [error] [client 206.16.10.207] File does not exist: /u02/prod/applprod/prodcomn/java/oracle/apps/media/or
acle/apps/media/splash.gif
[Mon Jan  5 15:30:52 2009] [error] [client 206.16.2.85] File does not exist: /u02/prod/applprod/prodcomn/portal/PROD_rack/_vti_bin/ow
ssvr.dll
[Mon Jan  5 15:30:53 2009] [error] [client 206.16.2.85] File does not exist: /u02/prod/applprod/prodcomn/portal/PROD_rack/MSOffice/cl
treq.asp
Edited by: BMP on Jan 6, 2009 8:26 AM

Bala,
Does this happen to all forms/modules? If yes, before starting any investigation, did you try to bounce all the services (and reboot the servers)?
Was there any changed recently done at the application/database level?
Do you run concurrent programs (like Purge Concurrent Program, Gather Schema Statistics, ..etc) on regular basis?
I would also suggest you review the following notes:
Note: 744143.1 - Tuning performance on eBusiness suite
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=744143.1
Note: 169935.1 - Troubleshooting Oracle Apps Performance Issues
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=169935.1

Similar Messages

  • Need help interpreting an Apache error message

    I hope my Apache/Tomcat questions of late aren't off topic - I am trying to get them to work together so that Tomcat will handle Java servlet.
    I'm one of collection of newbies trying to troubleshoot the fact that we can't do anything with servlets even though everything seems to be set up OK. I need to verify that my interpretation of an Apache error message is correct (or not).
    Anyway, whenever someone types in the URL of a servlet in the form http:/myURL/mydomainname.com/servlet/HelloWorld (where URL is in the form ##.#.###.###, since the domain name officially "assigned" to the URL yet) The browser displays an error message saying that /myURL/mydomainname.com/servlet/HelloWorld was not found on the server.
    Upon looking at the Apache error log, the following statement is found::
    [Sat Jul 23 17:54:10 2005] [error] [client XX.X.XXX.XXX] File does not exist: /home/virtual/site1/fst/var/www/html/servlet
    (this is a virtual site; all that extra /virtual/site1/fst/ is supposed to be in there.
    Note the fact that the error message stops at the word "servlet" and does not say "/servlet/HelloWorld". That makes me think that Apache does not realize that "/servlet" means "send what comes next over to Tomcat" and instead thinks that the browser is trying to get into a DIRECTORY called "/servlet" which does not exist.
    Am I correct in this? Does that error message imply that is what is going wrong?

    Your note is making me think that you've got the
    Apache Web server running on Linux, and you've tried
    to make Tomcat the servlet/JSP engine that Apache
    forwards all servlet/JSP requests to. Apache is
    listening on port 80, of course. All correct?All correct.
    I'm not sure that you've got Tomcat bolted onto
    Apache properly, Probably not. My question is, basically, is that what the aforementioned error message is implying??
    or if you've deployed your servlet
    correctly. Again - does the aforementioned error message indicate that Apache simply isn't calling Tomcat in the first place, in which case nothing is even looking for the servlet? Yes or no? I've experimented and found that Apache error messages always stop at the first thing that they don't recognize. For example, if someone types in http://URL/domainame/totally/bogus/vaporware, the Apache error message will say: "File does not exist: /home/virtual/site1/fst/var/www/html/totally" because the directory "/totally/" is the first thing it comes accross that does not exist. I'm trying to verify that possibility so that I know better where to look for the error. Or is it possible that Apache DOES recognize what /servlet/ means, is succesfully getting to Tomcat, but something else is going wrong that causes Apache to sned that error message?
    Also, there is no sign of activity in Tomcat's Catalina.out log file since the day
    I last turned Tomcat on (successfully). Since that's the only thing in Tomcat's log folder, I assumed it was where Tocmat's error messages would show up (if not, where are they? Havn't been able to find anything else). If that is the case, Tomcat has indeed not been contacvted by Apache.

  • File does not exist: /java/classes message in Apache error log file

    I am getting several of these messages in the Apache error logfile.
    File does not exist: $JAVA_TOP (this is actually my physical patch for $JAVA_TOP)
    Is it normal to see this messages or some configuration is wrong?
    thanks,
    Azodpe

    Please post the details of the application release, database version and OS.
    I am getting several of these messages in the Apache error logfile.
    File does not exist: $JAVA_TOP (this is actually my physical patch for $JAVA_TOP)Is this the complete error message?
    Is it normal to see this messages or some configuration is wrong?If your application is functioning properly with no issues, then you can ignore those errors.
    Thanks,
    Hussein

  • Error messages in OACoreGroup.0.stderr under iAS/Apache/Jserv/logs/jvm/

    Hi,
    We have been receiving the below error messages in OACoreGroup.0.stderr file.
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532823:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.common.logging.DebugEventManager.handlerException]:java.lang.Exception: /aferror.log (Permission denied)
    at oracle.apps.fnd.common.logging.FileHandler.<init>(FileHandler.java:103)
    at oracle.apps.fnd.common.logging.FileHandler.<init>(FileHandler.java:80)
    at oracle.apps.fnd.common.logging.DebugEventManager.registerHandlers(DebugEventManager.java:1297)
    at oracle.apps.fnd.common.logging.DebugEventManager.init(DebugEventManager.java:937)
    at oracle.apps.fnd.common.logging.DebugEventManager.<init>(DebugEventManager.java:204)
    at oracle.apps.fnd.common.AppsLog.<init>(AppsLog.java:519)
    at oracle.apps.fnd.common.AppsLog.<init>(AppsLog.java:489)
    at oracle.apps.fnd.common.AppsLog.<clinit>(AppsLog.java:469)
    at oracle.apps.fnd.common.AppsContext.makeLog(AppsContext.java:824)
    at oracle.apps.fnd.common.Context.setLog(Context.java:1253)
    at oracle.apps.fnd.common.Context.setLog(Context.java:1233)
    at oracle.apps.fnd.common.Context.getLog(Context.java:1205)
    at oracle.apps.fnd.common.Context.isLoggingEnabled(Context.java:2001)
    at oracle.apps.fnd.common.Context.makeConnectionManager(Context.java:489)
    at oracle.apps.fnd.common.AppsContext.makeConnectionManager(AppsContext.java:857)
    at oracle.apps.fnd.common.Context.setConnectionManager(Context.java:449)
    at oracle.apps.fnd.common.Context.setConnectionManager(Context.java:433)
    at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:522)
    at oracle.apps.fnd.common.AppsContext.<init>(AppsContext.java:292)
    at oracle.apps.mwa.container.ApplicationsObjectLibrary.AOLInit(ApplicationsObjectLibrary.java:174)
    at oracle.apps.mwa.container.ApplicationsObjectLibrary.<init>(ApplicationsObjectLibrary.java:78)
    at oracle.apps.mwa.container.MWALib.setObjectLibrary(MWALib.java:339)
    at oracle.apps.mwa.wap.engine.WapServlet.init(WapServlet.java:158)
    at org.apache.jserv.JServServletManager.load_init(JServServletManager.java:755)
    at org.apache.jserv.JServServletManager.loadServlet(JServServletManager.java:659)
    at org.apache.jserv.JServServletManager.loadStartupServlets(JServServletManager.java:789)
    at org.apache.jserv.JServServletManager.init(JServServletManager.java:447)
    at org.apache.jserv.JServ.start(JServ.java:625)
    at org.apache.jserv.JServ.main(JServ.java:234)
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532822:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.common.logging.FileHandler.publish]:Please check File Permission/Disk Space for: aferror.log, defaulting Logging to STDERR
    [Aug 23, 2010 11:42:12 AM CEST]:1282556532914:Thread[Thread-116635,10,main]:-1:-1:bz-antwerpen02:10.214.215.25:10020:20020:UNEXPECTED:[fnd.framework.OAException]:Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.apps.fnd.cache.CacheException;
    We do not know the cause of it as the user have not complained about it so far. While routine checking, we stumbled upon this file and saw the errors. This is happening on our PROD instance. Hence it is a concern. Let me know if anyone has encountered this issue before. And what is the cause for it and the fix?
    Thanks in Advance.
    Jayant

    Hi;
    Please check below notes which is mention bug but similar error message as yours:
    Exception: /aferror.log (Permission denied)&Please check File Permission/Disk Space for: aferror.log, defaulting Logging to STDERR
    Bug 8684943: UNEXPECTED ERROR WHILE LAUNCHING PLM WORKBENCH
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=8684943&productFamily=Oracle
    Bug 4653049: PAXPREPR WORKFLOW VIEW DIAGRAM BUTTON PRODUCES ERROR PAGE
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=4653049&productFamily=Oracle
    Bug 6143160: UPDATE PARAMETER PERIOD IN PMD REPORTS DESIGNER GIVES NULLPOINTEREXCEPTION
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=6143160&productFamily=Oracle
    Those for previous release but it seems same error already included
    Regard
    Helios

  • MOD_OC4J error messages in Apache log

    Hi,
    We're seeing a lot of MOD_OC4J error messages in our Apache error log namely MOD_OC4J_0013, 35, 58, 80, 121, 119, 150, 0207 which appear to indicate a failure of communication from the ohs to the oc4j services. Are these errors documented and what can I deduce from them? I've included a sample of them here
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43] MOD_OC4J_0080: After calling Apache's ap_bwrite(), got an return value: -1 and the client could have aborted in the middle of receiving the chunk data.
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43] MOD_OC4J_0058: Failed to handle response chunk data passed in from oc4j via ajp13.
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43] MOD_OC4J_0035: After hdndling ajp13 response message, got an invalid value: -2.
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43] MOD_OC4J_0121: Failed to service request with network worker: apps_4_14 and it is not recoverable.
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43] MOD_OC4J_0013: Failed to call destination: apps_4's service() to service the request.
    [Wed Feb 19 15:06:25 2003] [error] [client 153.107.38.43]
    Thanks,
    Julian Flitcroft

    This kind of error messages are OK. They indicate that while the client (web browser) is downloading a file or getting a response from OHS/mod_oc4j/oc4j, it drops the connection to OHS in the middle.
    They should not hurt anything.

  • I got following erro message in Apache error log file

    Why mod_plsql is not started while trying to use Oracle Apex
    I got connection error as below into modplsql log file
    <106296140 ms>[ReqStartTime: 11/Sep/2007:14:48:50]
    <106296140 ms>Request ID ReqID:5160_1189536530
    <106296140 ms>Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=https)(PORT=//escis-000567.eschq.esc.state.)))(CONNECT_DATA=(SID=80)))"
    <106296140 ms>ORA-12545 LogOn ORA-12545: Connect failed because target host or object does not exist
    <106296140 ms>Stale Connection due to Oracle error 12545
    <106296140 ms>Logoff: Closing connection due to stale connection
    <106296140 ms>[ReqEndtime: 11/Sep/2007:14:48:50]
    <106296140 ms>[ReqExecTime: 0 ms]
    I got following from Oracle Apache error log file
    [Tue Sep 11 15:31:46 2007] [notice] FastCGI: process manager initialized
    [Tue Sep 11 15:32:03 2007] [error] [client 10.18.144.215] [ecid: 1189539123:10.18.144.215:2612:1148:1,0] mod_plsql: DAD '/pls/apex' is disabled because of misconfiguration. Please refer to the log entries during server startup up for more information.
    [Tue Sep 11 15:32:15 2007] [error] [client 10.18.144.215] [ecid: 1189539135:10.18.144.215:2612:2232:1,0] mod_plsql: DAD '/pls/apex' is disabled because of misconfiguration. Please refer to the log entries during server startup up for more information.
    [Tue Sep 11 15:32:21 2007] [error] [client 10.18.144.215] [ecid: 1189539141:10.18.144.215:2612:4896:1,0] File does not exist: c:/gridhomes/http/apache/apache/htdocs/apex
    [Tue Sep 11 15:32:29 2007] [error] [client 10.18.144.215] [ecid: 1189539149:10.18.144.215:2612:4896:2,0] mod_plsql: DAD '/pls/apex' is disabled because of misconfiguration. Please refer to the log entries during server startup up for more information.
    What could be problem
    also in first error log I found
    Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=https)(PORT=//escis-000567.eschq.esc.state.)))(CONNECT_DATA=(SID=80)))"
    why it picks up https as HOST name. I think that's problem. How to resolve it ?
    Thanks
    ~Keyur

    Please post the details of the application release, database version and OS.
    I am getting several of these messages in the Apache error logfile.
    File does not exist: $JAVA_TOP (this is actually my physical patch for $JAVA_TOP)Is this the complete error message?
    Is it normal to see this messages or some configuration is wrong?If your application is functioning properly with no issues, then you can ignore those errors.
    Thanks,
    Hussein

  • When I try to access links on Google Books I get thsi error message -Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch Server at books.google.co.uk Port 80 - Cna anyone help?

    This is the error message that I get.
    This is the error message that I get
    Not Found
    The requested URL /books was not found on this server.
    Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch Server at books.google.co.uk Port 80
    There is no problem if I use Internet Explorer.
    My wife uses Yahoo mail and I just use Firefox.
    Thanks

    I have exactly the same problem. I also have the same problem on other web sites, for example when opening a few of the description pages on e-Bay. It appears to be inconsistent as if there is some sort of timing issue as on a few odd occasions I have managed to open Yahoo.
    This started about 3 weeks ago when I was running 3.6.21 and the problem persists after I updated to 3.6.22.
    I am concerned at the lack of response from Mozilla/Firefox as this seems to be a well established problem with several hundred problems reported - but no solution.
    Perhaps the easiest solution is for the users to turn our backs on Firefox and use Opera or Google Chrome instead.

  • Different error messages for Weblogic-Apache bridge

    We are running WLS 5.1 sp5 with Apache as Webserver.
    I want to know how could I display more user freindly error messages when
    weblogic is down and apache is working. Currently we get the default
    Weblogic-Apache down page.
    Thanks,
    Rakesh

    We used this but it did not work. Now the default does not show up but it is
    not able to find the url that we specify which is reachable if I directly
    use in the brower.
    "Vinod Mehra" <[email protected]> wrote in message
    news:[email protected]..
    Checkout the plugin param "ErrorPage" in our documentation.
    --Vinod.
    Rakesh Gupta wrote:
    We are running WLS 5.1 sp5 with Apache as Webserver.
    I want to know how could I display more user freindly error messages
    when
    weblogic is down and apache is working. Currently we get the default
    Weblogic-Apache down page.
    Thanks,
    Rakesh

  • Overrding default Apache-Weblogic bridge error message

    We are running WLS 5.1 sp5 with Apache as Webserver. I want to know how
    could I display more user freindly error messages when
    weblogic is down and apache is working. Currently we get the default
    Weblogic-Apache down page.
    I tried putting
    ErrorPage http://www.mydomain.com/error.html
    in apache conf file. Now I do not get the default message, but now it can
    not find the above url.
    I am able to this url directly in the browser. Please help ?

    [email protected] (srinivasa reddy) wrote in
    <39bb039e$[email protected]>:
    >
    hi,
    I have a basic question, does webloigc support apache-weblogic
    bridge with mod_ssl/any ssl installed on apache.
    thanks & regards
    [email protected]
    There is a mod_wl_ssl.so in sp4 (i believe). mod_ssl extends Apaches API
    and thereby breaks the WebLogic bridge. For raven installations you need
    mod_wl_ssl_rave.so because raven extends the API even further.
    Joel
    E-Mail: (jbf (at) proceedo dot com)

  • How do I resolve the following error message: HTTP Status 404- The requested resource () is not available. Apache Tomcat/5.5.17

    I log onto the following URL:
    >http://15thcircuit.co.palm-beach.fl.us/web/guest/adminorders/series1<
    I click on a link whose URL is:
    >/15thcircuit.co.palm-beach.fl.us/c/document_library/get_file?folderId=149&name=DLFE-1775.pdf<
    The screen opens with the error message shown in my question above.

    put your biplab folder inside root folder under tomcat\webapps\root
    http://localhost:8080/biplab/hello.jsp

  • Server Crash with Error Message: Illegal memory access. [54]

    Hi
    I searched old posts where it reads that upgrade to BEA JRockit(R) R27.1 might solve this problem.
    I am already running BEA JRockit(R) R27.1
    Here is the complete dump information. This is one time occurance on production system so we do not have a way to reproduce the issue.
    ~~~~~~~~~~~~~~~~~~~~~
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 16:10:29 on Thu Nov 8 17:14:45 2007
    Additional information is available in:
    /cust/app/fxi-direct-2.4-20071031-113036/servers/JBoss/bin/jrockit.16992.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=128 si_addr=(nil)
    Version : BEA JRockit(R) R27.1.0-109-73164-1.5.0_08-20061129-1415-linux-x86_64
    GC : gencon
    : Current OC phase is: marking. YC is not running.
    : mmHeap->data = 0x2d00000, mmHeap->top = 0x41500000
    : The nurserylist starts at 0x22100000 and ends at 0x271af2e8
    : mmStartCompaction = 0x39800000, mmEndCompaction = 0x3d680000
    CPU : Intel Pentium 4 (HT) SSE SSE2 NetBurst EM64T
    Number CPUs : 8
    Tot Phys Mem : 4138582016 (3946 MB)
    OS version : Red Hat Enterprise Linux AS release 4 (Nahant Update 3)
    Linux version 2.6.9-34.ELsmp ([email protected]) (gcc version 3.4.5 20051201 (Red Hat 3.4.5-2)) #1 SMP Fri Feb 24 16:56:28 EST 2006 (x86_64)
    Thread System: NPTL
    State : JVM is running (Main thread has finished)
    Command Line : -Xms1000m -Xmx1000m -Xgc:gencon -Xverbosetimestamp -Xverbose:memory,cpuinfo,opt -Xgcpause -Xgcreport -Xmanagement:ssl=false,authenticate=false -Djrockit.managementserver.port=7090 -Dprogram.name=startup.sh -Dlog4j.configuration=log4j.properties org.jboss.Main -c fxi-direct
    java.home : /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre
    j.class.path : /cust/opt/jboss/bin/run.jar:/cust/opt/jdk15/lib/tools.jar:/cust/app/fxi-direct/cust5:/cust/app/fxi-direct/cust5/properties:/cust/app/fxi-direct/cust5/XML:/cust/app/fxi-direct/cust5/FXWeb/Rules:/cust/app/fxi-direct/cust5/AdminWeb/Rules:/cust/app/fxi-direct/cust5/AdminServices/XML:/cust/app/fxi-direct/cust5/CitiFXServices/XML:/cust/app/fxi-direct/cust5/CitiChiefDealerAdminWeb/Rules:/cust/app/fxi-direct/cust5/DirectFX/XML:/cust/app/fxi-direct/cust5/DirectFX/properties:/cust/app/fxi-direct/cust5/ISDomain/properties:/cust/app/fxi-direct/cust5/FXServices/XML:/cust/app/fxi-direct/cust5/FXServices/properties:/cust/app/fxi-direct/cust5/FXServices/dbms/Data:/cust/app/fxi-direct/cust5/ISWeb/dbms/Data:/cust/app/fxi-direct/cust5/islib/certs:/cust/app/fxi-direct/cust5/ISClientWeb/XML:/cust/app/fxi-direct/cust5/WLClientWeb/XML:/cust/app/fxi-direct/cust5/ISDomain/properties
    j.lib.path : /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/../lib/amd64:/cust/opt/oraclient/lib:
    JAVA_HOME : /cust/opt/jdk15
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64:/cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/../lib/amd64:/cust/opt/oraclient/lib:
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0x49250520 / OS context: 0x492505e0):
    rax = 00000000420fbb80 rcx = 00000000420fbb80
    rdx = 0000000000000001 rbx = 000000003acb1310
    rsp = 0000000049250a20 rbp = 00000000236f0bc8
    rsi = 00000000236f0bc8 rdi = 00000000236f0bc8
    r8 = f080000000443845 r9 = 0000002addaa6c68
    r10 = 0000000023452c98 r11 = 0000002addaa6c50
    r12 = 000000003aa569c1 r13 = 0000000044d70360
    r14 = 00000000000005dd r15 = 00000000046de179
    cs = 00000000000095a8 fs = 0000000000000000
    gs = 0000000000000000
    rip = 0000002a969a43d1 flags = 0000000000000282
    Stack:
    (* marks the word pointed to by the stack pointer)
    0000000049250a20: 0000000044d70360* 0000002a95ef17b9 000000003acd8c18 0000002a963d6d7f
    0000000049250a40: 000000003acb1310 0000002a96569e13 000000000fa05550 0000000033ddbca8
    0000000049250a60: 00000000046de179 0000002a964ee113 000000002344e621 00000000234888f8
    0000000049250a80: 00000000236f0bc8 0000002a9656fe52 000000000fa05550 00000000236f0bc8
    0000000049250aa0: 00000000234888f8 0000002a96894cb2 000000000d984580 00000000234888f8
    0000000049250ac0: 000000003aa16a70 000000000fa055d0 000000000fa05550 0000000023449fe0
    Code:
    (* marks the word pointed to by the instruction pointer)
    0000002a969a4370: 480024048348f020 048bc35b5d28c483 25e8442a8ea8ba26 247c894890fffdc0
    0000002a969a4390: 000000012404c718 0030baffffffffbf e8442a8ea8b80000 48f38948ff550cc4
    0000002a969a43b0: ffff30e918247c8b ccccccccccccccff 26248b4408ec8348 74c0854d24048b4d
    0000002a969a43d0: 74f68518708b4917* fa814126148b4412 03eb07750056dcb8 26048bc359f63148
    0000002a969a43f0: bfb6e80056dcb8ba cccccccccc90fffd 0001a8ec81485553 148b4c64fd894800
    0000002a969a4410: 478b44000000d825 250c8b107e8b4408 250c8b44005ae038 b8253c8b005afcf8
    Loaded modules:
    (* denotes the module causing the exception)
    0000000000400000-000000000041190b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/bin/java
    0000003e1f200000-0000003e1f20f339 /lib64/tls/libpthread.so.0
    0000003e1ec00000-0000003e1ec8451b /lib64/tls/libm.so.6
    0000003401a00000-0000003401a01c73 /lib64/libdl.so.2
    0000003e1e900000-0000003e1ea2a079 /lib64/tls/libc.so.6
    0000003e1e700000-0000003e1e7142ef /lib64/ld-linux-x86-64.so.2
    0000002a95577000-0000002a957e0c6f /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/jrockit/libjvm.so
    0000002a95a2f000-0000002a95a38f03 /lib64/libnss_files.so.2
    0000002a95c99000-0000002a95cbd473 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libjava.so
    0000002a95dc3000-0000002a95dcf627 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libverify.so
    0000003e23200000-0000003e23213013 /lib64/libnsl.so.1
    0000002ad5f22000-0000002ad5f2ae3f /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/native_threads/libhpi.so
    0000002ad92f9000-0000002ad9307ef3 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libzip.so
    0000002ad9600000-0000002ad960516b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libmanagement.so
    0000002ad9837000-0000002ad9848fbf /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libnet.so
    0000002adac38000-0000002adac3b883 /lib64/libnss_dns.so.2
    0000003e1f400000-0000003e1f410d3b /lib64/libresolv.so.2
    0000002adaf91000-0000002adaf9196b /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/librmi.so
    0000002addd00000-0000002addd06077 /cust/opt/jrockit-R27.1.0-jdk1.5.0_08/jre/lib/amd64/libnio.so
    "http-0.0.0.0-8080-2" id=216 idx=0x1aa tid=17433 lastJavaFrame=(nil)
    Stack 0: start=0x49210000, end=0x49254000, guards=0x49215000 (ok), forbidden=0x49213000
    Thread Stack Trace:
    -- Java stack --
    at jrockit/vm/Reflect$IClass.get(Ljava/lang/Object;)Ljava/lang/Class;(Unknown Source)[optimized]
    at java/lang/Object.getClass()Ljava/lang/Class;(Unknown Source)
    at TOPLink/Public/PublicInterface/Session.getDescriptor(Session.java:998)
    at TOPLink/Public/PublicInterface/UnitOfWork.getOriginalVersionOfObject(UnitOfWork.java:1145)
    at TOPLink/Private/Sessions/MergeManager.getTargetVersionOfSourceObject(MergeManager.java:112)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:242)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:263)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesInCollection(MergeManager.java:263)
    at TOPLink/Public/Mappings/CollectionMapping.mergeChangesIntoObject(CollectionMapping.java:452)
    at TOPLink/Private/Descriptors/ObjectBuilder.mergeChangesIntoObject(ObjectBuilder.java:1150)
    at TOPLink/Private/Sessions/MergeManager.mergeChangesOfWorkingCopyIntoOriginal(MergeManager.java:368)
    at TOPLink/Private/Sessions/MergeManager.mergeChanges(MergeManager.java:151)
    at TOPLink/Public/PublicInterface/UnitOfWork.mergeChangesIntoParent(UnitOfWork.java:1644)
    at TOPLink/Public/PublicInterface/UnitOfWork.commitRootUnitOfWork(UnitOfWork.java:598)
    at TOPLink/Public/PublicInterface/UnitOfWork.commit(UnitOfWork.java:453)
    at com/cust/session/IdcTransactionC.commit(IdcTransactionC.java:202)
    at com/cust/transaction/TransactionCalculatorC.commitTransaction(TransactionCalculatorC.java:156)
    at com/cust/transaction/RequiredTransactionCalculatorC.endTransaction(RequiredTransactionCalculatorC.java:78)
    at com/cust/rule/WorkflowActionC.endTransaction(WorkflowActionC.java:720)
    at com/cust/rule/WorkflowActionC.execute(WorkflowActionC.java:450)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/RuleC.execute(RuleC.java:554)
    at com/cust/rule/RuleExecutionMonitor.executeRule(RuleExecutionMonitor.java:592)
    at com/cust/rule/RuleSetC.executeRule(RuleSetC.java:523)
    at com/cust/rule/RuleSetC.doExecute(RuleSetC.java:489)
    at com/cust/rule/RuleSetC.execute(RuleSetC.java:447)
    at com/cust/rule/RuleExecutionMonitor.executeRuleSet(RuleExecutionMonitor.java:438)
    at com/cust/rule/RuleSetActionC.execute(RuleSetActionC.java:187)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/WorkflowActionC.doExecute(WorkflowActionC.java:550)
    at com/cust/rule/WorkflowActionC.execute(WorkflowActionC.java:406)
    at com/cust/rule/RuleExecutionMonitor.executeAction(RuleExecutionMonitor.java:483)
    at com/cust/rule/RuleC.execute(RuleC.java:554)
    at com/cust/jsp/JSPRuleC.execute(JSPRuleC.java:163)
    at com/cust/rule/RuleExecutionMonitor.executeRule(RuleExecutionMonitor.java:592)
    at com/cust/rule/RuleSetC.executeRule(RuleSetC.java:523)
    at com/cust/rule/RuleSetC.doExecute(RuleSetC.java:489)
    at com/cust/rule/RuleSetC.execute(RuleSetC.java:447)
    at com/cust/rule/RuleExecutionMonitor.executeRuleSet(RuleExecutionMonitor.java:438)
    at com/cust/rule/ejb/RuleEngineC.execute(RuleEngineC.java:47)
    at sun/reflect/GeneratedMethodAccessor355.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
    at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
    at org/jboss/invocation/Invocation.performCall(Invocation.java:359)[inlined]
    at org/jboss/ejb/StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:237)[optimized]
    at org/jboss/resource/connectionmanager/CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)[optimized]
    at org/jboss/ejb/plugins/AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)[inlined]
    at org/jboss/ejb/plugins/AbstractTxInterceptorBMT.invokeNext(AbstractTxInterceptorBMT.java:173)[inlined]
    at org/jboss/ejb/plugins/TxInterceptorBMT.invoke(TxInterceptorBMT.java:77)[optimized]
    at org/jboss/ejb/plugins/StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:169)[optimized]
    at org/jboss/ejb/plugins/SecurityInterceptor.invoke(SecurityInterceptor.java:168)[optimized]
    at org/jboss/ejb/plugins/LogInterceptor.invoke(LogInterceptor.java:205)[optimized]
    at org/jboss/ejb/plugins/ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)[optimized]
    at org/jboss/ejb/SessionContainer.internalInvoke(SessionContainer.java:648)
    at org/jboss/ejb/Container.invoke(Container.java:954)[optimized]
    at sun/reflect/GeneratedMethodAccessor88.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Unknown Source)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)[optimized]
    at java/lang/reflect/Method.invoke(Method.java:585)[optimized]
    at org/jboss/mx/interceptor/ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    at org/jboss/mx/server/Invocation.dispatch(Invocation.java:94)[inlined]
    at org/jboss/mx/server/Invocation.invoke(Invocation.java:86)[inlined]
    at org/jboss/mx/server/AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)[optimized]
    at org/jboss/mx/server/MBeanServerImpl.invoke(MBeanServerImpl.java:659)[optimized]
    at org/jboss/invocation/local/LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)[inlined]
    at org/jboss/invocation/local/LocalInvoker.invoke(LocalInvoker.java:118)[optimized]
    at org/jboss/invocation/InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
    at org/jboss/invocation/InvokerInterceptor.invoke(InvokerInterceptor.java:195)
    at org/jboss/proxy/TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    at org/jboss/proxy/SecurityInterceptor.invoke(SecurityInterceptor.java:70)
    at org/jboss/proxy/ejb/StatelessSessionInterceptor.invoke(StatelessSessionInterceptor.java:112)
    at org/jboss/proxy/ClientContainer.invoke(ClientContainer.java:100)
    at $Proxy63.execute(Lcom/cust/rule/RuleSet;Ljava/lang/Object;)V(Unknown Source)
    at com/cust/jsp/framework/JSPWorkflowAction.run(JSPWorkflowAction.java:266)
    at com/cust/jsp/framework/JSPWorkflowAction.perform(JSPWorkflowAction.java:230)
    at org/apache/struts/action/ActionServlet.processActionPerform(ActionServlet.java:1720)
    at org/apache/struts/action/ActionServlet.process(ActionServlet.java:1519)
    at com/cust/jsp/framework/IdcActionServlet.process(IdcActionServlet.java:201)
    at org/apache/struts/action/ActionServlet.doPost(ActionServlet.java:505)
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:717)
    at javax/servlet/http/HttpServlet.service(HttpServlet.java:810)
    at org/apache/catalina/core/ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org/apache/catalina/core/ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org/jboss/web/tomcat/filters/ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org/apache/catalina/core/ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org/apache/catalina/core/ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org/apache/catalina/core/StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org/apache/catalina/core/StandardContextValve.invoke(StandardContextValve.java:178)
    at org/jboss/web/tomcat/security/SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    at org/apache/catalina/authenticator/AuthenticatorBase.invoke(AuthenticatorBase.java:525)
    at org/jboss/web/tomcat/security/JaccContextValve.invoke(JaccContextValve.java:74)
    at org/apache/catalina/core/StandardHostValve.invoke(StandardHostValve.java:126)
    at org/apache/catalina/valves/ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org/apache/catalina/core/StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org/apache/catalina/connector/CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org/apache/coyote/http11/Http11Processor.process(Http11Processor.java:870)
    at org/apache/coyote/http11/Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org/apache/tomcat/util/net/PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org/apache/tomcat/util/net/MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    at java/lang/Thread.run(Thread.java:595)
    at jrockit/vm/RNI.c2java(JJJJ)V(Native Method)
    -- end of trace
    Additional information is available in:
    /cust/app/fxi-direct-2.4-20071031-113036/servers/JBoss/bin/jrockit.16992.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Extended, platform specific info:
    libc release: 2.3.4-stable
    Elf headers:
    libc ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 0000003e1e91c560 PHOFF: 0000000000000040 SHOFF: 000000000013d5a8 EF: 0x0 HS: 64 PS: 56 PHN; 10 SS: 64 SHN: 69 STIDX: 66
    libpthread ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 0000003e1f205620 PHOFF: 0000000000000040 SHOFF: 0000000000012980 EF: 0x0 HS: 64 PS: 56 PHN; 9 SS: 64 SHN: 38 STIDX: 35
    libjvm ehdrs: EI: 7f454c46020101000000000000000000 ET: 3 EM: 62 V: 1 ENTRY: 000000000003aab0 PHOFF: 0000000000000040 SHOFF: 0000000000376c80 EF: 0x0 HS: 64 PS: 56 PHN; 3 SS: 64 SHN: 22 STIDX: 19
    ===== END DUMP ===============================================================

    We are trying to install VTune on our AMD Opteron development system. We are running SUSE 10 64-bit OS with SP1. The information contained in the included data files seems to describe our environment quite well. We have eclipse version 3.3.0 already installed, but are trying to allow VTune to install an earlier version of eclipse (3.2.1). When we try to launch VTune, once we have inserted the paths to our ( or to the sample ) application and to the working directory, VTune blows up apparently because of "Error Message: Illegal memory access. [54]", producing the following message block, which is then followed with the contents of the jrockit.31412.dump file it created in the /root/workspace/ directory. If we try to use the "Browse" feature from the working directory option box, we get the same error. Looking at the BEA forum there seems to be a few references to a similar error which required some patch to fix (CR263825). We have not been successful in trying to find that patch.
    Any assistance will be greatly appreciated.
    Steve ::: [email protected]
    Error text displayed by vtlec:
    JVM terminated. Exit code=1
    /opt/intel/eclipsepackage/3.2.1_0/jrockit-R27.2.0-jre1.5.0_10/bin/java
    -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1_0/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp
    -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration
    -jar /opt/intel/eclipsepackage/3.2.1_0/eclipse/startup.jar
    -os linux
    -ws gtk
    -arch x86
    -launcher /opt/intel/eclipsepackage/3.2.1_0/eclipse/eclipse
    -name Eclipse
    -showsplash 600
    -exitdata 60009
    -product com.intel.sdp.primary.product
    -perspective com.intel.vtune.shell.tuningPerspective
    -vm /opt/intel/eclipsepackage/3.2.1_0/jrockit-R27.2.0-jre1.5.0_10/bin/java
    -vmargs
    -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1_0/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp
    -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration
    -jar /opt/intel/eclipsepackage/3.2.1_0/eclipse/startup.jar
    Text from /root/workspace/jrockit.31412.dump:
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 00:03:02 on Mon Jun 23 14:24:12 2008
    Additional information is available in:
    /root/workspace/jrockit.31412.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Signal info : si_signo=11, si_code=2 si_addr=0x6c
    Version : BEA JRockit(R) R27.2.0-131-78843-1.5.0_10-20070320-1511-linux-ia32
    GC Mode : Garbage collection optimized for throughput
    GC Strategy : Generational Parallel Mark & Sweep
    : Current OC phase is: not running. YC is not running.
    : GC strategy for GC 0 was singleconcon
    : GC strategy for GC 1 was genparpar
    : GC strategy for GC 2 was genparpar
    : GC strategy for GC 3 was genparpar
    : mmHeap->data = 0x8100000, mmHeap->top = 0xc100000
    : The nurserylist starts at 0x8526bf8 and ends at 0xa51ed68
    : mmStartCompaction = 0xb900000, mmEndCompaction = 0xbd00000
    : References are 32-bit.
    CPU : AMD Opteron/Athlon64 SSE SSE2 SSE3 EM64T
    Number CPUs : 4
    Tot Phys Mem : 8380477440 (7992 MB)
    OS version : SUSE Linux Enterprise Server 10 (x86_64)
    VERSION = 10
    PATCHLEVEL = 1
    Linux version 2.6.16.46-0.12-smp (geeko@buildhost) (gcc version 4.1.2 20070115 (prerelease) (SUSE Linux)) #1 SMP Thu May 17 14:00:09 UTC 2007 (x86_64)
    Thread System: NPTL
    State : JVM is running
    Command Line : -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration -Dsun.java.launcher=SUN_STANDARD /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar -os linux -ws gtk -arch x86 -launcher /opt/intel/eclipsepackage/3.2.1/eclipse/eclipse -name Eclipse -showsplash 600 -exitdata 2a0010 -product com.intel.sdp.primary.product -perspective com.intel.vtune.shell.tuningPerspective -vm /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java -vmargs -Dosgi.splashLocation=/opt/intel/eclipsepackage/3.2.1/eclipse/plugins/com.intel.sdp.primary_2.0.3/splash.bmp -Dosgi.sharedConfiguration.area=/opt/intel/vtune/bin/../shared/eclipse/configuration -jar /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar
    java.home : /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10
    j.class.path : /opt/intel/eclipsepackage/3.2.1/eclipse/startup.jar
    j.lib.path : /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/../lib/i386:/opt/intel/eclipsepackage/3.2.1/eclipse:/opt/intel/vtune/analyzer/bin:/opt/intel/vtune/shared/bin:/opt/sag/gcc-3.4/libem64t:/opt/sag/gcc-3.3/lib32:/opt/sag/gcc-3.3/lib32:/opt/sag/exx/v721/lib:/usr/lib
    JAVA_HOME : <not set>
    JAVAOPTIONS: <not set>
    LD_LIBRARY_PATH: /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386:/opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/../lib/i386:/opt/intel/eclipsepackage/3.2.1/eclipse:/opt/intel/vtune/analyzer/bin:/opt/intel/vtune/shared/bin:/opt/sag/gcc-3.4/libem64t:/opt/sag/gcc-3.3/lib32:/opt/sag/gcc-3.3/lib32:/opt/sag/exx/v721/lib:/usr/lib
    LD_ASSUME_KERNEL: <not set>
    C Heap : Good; no memory allocations have failed
    StackOverFlow: 0 StackOverFlowErrors have occured
    OutOfMemory : 0 OutOfMemoryErrors have occured
    Registers (from ThreadContext: 0xff92d610 / OS context: 0xff92d70c):
    eax = f06a48c8 ecx = f7eb0150 edx = f7eb0150 ebx = f6afb0a8
    esp = ff92d9f8 ebp = ff92da30 esi = 00000000 edi = f6d76698
    es = 0000002b cs = f6710023 ss = f5e3002b ds = 0000002b
    fs = 00000003 gs = 00000063
    eip = f68ded93 eflags = 00200286
    Stack:
    (* marks the word pointed to by the stack pointer)
    ff92d9f8: f6d76698* f6a61fbe f6d75528 00000001 f6a61fbe f59b3d68
    ff92da10: ff92da30 f68f55b4 f6a61fbe f6d75528 f59b3d68 f6afb0a8
    ff92da28: f59b3d68 f599f660 ff92da50 f68e021b f6a61010 f599f660
    ff92da40: f5d9cd90 f6afb0a8 f599f6e0 f5d9cd90 ff92dae0 f68eab88
    Code:
    (* marks the word pointed to by the instruction pointer)
    f68ded60: 3489f045 24448924 16838d14 89fff66f 4489e845 f5e81024
    f68ded78: 8900072c ec458bc7 89243c89 8b082444 4489e845 2de80424
    f68ded90: 8b000731* c0856c46 7c890c74 04890424 cdbae824 3c890015
    f68deda8: edb2e824 3c89fffd 65bae824 5d8b0015 f8758bf4 89fc7d8b
    Loaded modules:
    (* denotes the module causing the exception)
    08048000-08056fd3 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java
    ffffe000-ffffe7af /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/bin/java
    f7edd000-f7eed043 /lib/libpthread.so.0
    f7eb8000-f7eda62f /lib/libm.so.6
    f7eb4000-f7eb5c3f /lib/libdl.so.2
    f7d91000-f7eab7a9 /lib/libc.so.6
    f7f10000-f7f29eb3 /lib/ld-linux.so.2
    f7a77000-f7d16207 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/jrockit/libjvm.so
    f7a51000-f7a576a4 /lib/librt.so.1
    f7f06000-f7f0bc77 /lib/libnss_compat.so.2
    f7a3c000-f7a4c5a7 /lib/libnsl.so.1
    f7efc000-f7f039bf /lib/libnss_nis.so.2
    f7ef2000-f7ef9b6b /lib/libnss_files.so.2
    f7a63000-f7a6d7db /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libverify.so
    f79bb000-f79db217 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libjava.so
    f7854000-f7859f13 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/native_threads/libhpi.so
    f7640000-f764e4c4 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libzip.so
    f7413000-f74240a3 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libnet.so
    f740b000-f74111e7 /opt/intel/eclipsepackage/3.2.1/jrockit-R27.2.0-jre1.5.0_10/lib/i386/libnio.so
    f6c29000-f6c72e1b /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-pi-gtk-3235.so
    f680c000-f6af4723 */opt/gnome/lib/libgtk-x11-2.0.so.0
    f6c08000-f6c0adff /opt/gnome/lib/libgthread-2.0.so.0
    f6c03000-f6c06dab /usr/X11R6/lib/libXtst.so.6
    f67f6000-f680aef7 /opt/gnome/lib/libgdk_pixbuf-2.0.so.0
    f6774000-f67f2c7b /opt/gnome/lib/libgdk-x11-2.0.so.0
    f676d000-f67721cb /opt/gnome/lib/libpangocairo-1.0.so.0
    f6736000-f676a697 /opt/gnome/lib/libpango-1.0.so.0
    f671d000-f67330b7 /opt/gnome/lib/libatk-1.0.so.0
    f66e4000-f671a893 /opt/gnome/lib/libgobject-2.0.so.0
    f6c00000-f6c01f33 /opt/gnome/lib/libgmodule-2.0.so.0
    f665e000-f66e2217 /opt/gnome/lib/libglib-2.0.so.0
    f660b000-f665c23f /usr/lib/libcairo.so.2
    f659e000-f66077fb /usr/lib/libfreetype.so.6
    f6565000-f65981c3 /usr/lib/libfontconfig.so.1
    f655d000-f6563b57 /usr/X11R6/lib/libXrender.so.1
    f6466000-f6559c7b /usr/X11R6/lib/libX11.so.6
    f6458000-f646443f /usr/X11R6/lib/libXext.so.6
    f6419000-f6456a07 /usr/lib/libpng12.so.0
    f6407000-f64179c3 /usr/lib/libz.so.1
    f63e5000-f64058e3 /usr/lib/libglitz.so.1
    f63e2000-f63e3ff3 /usr/X11R6/lib/libXrandr.so.2
    f63da000-f63e03ab /usr/X11R6/lib/libXi.so.6
    f63d7000-f63d838f /usr/X11R6/lib/libXinerama.so.1
    f63ce000-f63d5923 /usr/X11R6/lib/libXcursor.so.1
    f63c9000-f63cc103 /usr/X11R6/lib/libXfixes.so.3
    f63a4000-f63c71d3 /opt/gnome/lib/libpangoft2-1.0.so.0
    f6385000-f63a196f /usr/lib/libexpat.so.1
    f7a5a000-f7a5a7a3 /usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2
    f6c26000-f6c26fd7 /usr/lib/gconv/ISO8859-1.so
    f635c000-f6381073 /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-gtk-3235.so
    f6c1b000-f6c24a03 /opt/gnome/lib/gtk-2.0/2.4.0/engines/liblighthouseblue.so
    f6065000-f6066167 /opt/gnome/lib/pango/1.4.0/modules/pango-basic-fc.so
    f5bdf000-f5be420f /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-atk-gtk-3235.so
    f5bd5000-f5bdde87 /opt/intel/eclipsepackage/3.2.1/eclipse/configuration/org.eclipse.osgi/bundles/29/1/.cp/libswt-cairo-gtk-3235.so
    f5403000-f54065e3 /opt/intel/vtune/shared/bin/libEcGUIClientHandler.so
    f5252000-f52cf38f /opt/intel/vtune/shared/bin/libEcGUIClient.so
    f50ad000-f524fe07 /opt/sag/gcc-3.3/lib32/libimf.so
    f5931000-f5931577 /opt/sag/gcc-3.3/lib32/libcxaguard.so.5
    f5929000-f592ff1f /opt/sag/gcc-3.3/lib32/libgcc_s.so.1
    f4ff5000-f5092393 /opt/sag/gcc-3.3/lib32/libstdc++.so.5
    f4e5c000-f4fc8343 /opt/sag/exx/v721/lib/libole32.so
    f4d9d000-f4e48dab /opt/sag/exx/v721/lib/librpcrt4.so
    f5907000-f5921733 /opt/sag/exx/v721/lib/libntrtl.so
    f4d0b000-f4d87183 /opt/sag/exx/v721/lib/libmutant.so
    f4d03000-f4d08b27 /opt/sag/exx/v721/lib/libcoolmisc.so
    f4c1f000-f4cef8af /opt/sag/exx/v721/lib/liboleaut32.so
    f4b8c000-f4c15db3 /opt/intel/vtune/analyzer/bin/libcomfreeremoteconnector.so
    f4b60000-f4b81023 /opt/intel/vtune/shared/bin/libVTUtil.so
    f5902000-f5904ec3 /opt/sag/exx/v721/lib/libcoolcrypto.so
    f470c000-f4a109ab /opt/intel/vtune/shared/bin/libxerces-c.so.23
    f46d8000-f4705547 /opt/intel/vtune/shared/bin/libRemoteManager.so
    f46d1000-f46d5c03 /opt/sag/exx/v721/lib/libbasecrypt.so
    f46ba000-f46cacff /opt/intel/vtune/shared/bin/libVTRegLoc.so
    f3db9000-f3e5109f /opt/intel/vtune/shared/bin/libShell.so
    f3daf000-f3db6ed7 /opt/intel/vtune/shared/bin/libShellRes.so
    f3973000-f399ceaf /opt/intel/vtune/shared/bin/libReports.so
    f396c000-f3970db7 /opt/intel/vtune/shared/bin/libReportsRes.so
    f3949000-f39614eb /opt/intel/vtune/shared/bin/libComInfo.so
    f3901000-f3932ecf /opt/intel/vtune/shared/bin/libProductInfo.so
    f38fb000-f38fe537 /opt/intel/vtune/shared/bin/libProductInfoRes.so
    f37ee000-f38a93e3 /opt/intel/vtune/shared/bin/libWorkspaceMgr.so
    f37e7000-f37eb2b7 /opt/intel/vtune/shared/bin/libWorkspaceMgrRes.so
    f3782000-f37ca39b /opt/intel/vtune/shared/bin/libCollection.so
    f377c000-f377f5b7 /opt/intel/vtune/shared/bin/libCollectionRes.so
    f35ef000-f36ff5b3 /opt/intel/vtune/shared/bin/libActivity.so
    f35e5000-f35ec3f7 /opt/intel/vtune/shared/bin/libActivityRes.so
    f35a4000-f35ce48b /opt/intel/vtune/shared/bin/libFileDialog.so
    f3572000-f359528b /opt/intel/vtune/shared/bin/libFileDialogEc.so
    f3529000-f355ae8f /opt/intel/vtune/shared/bin/libFileMgr.so
    f3523000-f3526cb7 /opt/intel/vtune/shared/bin/libFileMgrRes.so
    f3468000-f34e9563 /opt/intel/vtune/shared/bin/libTuningBrowser.so
    f3460000-f3465217 /opt/intel/vtune/shared/bin/libTuningBrowserRes.so
    f33c4000-f342a0d3 /opt/intel/vtune/shared/bin/libWorkspaceUI.so
    f33bc000-f33c1277 /opt/intel/vtune/shared/bin/libWorkspaceUIRes.so
    f3350000-f339af3f /opt/intel/vtune/analyzer/bin/libCGAddin.so
    f32f1000-f333477b /opt/intel/vtune/analyzer/bin/libAnPropContainers.so
    f3284000-f32cef7f /opt/intel/vtune/shared/bin/libEnvInfo.so
    f327f000-f3282a17 /opt/intel/vtune/shared/bin/libcpuinfo2.so.1
    f3278000-f327c48f /opt/intel/vtune/shared/bin/libcpuinfoxsc.so.1
    f3270000-f3275a57 /opt/intel/vtune/shared/bin/libEnvInfoRes.so
    f320c000-f3253123 /opt/intel/vtune/analyzer/bin/libCGCons4VT.so
    f3046000-f317a44b /opt/intel/vtune/shared/bin/libidvcbase.so
    f2f5d000-f30026fb /opt/intel/vtune/analyzer/bin/libCGConsCore.so
    f2f56000-f2f5adaf /opt/intel/vtune/analyzer/bin/libCGPropStorage.so
    f2f1d000-f2f45ef3 /opt/intel/vtune/analyzer/bin/libCGDataModelVTDBC.so
    f2e6b000-f2eeb0a7 /opt/intel/vtune/shared/bin/libidvcfrw.so
    f2e51000-f2e6350f /opt/intel/vtune/shared/bin/libidvcpilot.so
    f2cc4000-f2dde9ff /opt/intel/vtune/shared/bin/libidvgrid.so
    f2cb8000-f2cc03af /opt/intel/vtune/analyzer/bin/libVTDBRuntime.so
    f2ca8000-f2cb3377 /opt/intel/vtune/analyzer/bin/libCGPruner.so
    f2c85000-f2c9de0f /opt/intel/vtune/analyzer/bin/libVTDBC.so
    f2c24000-f2c683d3 /opt/intel/vtune/analyzer/bin/libCGDP_VTDBC.so
    f2be4000-f2c198bf /opt/intel/vtune/shared/bin/libigvlayout.so
    f2b36000-f2ba6e67 /opt/intel/vtune/shared/bin/libigvviewer.so
    f2b1f000-f2b2f457 /opt/intel/vtune/shared/bin/libigvgraph.so
    f2b15000-f2b1b46b /opt/intel/vtune/shared/bin/libigvdatamanager.so
    f2ab1000-f2af9b83 /opt/intel/vtune/analyzer/bin/libvtsdb.so
    f2a3e000-f2a91c8b /opt/intel/vtune/analyzer/bin/libCTCG.so
    f2a34000-f2a3a8c3 /opt/intel/vtune/shared/bin/libdbmanager.so
    f29f9000-f2a2285b /opt/intel/vtune/analyzer/bin/libSymbolProvider_VTDBC.so
    f289f000-f29940f3 /opt/intel/vtune/shared/bin/libismImpl_2.so
    f285d000-f28964d7 /opt/intel/vtune/shared/bin/libcommon_2.so
    f2700000-f2713c9f /opt/intel/vtune/shared/bin/libsupport_2.so
    f26ea000-f26f88c7 /opt/intel/vtune/shared/bin/libdtlu_trace_assert.so
    f2564000-f259f857 /opt/intel/vtune/shared/bin/libvtfamgr.so
    f2558000-f256024f /opt/intel/vtune/shared/bin/libVTAddr_2.so
    f24fe000-f253bdcb /opt/intel/vtune/shared/bin/libSymVSrvr.so
    f24d2000-f24f01f7 /opt/intel/vtune/shared/bin/libDynamicLoading_2.so
    f244e000-f24af253 /opt/intel/vtune/analyzer/bin/libCGImpExp.so
    f243a000-f24479bb /opt/intel/vtune/analyzer/bin/libVTSDBUtil.so
    f23a5000-f240fa03 /opt/intel/vtune/analyzer/bin/libCGPackNGo.so
    f2371000-f23951f7 /opt/intel/vtune/analyzer/bin/libAnalyzerWizardsAddin.so
    f22bc000-f234d353 /opt/intel/vtune/analyzer/bin/libAnProdInfo.so
    f22b5000-f22b94f7 /opt/intel/vtune/analyzer/bin/libAnProdInfoRes.so
    f227d000-f22a3f17 /opt/intel/vtune/analyzer/bin/libEcAnalyzerUtils.so
    f2218000-f225ffe7 /opt/intel/vtune/analyzer/bin/libSVConsumerEc.so
    f2203000-f22120db /opt/intel/vtune/analyzer/bin/libsv_vtune_u.so
    f21de000-f21f8a3f /opt/intel/vtune/analyzer/bin/libsvpropstorage_u.so
    f2106000-f21a3e1f /opt/intel/vtune/analyzer/bin/libsvcore_u.so
    f20d2000-f20f635f /opt/intel/vtune/analyzer/bin/libsvcontrol_u.so
    f20bc000-f20cb59f /opt/intel/vtune/analyzer/bin/libVtGridCtlLite_u.so
    f1ef5000-f202a49b /opt/intel/vtune/shared/bin/libidvcbase_u.so
    f1dac000-f1de39b7 /opt/intel/vtune/shared/bin/libdtlu_file.so
    f1d18000-f1d898bb /opt/intel/vtune/analyzer/bin/libsvdp.so
    f1d07000-f1d1254f /opt/intel/vtune/analyzer/bin/libsv_pi.so
    f1b77000-f1c9382f /opt/intel/vtune/shared/bin/libidvgrid_u.so
    f1b25000-f1b5d19f /opt/intel/vtune/shared/bin/libidvtextviewer_u.so
    f1b05000-f1b1b62b /opt/intel/vtune/analyzer/bin/liblipsdp.so
    f1ac8000-f1af32d7 /opt/intel/vtune/analyzer/bin/libsv_dedp.so
    f1ab5000-f1ac2207 /opt/intel/vtune/analyzer/bin/libsv_do.so
    f1a9f000-f1aaec2f /opt/intel/vtune/analyzer/bin/libsv_mh.so
    f1844000-f187993f /opt/intel/vtune/analyzer/bin/liblips.so
    f182f000-f183d0d7 /opt/intel/vtune/analyzer/bin/libsv_ei.so
    f1828000-f182d4ff /opt/intel/vtune/analyzer/bin/libbemrl.so
    f1807000-f1810d2f /opt/intel/vtune/analyzer/bin/libemrlcore.so
    f178b000-f17a70f8 /opt/intel/vtune/analyzer/bin/libdecem.so
    f1777000-f1786693 /opt/intel/vtune/analyzer/bin/libdisem.so
    f175c000-f176de95 /opt/intel/vtune/analyzer/bin/libdasm.so
    f174e000-f175a2bf /opt/intel/vtune/analyzer/bin/libdisxsc.so
    f173f000-f174ba5f /opt/intel/vtune/analyzer/bin/libdecxsc.so
    f16e1000-f173dd4b /opt/intel/vtune/analyzer/bin/libdecoder.so
    f165b000-f16b9a23 /opt/intel/vtune/analyzer/bin/libSamplingConsumerEc.so
    f147a000-f15cd587 /opt/intel/vtune/analyzer/bin/libSamplingViewerCore.so
    f13c8000-f144825f /opt/intel/vtune/shared/bin/libidvcfrw_u.so
    f11e3000-f128eeb7 /opt/intel/vtune/shared/bin/libidvtimeline_u.so
    f1165000-f11c00ff /opt/intel/vtune/shared/bin/libidvchart_u.so
    f1122000-f1153a27 /opt/intel/vtune/shared/bin/libidvchartelements_u.so
    f0efb000-f107863b /opt/intel/vtune/analyzer/bin/libSPLMDEDataMgr.so
    f0e94000-f0edfd6f /opt/intel/vtune/analyzer/bin/libVTDBJoin.so
    f0e69000-f0e8719f /opt/intel/vtune/analyzer/bin/libSamplingPropContainersEc.so
    f0b8f000-f0c94caf /opt/intel/vtune/analyzer/bin/libModuleHandler.so
    f0abe000-f0b4b1e3 /opt/intel/vtune/shared/bin/libvtfilehandler.so
    f0e0b000-f0e4840f /opt/intel/vtune/analyzer/bin/libOptrepAddin.so
    f0aa7000-f0ab7d17 /opt/intel/vtune/analyzer/bin/libOptRepControl.so
    f0a8c000-f0a9fee3 /opt/intel/vtune/analyzer/bin/libOptReportParser.so
    f0e07000-f0e09167 /opt/intel/vtune/analyzer/bin/libOptRepEcClient.so
    f09d3000-f0a500bb /opt/intel/vtune/shared/bin/libidvcswt_u.so
    f0974000-f09b8657 /opt/intel/vtune/analyzer/bin/libRatiosEditor.so
    f0952000-f096bd0b /opt/intel/vtune/analyzer/bin/libEvents.so
    f08eb000-f093263f /opt/intel/vtune/shared/bin/libFileSearchAddIn.so
    f0881000-f08cc9af /opt/intel/vtune/shared/bin/libActivityEc.so
    f0831000-f086b4ef /opt/intel/vtune/analyzer/bin/libCGPreferencePagesEC.so
    f07fc000-f082144f /opt/intel/vtune/analyzer/bin/libSVPreferencePagesEC.so
    f0785000-f07daa3f /opt/intel/vtune/analyzer/bin/libSamplingPreferencesPagesEc.so
    f072d000-f076a80f /opt/intel/vtune/analyzer/bin/libVTMHPrefPagesEc.so
    f06e1000-f0715de7 /opt/intel/vtune/shared/bin/libFileSearchPrefPagesEc.so
    f05ab000-f05d0abf /opt/intel/vtune/shared/bin/libPropBag.so
    f054a000-f058faa7 /opt/intel/vtune/analyzer/bin/libSamplingWizardLogic.so
    f0518000-f053ba2f /opt/intel/vtune/analyzer/bin/libSamplingWizardEc.so
    f0e00000-f0e0588b /opt/gnome/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-xpm.so
    f0406000-f041669f /opt/gnome/lib/gtk-2.0/2.4.0/filesystems/libgnome-vfs.so
    f03d6000-f03e7eb7 /opt/gnome/lib/libgnome-2.so.0
    f0376000-f03d0b23 /opt/gnome/lib/libgnomevfs-2.so.0
    f031d000-f036ba33 /opt/gnome/lib/libbonobo-2.so.0
    f02ec000-f0319c9f /opt/gnome/lib/libgconf-2.so.4
    f02d9000-f02e9587 /opt/gnome/lib/libbonobo-activation.so.4
    f0289000-f02ceb37 /opt/gnome/lib/libORBit-2.so.0
    f0200000-f02844a7 /opt/gnome/lib/libgnomeui-2.so.0
    f01f8000-f01fe103 /usr/lib/libpopt.so.0
    f01ee000-f01f646b /usr/lib/libesd.so.0
    f01cb000-f01ea087 /usr/lib/libaudiofile.so.0
    f009b000-f01c0fcb /usr/lib/libxml2.so.2
    f0093000-f0099b43 /usr/lib/libhal-storage.so.1
    f008a000-f00917a7 /usr/lib/libhal.so.1
    f0071000-f008812b /usr/lib/libdbus-glib-1.so.2
    f0042000-f006f6a7 /usr/lib/libdbus-1.so.2
    f0005000-f003d7d7 /usr/lib/libssl.so.0.9.8
    efedd000-effec39f /usr/lib/libcrypto.so.0.9.8
    efed8000-efedb00b /usr/lib/libdns_sd.so
    efec5000-efed350b /lib/libresolv.so.2
    efec1000-efec3f1b /opt/gnome/lib/libORBitCosNaming-2.so.0
    efe64000-efebd48f /opt/gnome/lib/libbonoboui-2.so.0
    efe3a000-efe62747 /opt/gnome/lib/libgnomecanvas-2.so.0
    efe24000-efe381f3 /usr/lib/libart_lgpl_2.so.2
    efe19000-efe229ab /opt/gnome/lib/libgnome-keyring.so.0
    efdfa000-efe17a4b /usr/lib/libjpeg.so.62
    efdf1000-efdf80f7 /usr/X11R6/lib/libSM.so.6
    efdd9000-efded0ff /usr/X11R6/lib/libICE.so.6
    efd1c000-efdd31e7 /usr/lib/libasound.so.2
    efd18000-efd1aadb /lib/libresmgr.so.1
    "Main Thread" id=1 idx=0x4 tid=31412 lastJavaFrame=0xff92e214
    Stack 0: start=0xff734000, end=0xff934000, guards=0xff739000 (ok), forbidden=0xff737000
    Thread Stack Trace:
    at <unknown>(???.c)@0xf68ded93
    at <unknown>(???.c)@0xf68e021b
    at <unknown>(???.c)@0xf68eab88
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2fe9
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68de358
    at <unknown>(???.c)@0xf68ec5ec
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2f3f
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68dc178
    at <unknown>(???.c)@0xf66f247a
    at <unknown>(???.c)@0xf66f2fe9
    at <unknown>(???.c)@0xf66f30f0
    at <unknown>(???.c)@0xf68dbb8e
    at <unknown>(???.c)@0xf68dbc3c
    at <unknown>(???.c)@0xf6c71b4d
    -- Java stack --
    at org/eclipse/swt/internal/gtk/OS._gtk_file_chooser_dialog_new([BIIIIIII)I(Native Method)
        at org/eclipse/swt/internal/gtk/OS.gtk_file_chooser_dialog_new(OS.java:4400)
        at org/eclipse/swt/widgets/DirectoryDialog.openChooserDialog(DirectoryDialog.java:124)
        at org/eclipse/swt/widgets/DirectoryDialog.open(DirectoryDialog.java:116)
        at com/intel/vtune/shell/VTDirectoryDialog.open(VTDirectoryDialog.java:47)
        at com/intel/vtune/analyzer/wizards/sampling/FirstUseSamplingPage$4.widgetSelected(FirstUseSamplingPage.java:365)
        at org/eclipse/swt/widgets/TypedListener.handleEvent(TypedListener.java:90)
        at org/eclipse/swt/widgets/EventTable.sendEvent(EventTable.java:66)
        at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1085)
        at org/eclipse/swt/widgets/Display.runDeferredEvents(Display.java:3166)
        at org/eclipse/swt/widgets/Display.readAndDispatch(Display.java:2842)
        at org/eclipse/jface/window/Window.runEventLoop(Window.java:820)
        at org/eclipse/jface/window/Window.open(Window.java:796)
        at org/eclipse/ui/actions/NewWizardAction.run(NewWizardAction.java:181)
        at com/intel/vtune/shell/NewActivity.run(NewActivity.java:79)
        at com/intel/vtune/shell/NewActivity.runWithEvent(NewActivity.java:73)
        at org/eclipse/ui/internal/PluginAction.runWithEvent(PluginAction.java:244)
        at org/eclipse/ui/internal/WWinPluginAction.runWithEvent(WWinPluginAction.java:229)
        at org/eclipse/jface/action/ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539)
        at org/eclipse/jface/action/ActionContributionItem.access$2(ActionContributionItem.java:488)
        at org/eclipse/jface/action/ActionContributionItem$6.handleEvent(ActionContributionItem.java:441)
        at org/eclipse/swt/widgets/EventTable.sendEvent(EventTable.java:66)
        at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1085)
        at org/eclipse/swt/widgets/Display.runDeferredEvents(Display.java:3166)
        at org/eclipse/swt/widgets/Display.readAndDispatch(Display.java:2842)
        at org/eclipse/ui/internal/Workbench.runEventLoop(Workbench.java:1914)
        at org/eclipse/ui/internal/Workbench.runUI(Workbench.java:1878)
        at org/eclipse/ui/internal/Workbench.createAndRunWorkbench(Workbench.java:419)
        at org/eclipse/ui/PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at org/eclipse/ui/internal/ide/IDEApplication.run(IDEApplication.java:95)
        at org/eclipse/core/internal/runtime/PlatformActivator$1.run(PlatformActivator.java:78)
        at org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
        at org/eclipse/core/runtime/internal/adaptor/EclipseAppLauncher.start(EclipseAppLauncher.java:68)
        at org/eclipse/core/runtime/adaptor/EclipseStarter.run(EclipseStarter.java:400)
        at org/eclipse/core/runtime/adaptor/EclipseStarter.run(EclipseStarter.java:177)
        at jrockit/vm/RNI.c2java(IIII)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:585)
        at org/eclipse/core/launcher/Main.invokeFramework(Main.java:336)
        at org/eclipse/core/launcher/Main.basicRun(Main.java:280)
        at org/eclipse/core/launcher/Main.run(Main.java:977)
        at org/eclipse/core/launcher/Main.main(Main.java:952)
        at jrockit/vm/RNI.c2java(IIII)V(Native Method)
        -- end of trace
    Additional information is available in:
      /root/workspace/jrockit.31412.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Extended, platform specific info:
    libc release: 2.4-development
    Elf headers:
    libc       ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 000159c0 PHOFF: 00000034 SHOFF: 00127058 EF: 0x0 HS: 52 PS: 32 PHN; 11 SS: 40 SHN: 67 STIDX: 64
    libpthread ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00004b80 PHOFF: 00000034 SHOFF: 0001274c EF: 0x0 HS: 52 PS: 32 PHN; 10 SS: 40 SHN: 37 STIDX: 34
    libjvm     ehdrs: EI: 7f454c46010101000000000000000000 ET: 3 EM: 3 V: 1 ENTRY: 00057470 PHOFF: 00000034 SHOFF: 002dfe00 EF: 0x0 HS: 52 PS: 32 PHN; 4 SS: 40 SHN: 19 STIDX: 16
    ===== END DUMP ===============================================================                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

  • Custom Error message in Login Page

    Hi,
    I am using MVC framework for my project. I want to display custom error messages to the user in the Login page(JSP).
    For eg: invalid password, password has been expired etc. How do I pass these messages from Java to my login page & display it?

    This is a sample action class for login page in struts : -
    package xxx;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import LoginForm.java;
    public class Action extends org.apache.struts.action.Action
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws Exception {
    ActionErrors errors = new ActionErrors();
    ActionForward forward = new ActionForward(); // return value
    String username;
    String password;
    try {
    LoginForm lf = new LoginForm;
    username =lf.getUserName();
    password = lf.getPassword();
    if( username== null)
    forward=mapping.getInputForward();
    if( (username == "admin" ) && ( password="admin"))
    // do something here
    } catch (Exception e) {
    // Report the error using the appropriate name and ID.
    //Errors will be caught here.
    errors.add("name", new ActionError("id"));
    // If a message is required, save the specified key(s)
    // into the request for use by the <struts:errors> tag.
    if (!errors.isEmpty()) {
    saveErrors(request, errors);
    // Forward control to the appropriate 'failure' URI (change name as desired)
    //     forward = mapping.findForward("failure");
    } else {
    // Forward control to the appropriate 'sucuess' URI (change name as desired)
    forward = mapping.findForward("success");
    // Finish with
    return (forward);
    You need to have LoginForm.java as Model and Login.jsp as View . Action.java will be your controller.

  • Apache Error Log mod_security: Access denied with code 400

    Hi
    I am seeing the Access denied with code 400 errors in the apache log's after applying CPU Patch updates below into a Dev/TEST environment
    RDBMS Patches: 9032412 & 9352191 & post steps below:
    @?/rdbms/admin/dbmsaqds.plb
    @?/rdbms/admin/prvtaqds.plb
    @?/rdbms/admin/prvtaqiu.plb
    Java Fix > [ID 1082747.1]
    E-Business Suite Patches & post steps below:
    9323613 & 9506302
    Compiled Forms PLL files using adadmin to solve the known problem below
    ORA-04062: signature of package "APPS.FND_HELP" has been changed
    ORA-04062: KEY-HELP trigger raised unhandled exception ORA-04062.
    the error can be replicated by following the steps below:
    Log in to Oracle Apps E-Business Suite (11.5.10.2) select Report Management Information Responsibility and then transaction reports. (Opens Oracle Discoverer 4i Viewer) > select either Period to date or Year to date and then select any department & and any period (date) and then apply parameters:
    Error message in browser
    This error (HTTP 400 Bad Request) means that Internet Explorer was able to connect to the web server, but the webpage could not be found because of a problem with the address.
    For more information about HTTP errors, see Help.
    Apache log shows:
    error_log shows the following:
    [Fri Jul  8 10:52:08 2011] [error] [client 10.180.225.5] mod_security: Access denied with code 400. Pattern match "!^([-_@|#!=A-Za-z0-9/ :.$/(/)]){0,255}([-_@|#!=A-Za-z0-9/ :.$]){0,255}$" at ARGS_NAMES. [hostname "loadbalancer.webdomain"] [uri "/discoverer4i/viewer"] [unique_id ThbTSAq0BRQAABrfK7M]
    access_log shows the following:
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/shadow_bottom02_leading_ltr.gif HTTP/1.1" 200 861 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/seperator.gif HTTP/1.1" 200 42 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/arch_blue_bottom_ltr.gif HTTP/1.1" 200 984 0
    10.180.225.5 - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/white.gif HTTP/1.1" 200 37 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/bar_blue_leading_edge_middle_ltr.gif HTTP/1.1" 200 111 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/bar_blue_trailing_edge_middle_ltr.gif HTTP/1.1" 200 129 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/shadow_bottom_leading_edge_ltr.gif HTTP/1.1" 200 862 0
    IP ADDRESS - - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/btopshadow.gif HTTP/1.1" 200 44 0
    IP ADDRESS- - [08/Jul/2011:10:51:39 +0100] "GET /disco4iv/html/images/bshadow.gif HTTP/1.1" 200 59 0
    IP ADDRESS - - [08/Jul/2011:10:52:08 +0100] "POST /discoverer4i/viewer HTTP/1.1" 400 227 0
    I have tried to follow a number of metalink notes but unable to resolve this issue, metalink notes looked at are:
    976473.1
    389558.1
    1313128.1 Patch 10324904 applied
    394587.1
    389558.1 Patch 5107107 applied
    1143882.1
    376992.1 Patch 3950067 applied
    Any ideas or suggestions most welcome
    Thank you
    Regards
    Arfan
    Edited by: user1717313 on 08-Jul-2011 04:59

    Hi JD
    I have tried the steps i.e stop apps tier, run adconfig on apps tiers and then started services on apps tiers and can replicate the error
    thanks
    Arfan
    Hi Helios
    I checked note 1080465.1 Patch 9506302 has been applied & Recompile all Forms PLL files using adadmin.
    I ran the sql feom the note, output below
    SQL> select text from dba_source where name='FND_HELP' and line <3;
    TEXT
    package Fnd_Help AUTHID CURRENT_USER as
    /* $Header: AFMLHLPS.pls 115.22 2009/10/12 12:56:58 nchiring ship $ */
    package body FND_HELP as
    /* $Header: AFMLHLPB.pls 115.115 2010/03/19 06:45:24 nchiring ship $ */
    Thanks
    Arfan
    Edited by: user1717313 on 08-Jul-2011 05:04

  • File does not exist error in Apache error log

    I have been getting the following error in apache error log located at $INST_TOP/apps/PROD_aclapp/logs/ora/10.1.3/Apache
    [Wed Mar 14 15:17:00 2012] [error] [client 173.26.0.33] [ecid: 1331718420:172.25.16.30:2172:0:484,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:19:13 2012] [error] [client 173.20.0.85] [ecid: 1331718553:172.25.16.30:2497:0:56,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6316,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6317,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:21:47 2012] [error] [client 173.26.0.36] [ecid: 1331718707:172.25.16.30:5691:0:6318,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5903,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5904,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:45 2012] [error] [client 192.168.8.126] [ecid: 1331718765:172.25.16.30:5689:0:5905,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6487,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.class
    [Wed Mar 14 15:22:48 2012] [error] [client 192.168.8.145] [ecid: 1331718768:172.25.16.30:5695:0:6488,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/ewt/alert/resource/AlertBundle_en_IN.properties
    [Wed Mar 14 15:24:53 2012] [error] [client 173.26.2.15] [ecid: 1331718893:172.25.16.30:3108:0:66,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:24:58 2012] [error] [client 173.26.2.15] [ecid: 1331718898:172.25.16.30:2497:0:84,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:9,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:01 2012] [error] [client 173.26.2.15] [ecid: 1331718901:172.25.16.30:3308:0:10,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    [Wed Mar 14 15:25:17 2012] [error] [client 173.25.2.8] [ecid: 1331718917:172.25.16.30:7669:0:6972,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:43 2012] [error] [client 173.25.9.5] [ecid: 1331718943:172.25.16.30:7663:0:5878,0] Directory index forbidden by rule: /d05_applhome/apps/apps_st/comn/java/classes/
    [Wed Mar 14 15:25:47 2012] [error] [client 173.25.2.8] [ecid: 1331718947:172.25.16.30:7663:0:5882,0] File does not exist: /d05_applhome/inst/apps/PROD_aclapp/portal/favicon.ico
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6389,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.class
    [Wed Mar 14 15:25:49 2012] [error] [client 173.25.9.5] [ecid: 1331718949:172.25.16.30:5691:0:6390,0] File does not exist: /d05_applhome/apps/apps_st/comn/java/classes/oracle/forms/engine/RunformBundle_en_IN.properties
    Kindly do help me in understanding why this error is arising. The entire directory path in the errors does not exist.
    Database version : Oracle 10.2.0.3
    Apps version : R 12.0.4

    Hi;
    1. It was working before If yes what have been changed?
    2. Did you try to close apps run autoconfig on db than appstier and retest issue?
    3. Please see:
    R12: "FRM-92050: FAILED TO CONNECT TO SERVER: /FORMS/LSERVLET" Error Message When Launching Forms [ID 1070263.1]
    Regard
    Helios

  • Error message http status 500 when I try to sign in to HBO go

    Hi, I'm trying to sign into HBO Go and I keep getting this error message.  Not sure why.  Never had had this problem before.  My iPad is about 2-3 months old.  I restarted it, and same thing happens.  It also says Apache Tomcat/5.5.27    Thanks.

    Some other users have been having the some problem over the past few days.  This discussion my help:
    "Invalid Address Tap Continue to sign...: Apple Support Communities

Maybe you are looking for