Serious problem ????? Unexpected Signal : EXCEPTION_ACCESS_VIOLATION

Hi,
While running a simple program i got a problem.The program has generated a report file. Attaching the same. Can anyone tell me why it is so??
Log file is :
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6d448cb7
Function name=(N/A)
Library=D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\hotspot\jvm.dll
NOTE: We are unable to locate the function name symbol for the error
just occurred. Please refer to release documentation for possible
reason and solutions.
Current Java thread:
     at sun.jdbc.odbc.JdbcOdbc.driverConnect(Native Method)
     at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(Unknown Source)
     at sun.jdbc.odbc.JdbcOdbcConnection.initialize(Unknown Source)
     at sun.jdbc.odbc.JdbcOdbcDriver.connect(Unknown Source)
     at java.sql.DriverManager.getConnection(Unknown Source)
     at java.sql.DriverManager.getConnection(Unknown Source)
     at AJFrame.testsql(AJframe.java:16)
     at AJFrame.<init>(AJframe.java:7)
     at AJFrame.main(AJframe.java:10)
Dynamic libraries:
0x00400000 - 0x00405000      C:\WINNT\system32\java.exe
0x77F80000 - 0x77FFB000      C:\WINNT\System32\ntdll.dll
0x77DB0000 - 0x77E0B000      C:\WINNT\system32\ADVAPI32.dll
0x77E80000 - 0x77F35000      C:\WINNT\system32\KERNEL32.DLL
0x77D40000 - 0x77DB0000      C:\WINNT\system32\RPCRT4.DLL
0x78000000 - 0x78046000      C:\WINNT\system32\MSVCRT.dll
0x6D420000 - 0x6D4F0000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\hotspot\jvm.dll
0x77E10000 - 0x77E74000      C:\WINNT\system32\USER32.dll
0x77F40000 - 0x77F7C000      C:\WINNT\system32\GDI32.DLL
0x77570000 - 0x775A0000      C:\WINNT\system32\WINMM.dll
0x75E60000 - 0x75E7A000      C:\WINNT\System32\IMM32.DLL
0x6D220000 - 0x6D227000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\hpi.dll
0x6D3B0000 - 0x6D3BD000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\verify.dll
0x6D250000 - 0x6D266000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\java.dll
0x6D3C0000 - 0x6D3CD000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\zip.dll
0x6D020000 - 0x6D12A000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\awt.dll
0x77800000 - 0x7781D000      C:\WINNT\system32\WINSPOOL.DRV
0x77A50000 - 0x77B46000      C:\WINNT\system32\ole32.dll
0x6D1E0000 - 0x6D21B000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\fontmanager.dll
0x72800000 - 0x72846000      C:\WINNT\system32\DDRAW.dll
0x728A0000 - 0x728A6000      C:\WINNT\system32\DCIMAN32.dll
0x69000000 - 0x691D7000      C:\WINNT\system32\G400ICD.DLL
0x6E420000 - 0x6E426000      C:\WINNT\System32\INDICDLL.dll
0x6D290000 - 0x6D29A000      D:\Program Files\JavaSoft\JRE\1.3.1_03\bin\JdbcOdbc.dll
0x1F7D0000 - 0x1F804000      C:\WINNT\system32\ODBC32.dll
0x76B30000 - 0x76B6E000      C:\WINNT\system32\comdlg32.dll
0x70BD0000 - 0x70C20000      C:\WINNT\system32\SHLWAPI.DLL
0x71730000 - 0x717BA000      C:\WINNT\system32\COMCTL32.DLL
0x782F0000 - 0x78532000      C:\WINNT\system32\SHELL32.DLL
0x1F8C0000 - 0x1F8D6000      C:\WINNT\system32\odbcint.dll
0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
0x0B240000 - 0x0B24B000      C:\WINNT\system32\PSAPI.DLL
Local Time = Tue Aug 20 15:57:39 2002
Elapsed Time = 1
# HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
# Error ID : 4F530E43505002BD
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
# Java VM: Java HotSpot(TM) Client VM (1.3.1_03-b03 mixed mode)

Today I was trouble shooting a jsp page that uses JDBC posted on a TOMCAT server. I was have the same exception as you guys described but found a work around for my program.
I as reading data from my db into the jsp page (into a table and some drop down menus). The error screen would pop up randomly as I accessed the page. If I refreshed page quickly it would cause the error to happen more often it seemed.
The fix was i used the "finally" statement to close every instance of ResultSet and Statement.
Before I use simply:
rs.close();
st.close();
rs = null;
st = null;
I have 2 seperate parts on jsp page where I accessed db. Once I put in the finally it worked. Here is the code I used:
try
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
     String sourceURL = new String("jdbc:odbc:D2TEST");
     Connection dbconn = DriverManager.getConnection(sourceURL);
     st = dbconn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
     rs = st.executeQuery("SELECT * FROM CIS_REFERENCE");
     while (rs.next())
          {     minute = rs.getInt("PERIOD");
               onoff = rs.getInt("PONOFF");
     finally {
          if (rs != null) {
               try {
                    rs.close();
               catch (SQLException sqle)
                    System.out.println(sqle.toString());
          if (st != null) {
               try {
                    st.close();
               catch (SQLException sqle)
                    System.out.println(sqle.toString());
Sorry bout the spacing I just cut and paste.
Hope this helps
B~

Similar Messages

  • Installation problem on XP EXCEPTION_ACCESS_VIOLATION

    Attempting to install on windows XP I get a "crash" incriminating ntdll.dll.
    The same installation file works OK on my professional laptop which is
    windows NT.
    Se logfile below
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x7C93AE22
    Function=RtlImpersonateSelf+0x3A5
    Library=F:\WINDOWS\system32\ntdll.dll
    Current Java thread:
         at java.util.zip.ZipFile.getNextEntry(Native Method)
         at java.util.zip.ZipFile.access$400(Unknown Source)
         at java.util.zip.ZipFile$2.nextElement(Unknown Source)
         - locked <0x08ccd8e8> (a java.util.zip.ZipFile)
         at com.installshield.archive.ArchiveReader.entries(Unknown Source)
         at com.installshield.product.actions.UninstallerArchive.getRequiredBytes(Unknown Source)
         at com.installshield.product.service.product.RequiredBytes.getUninstallerSize(Unknown Source)
         at com.installshield.product.service.product.RequiredBytes.visitSoftwareObject(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBean(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.RequiredBytes.getEstimatedRequiredBytes(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$DiskSpaceCheck.execute(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.executeCheck(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.executeChecks(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.executeChecks(Unknown Source)
         at com.installshield.product.service.product.InstallCheckerImpl.check(Unknown Source)
         at com.installshield.product.wizardbeans.InstallCheckPanel.executeChecks(Unknown Source)
         at com.installshield.product.wizardbeans.InstallCheckPanel.queryEnter(Unknown Source)
         at com.installshield.wizard.awt.AWTWizardUI.currentBeanChanged(Unknown Source)
         - locked <0x08653e88> (a com.installshield.wizard.swing.SwingWizardUI)
         at com.installshield.wizard.swing.SwingWizardUI.currentBeanChanged(Unknown Source)
         - locked <0x08653e88> (a com.installshield.wizard.swing.SwingWizardUI)
         at com.installshield.wizard.StandardWizardListener.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.Wizard$RunThread.run(Unknown Source)
    Dynamic libraries:
    0x00400000 - 0x00406000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\java.exe
    0x7C910000 - 0x7C9C7000      F:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C904000      F:\WINDOWS\system32\kernel32.dll
    0x77DA0000 - 0x77E4C000      F:\WINDOWS\system32\ADVAPI32.dll
    0x77E50000 - 0x77EE1000      F:\WINDOWS\system32\RPCRT4.dll
    0x77BE0000 - 0x77C38000      F:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\client\jvm.dll
    0x77D10000 - 0x77DA0000      F:\WINDOWS\system32\USER32.dll
    0x77EF0000 - 0x77F37000      F:\WINDOWS\system32\GDI32.dll
    0x76AE0000 - 0x76B0F000      F:\WINDOWS\system32\WINMM.dll
    0x10000000 - 0x10007000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\hpi.dll
    0x00390000 - 0x0039E000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\verify.dll
    0x003B0000 - 0x003C9000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\java.dll
    0x003D0000 - 0x003DD000      F:\DOCUME~1\RAGNAR~1\LOCALS~1\Temp\LRE6C.tmp\bin\zip.dll
    0x02E60000 - 0x02E6F000      F:\Documents and Settings\Ragnar MOLLER\Local Settings\Temp\LRE6C.tmp\bin\net.dll
    0x719F0000 - 0x71A07000      F:\WINDOWS\system32\WS2_32.dll
    0x719E0000 - 0x719E8000      F:\WINDOWS\system32\WS2HELP.dll
    0x71990000 - 0x719D0000      F:\WINDOWS\System32\mswsock.dll
    0x76ED0000 - 0x76EF7000      F:\WINDOWS\system32\DNSAPI.dll
    0x76F60000 - 0x76F68000      F:\WINDOWS\System32\winrnr.dll
    0x76F10000 - 0x76F3D000      F:\WINDOWS\system32\WLDAP32.dll
    0x76F70000 - 0x76F76000      F:\WINDOWS\system32\rasadhlp.dll
    0x02F80000 - 0x02FB0000      F:\Documents and Settings\Ragnar MOLLER\Local Settings\Temp\ismp001\win32ppk.dll
    0x7C9D0000 - 0x7D1F3000      F:\WINDOWS\system32\SHELL32.dll
    0x77F40000 - 0x77FB6000      F:\WINDOWS\system32\SHLWAPI.dll
    0x774A0000 - 0x775DD000      F:\WINDOWS\system32\ole32.dll
    0x76320000 - 0x7633D000      F:\WINDOWS\system32\IMM32.dll
    0x77BD0000 - 0x77BD8000      F:\WINDOWS\system32\VERSION.dll
    0x77390000 - 0x77493000      F:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x58B50000 - 0x58BEA000      F:\WINDOWS\system32\comctl32.dll
    0x5B090000 - 0x5B0C8000      F:\WINDOWS\SYSTEM32\uxtheme.dll
    0x03080000 - 0x030E9000      G:\Kaspersky Security Suite\Kaspersky Anti-Spam Personal\OEHook.dll
    0x76340000 - 0x7638A000      F:\WINDOWS\system32\comdlg32.dll
    0x76010000 - 0x76075000      F:\WINDOWS\system32\MSVCP60.dll
    0x770E0000 - 0x7716C000      F:\WINDOWS\system32\OLEAUT32.dll
    0x03030000 - 0x03037000      G:\Kaspersky Security Suite\Kaspersky Anti-Spam Personal\CatNames.dll
    0x03530000 - 0x0363F000      F:\Documents and Settings\Ragnar MOLLER\Local Settings\Temp\LRE6C.tmp\bin\awt.dll
    0x72F50000 - 0x72F76000      F:\WINDOWS\system32\WINSPOOL.DRV
    0x03640000 - 0x03690000      F:\Documents and Settings\Ragnar MOLLER\Local Settings\Temp\LRE6C.tmp\bin\fontmanager.dll
    0x736B0000 - 0x736F9000      F:\WINDOWS\system32\ddraw.dll
    0x73B10000 - 0x73B16000      F:\WINDOWS\system32\DCIMAN32.dll
    0x73890000 - 0x73960000      F:\WINDOWS\system32\D3DIM700.DLL
    0x057E0000 - 0x05BDF000      F:\WINDOWS\Resources\themes\Luna\Luna.msstyles
    0x23000000 - 0x23007000      F:\Program Files\Plaxo\2.12.0.29\plx_hook.dll
    0x05C20000 - 0x05C27000      G:\Copernic Desktop Search\DesktopSearchSystem2515.dll
    0x20000000 - 0x202DA000      F:\WINDOWS\system32\xpsp2res.dll
    0x6FEE0000 - 0x6FF34000      F:\WINDOWS\system32\netapi32.dll
    0x71A60000 - 0x71A72000      F:\WINDOWS\system32\MPR.dll
    0x75EF0000 - 0x75EF7000      F:\WINDOWS\System32\drprov.dll
    0x71B70000 - 0x71B7E000      F:\WINDOWS\System32\ntlanman.dll
    0x71C30000 - 0x71C47000      F:\WINDOWS\System32\NETUI0.dll
    0x71BF0000 - 0x71C30000      F:\WINDOWS\System32\NETUI1.dll
    0x71BE0000 - 0x71BE7000      F:\WINDOWS\System32\NETRAP.dll
    0x71B50000 - 0x71B63000      F:\WINDOWS\System32\SAMLIB.dll
    0x75F00000 - 0x75F09000      F:\WINDOWS\System32\davclnt.dll
    0x778E0000 - 0x779D8000      F:\WINDOWS\system32\SETUPAPI.dll
    0x77B50000 - 0x77B72000      F:\WINDOWS\system32\appHelp.dll
    0x76F80000 - 0x76FFF000      F:\WINDOWS\system32\CLBCATQ.DLL
    0x77000000 - 0x770D4000      F:\WINDOWS\system32\COMRes.dll
    0x05D70000 - 0x05D93000      F:\WINDOWS\system32\nvappfilter.dll
    0x76BA0000 - 0x76BAB000      F:\WINDOWS\system32\PSAPI.DLL
    0x62E40000 - 0x62E99000      F:\WINDOWS\system32\hnetcfg.dll
    0x719D0000 - 0x719D8000      F:\WINDOWS\System32\wshtcpip.dll
    0x745E0000 - 0x748A6000      F:\WINDOWS\system32\msi.dll
    0x77210000 - 0x772C1000      F:\WINDOWS\system32\SXS.DLL
    0x75610000 - 0x75686000      F:\WINDOWS\system32\wbem\fastprox.dll
    0x75200000 - 0x75237000      F:\WINDOWS\system32\wbem\wbemcomn.dll
    0x76740000 - 0x76753000      F:\WINDOWS\system32\NTDSAPI.dll
    0x77FC0000 - 0x77FD1000      F:\WINDOWS\system32\Secur32.dll
    0x76C40000 - 0x76C68000      F:\WINDOWS\system32\imagehlp.dll
    0x5D3F0000 - 0x5D491000      F:\WINDOWS\system32\DBGHELP.dll
    Heap at VM Abort:
    Heap
    def new generation total 1536K, used 463K [0x08140000, 0x082e0000, 0x085d0000)
    eden space 1408K, 23% used [0x08140000, 0x08193ec8, 0x082a0000)
    from space 128K, 99% used [0x082c0000, 0x082dfff0, 0x082e0000)
    to space 128K, 0% used [0x082a0000, 0x082a0000, 0x082c0000)
    tenured generation total 18944K, used 7681K [0x085d0000, 0x09850000, 0x0bd40000)
    the space 18944K, 40% used [0x085d0000, 0x08d50600, 0x08d50600, 0x09850000)
    compacting perm gen total 11008K, used 10759K [0x0bd40000, 0x0c800000, 0x0fd40000)
    the space 11008K, 97% used [0x0bd40000, 0x0c7c1e18, 0x0c7c2000, 0x0c800000)
    Local Time = Sun Nov 12 17:27:22 2006
    Elapsed Time = 36
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode)
    ee log file below

    Hello,
    I'm using jdk1.5.0_09 which was installed just before I tried to install Java studio creator. I installed the version without netbeans etc.
    I was successful installing on my professional laptop, which is a Win 2000 machine but it's to full to start trying out Java Studio on. That machine has a Jkd installed one year ago.
    I checked out most of the documents on the site, noteably:
    My installation of Java Studio Creator 2 Update 1 may not have completed successfully on Windows 2000 or XP. How should I proceed?
    and
    My installation of Java Studio Creator 2 Update 1 may not have completed successfully on Windows 2000 or XP. How should I proceed?
    Ragnar

  • Solaris HotSpot Virtual Machine Error, Unexpected Signal 11 NEED HELP

    Hi all
    We are running a thin jsp application for video streaming live event running
    on a BEA WebLogic Personalization Server 3.2 on Solaris (streaming servers
    are separate and do not affect the server). After putting it in production
    we have experienced serious memory problems with our environment. When the
    servers are running under heavy load, they eat all available memory until
    they finally crash, please see log message below. We can see that the
    garbage collection is running but it doesn't seem to keep up with the memory
    consumption. The problem is described in a bug report at SUN, but it is
    marked as a "no fix" with the reasoning that programming resources are now
    allocated to jdk1.4?
    Log message:
    # HotSpot Virtual Machine Error, Unexpected Signal 11
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error happened during: scavenge
    # Error ID: 4F533F534F4C415249530E435050079A 01
    # Problematic Thread: prio=5 tid=0xdbea8 nid=0x4 runnable
    When this occured we ran JDK 1.3.0 with HotSpot Server VM on Solaris 8. WLS
    5.1, SP 9 and WLPS 3.2.
    WLS is started with the following parameters.
    #----------- Start WebLogic with the above parameters -----------
    $JDK_HOME/bin/java -server -ms512m -mx512m -Duser.timezone=ECT -classpath
    $JAVA_CLASSPATH -Dweblogic.system.bindAddr=10.122.114.4 -Dweblogic.cluster.m
    ulticastAddress=224.0.0.100 -Dweblogic.cluster.enable=true -Dweblogic.cluste
    r.name=iccluster -Dweblogic.class.path=$WEBLOGIC_CLASSPATH -Dweblogic.system
    .name=$SYSTEM_NAME
    weblogic.system.home=$SYSTEM_HOME -Dweblogic.home=$WEBLOGIC_HOME -Djava.secu
    rity.manager -Djava.security.policy=$WEBLOGIC_HOME/weblogic.policy -Dcommerc
    e.properties=$WL_COMMERCE_HOME/weblogiccommerce.properties -Dweblogic.proper
    ties=$WL_COMMERCE_HOME/weblogic.properties -Dpipeline.properties=$WL_COMMERC
    E_HOME/pipeline.properties -Dwebflow.properties=$WL_COMMERCE_HOME/webflow.pr
    operties -Dwlcs.home=$WL_COMMERCE_HOME weblogic.Server &
    We have now upgraded to jdk1.3.1_02 B02 but still have a problem with memory
    leaks. We have so far been able to restart the server before memory is
    exhausted and has hence not seen the same error message after the upgrade.
    The memory is not freed when Weblogic aborts, the SUN server has to be
    rebooted to free the memory. We now have to restart our 3 servers aprox.
    every 6 hours. The servers are equiped with 2G physical memory each. We have
    also tried setting hotspot to -client and setting -XX:MaxPerm.
    The HW configuration is as follows:
    1 Foundry Server Iron load balancer (with one hot stand by).
    3 Sun E420R, 2 x 440MHz CPU, 2GB RAM. Running in a cluster with one apache
    and one WLPS instance on each
    The SW configuration is as follows:
    JDK 1.3.1_02 B02 with HotSpot Server VM
    Solaris 8.
    WLS 5.1, SP 9
    WLPS 3.2.
    Oracle server 8.1.7
    Oracle client 8.1.6?
    This bug is described in
    http://developer.java.sun.com/developer/bugParade/bugs/4408730.html.
    It is also described as a known problem in
    http://www.weblogic.com/platforms/sun/index.html.
    It has also been described by SUN as a problem arising from multiple nested
    try/catch blocks appearing in generated java code from servlets, especially
    on WebLogic and Apache.
    As SUN has said that they will not fix this bug we are trying to find a
    workaround, but have yet found one. We have been looking into changing the
    heap size and setting GC options on the JVM, but haven't found the optimal
    solution. We would be very interested in experiences with tuning gc
    parameters, documentation on solaris patches for JVMs, JVM tuning, WebLogic
    tuning, HotSpot tuning.
    Has anyone experienced similar problems and found a workaround. We would be
    very happy to hear any suggestions as soon as possible,
    thanks
    Kris

    Perhaps the -noTryBlocks option to jspc might help you. See here:
    http://e-docs.bea.com/wls/docs61/////jsp/reference.html
    simon.

  • MY IPAD 3 HAVE SOME SERIOUS PROBLEMS

    Hello Everyone
    I have a  16gb ipad 3 and it got problems , since i updated it to the new version i had some serious problems ,
    My ipad will not turn on when it plug in to the charger that on the wall or my ipod dock that i normally charge it on , it come up with the battery signal when it on charge and in the battery signal theres red lines through it and it goes to the apple logo after that it turns off  and starts it again , ive reboted it , ive downloaded itunes agian to restart it that way but it wont come up on it at all . it starting to **** me off .. it has run off the 9o days  or so period .. my last report that is to ring them to see if they can help . My ipad has a lock on it too and it has never done this before .......
    Thanks Everyone
    From Australia xx

    Hello Krystal,
    I would be concerned too if my iPad was not charging.  I found an article with steps you can take when you encounter an issue like this.  I recommend following the steps below (these steps refer to an iPhone, but the steps also are relevant for an iPad):
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    You can find the full article here:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Once you get your iPad running again, follow the steps in the article below if you do not recall your passcode:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Lookout OPC Client – Asynchronous I/O and Update Rate serious problems (Sequence of data)

    I am using the Lookout OPCClient driver to connect to AB PLCs (EtherNet/IP protocol) and power measurement equipment (Modbus TCP protocol). The OPC server is the NI OPC Servers. The data that are read out from PLCs and PMs are energy meter readings, energy counters, power, voltage, current, frequency, power factor and el. energy quality measurements (THD). That energy meter readings are being stored in SQL database.
    I am experiencing a serious problem regarding the accuracy of the meter readings. Several times per day, randomly, meter readings are losing the time sequence. For example, sequence is: 167, after few seconds 165, 166.  In other words, present value followed by two previous old values. That generates a serious problem in our application that is expecting a naturally rising sequence of counter values.
    Analyzing further, I isolated the problem to the connection between Lookout OPCClient and OPC Server. I made a simple application in Lookout 6.7 (opcproc.lkp, attached) with OPCClient parameters: NIOPCServers, OPC2, Asynchronus I/O, Update rate: 10000, Deadband: 0.0, that is reading just one tag from NI OPC Servers demo application (simdemo.opf).
    By using OPC diagnostic tool from NI OPC Servers I record the sequence of OPC requests and responses.  I found out that OPCClient sends every 2.5 sec “IOPCAsyncIO2::Refresh2()” call that is request for refreshing of all items in one OPC group. Few milliseconds later OPC Sever responds with callback function “IOPCDataCallback:: OnDataChange()(Device Refresh)” that actually refresh the data.
    This periodic sequence is intrinsic to the OPCClient and cannot be disabled or changed (by my knowledge).  This sequence is periodically interrupted by “IOPCDataCallback:: OnDataChange()” caused by update rate parameter of OPCClient (client is subscribed to server for periodic update of changed items).
    In the case of demo application on every 4 refresh callbacks caused by refresh requests (2.5 sec) there is one update subscription callback determined by Update rate (10 sec).
    QUESTION 1:
    What is the purpose of update sequence and update rate when we have every 2.5 sec fresh values?
    PROBLEM
    The problem arises when we have a large number of items in OPC group. In that case the OPC Server starts to queue refresh requests because they cannot be fulfilled in 2.5 sec time because of large number of I/O points that must be scanned. At the same time update subscription callbacks are running at the period determined by Update rate. I observed in my production system that regular update callbacks has higher priority than refresh callbacks from the queue. That causes the loosing of timed sequence of data. After the update callback with fresh data, sometimes follow one or two refresh callbacks from queue with old (invalid) data. By adjusting Update rate parameter (1 hour, 2hours …) I can postpone the collision of data refreshes but I cannot eliminate it. Furthermore, the 2.5 sec automatic refresh are large burden for systems with many I/O points.
    QUESTION 2:
    Is there a way to disable automatic refresh request every 2.5 sec and just use update requests determined by Update rate?
    QUESTION 3:
    Is there a way (or parameter) to change the period of automatic refresh (2.5 sec)?
    This problem is discovered for Lookout 6.5, 6.6 and 6.7 so I could say it is intrinsic to OPCClient. If I use synchronous I/O requests there is not an automatic refresh, but that is not an option for large systems.
    Thanks!
    Alan Vrana
    System engineer
    SCADA Projekt d.o.o.
    Picmanova 2
    10000 ZAGREB
    CROATIA
    T +385 1 6622230
    F +385 1 6683463
    e-mail [email protected]
    Alan Vrana
    SCADA Projekt d.o.o.
    ZAGREB, Croatia
    Attachments:
    opcproc.zip ‏4 KB

    The physical connection from LV to the switch is (I believe) copper crossover to fiber converter into a switch.  Then, fiber from the switch to the end device (relay).  The relay has all of the typical modbus registries and has been verified by inducing signals in to the system and measured/polled in LabVIEW and observed Variable Monitor.  I am working with LV 8.2 and 8.5. 
    An OPC server would only add an additional translation of addressing within the configuration.  The only real draw back would be the network overhead required to do this processing and not being representative of the end design configuration.
    I will reiterated my question in another way:
    I must answer the question to management that relates to data collection, test results and analysis; how often are you polling the client in relation to the outcomes measured?  At this time I can not point at any configuration in the set up and execution that directs the data framing rate.  I only measure the traffic and work with results.  This needs to be clearly identified based on the relay modbus/tcp design capability of supporting an fixed number of client requests per second. 
    For testing purposes, I would like to be able to stress the system to failure and have prove capabilities with measured data.  The present problem is that I have no basis to establish varying polling rates that effect the measured data transmission. 
    This raises another question.  What handles the Variable Monitor data requests and how is this rate determined?
    Thanks for your interest in my efforts.
    Steve

  • Unexpected Signal : 11 Error??? Help needed ASAP

    hello All,
    I have been running tomcat with SDK 1.4 on a linux for around 6 months with no major problem. The other day though tomcat began to crash, now it will not stay up. As soon as you browse a JSP page it crashes with the following error.
    Any ideas please, this is really important that i fix this ASAP.
    Unexpected Signal : 11 occurred at PC=0x402DD686
    Function=(null)+0x402DD686
    Library=/home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
          just occurred. Please refer to release documentation for possible
          reason and solutions.
    Current Java thread:
         at java.lang.StringBuffer.expandCapacity(StringBuffer.java:202)
         at java.lang.StringBuffer.append(StringBuffer.java:401)
         - locked <0x45e5fec8> (a java.lang.StringBuffer)
         at java.util.zip.ZipFile.getEntry(ZipFile.java:149)
         - locked <0x462c4790> (a java.util.jar.JarFile)
         at java.util.jar.JarFile.getEntry(JarFile.java:194)
         at java.util.jar.JarFile.getJarEntry(JarFile.java:181)
         at sun.misc.URLClassPath$JarLoader.getResource(URLClassPath.java:671)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:160)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:191)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         - locked <0x462cc500> (a sun.misc.Launcher$ExtClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at mx4j.server.interceptor.NotificationListenerMBeanServerInterceptor.addNotificationListener(NotificationListenerMBeanServerInterceptor.java:91)
         at mx4j.server.interceptor.DefaultMBeanServerInterceptor.addNotificationListener(DefaultMBeanServerInterceptor.java:98)
         at mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.addNotificationListener(ContextClassLoaderMBeanServerInterceptor.java:54)
         at mx4j.server.MBeanServerImpl.addNotificationListenerImpl(MBeanServerImpl.java:609)
         at mx4j.server.MBeanServerImpl.addNotificationListener(MBeanServerImpl.java:603)
         at org.apache.coyote.tomcat5.MapperListener.init(MapperListener.java:145)
         at org.apache.coyote.tomcat5.CoyoteConnector.start(CoyoteConnector.java:1537)
         at org.apache.catalina.core.StandardService.start(StandardService.java:489)
         - locked <0x4637e370> (a [Lorg.apache.catalina.Connector;)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         - locked <0x463bc2b0> (a [Lorg.apache.catalina.Service;)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(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:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 62:00 442447     /home/audient/Java/j2sdk1.4.2_07/bin/java
    08056000-08059000 rw-p 0000d000 62:00 442447     /home/audient/Java/j2sdk1.4.2_07/bin/java
    40000000-40004000 rw-s 00000000 62:00 655436     /tmp/hsperfdata_audient/1347
    40004000-40005000 r--p 0034f000 62:00 9504       /usr/lib/locale/locale-archive
    40005000-40008000 r--s 00000000 62:00 786492     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/dnsns.jar
    40009000-40407000 r-xp 00000000 62:00 557107     /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    40407000-40423000 rw-p 003fd000 62:00 557107     /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    40435000-4043d000 r-xp 00000000 62:00 1376291    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/native_threads/libhpi.so
    4043d000-4043e000 rw-p 00007000 62:00 1376291    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/native_threads/libhpi.so
    4043e000-40448000 r-xp 00000000 62:00 24306      /lib/libnss_files-2.3.2.so
    40448000-40449000 rw-p 0000a000 62:00 24306      /lib/libnss_files-2.3.2.so
    40449000-40459000 r-xp 00000000 62:00 1245289    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libverify.so
    40459000-4045b000 rw-p 0000f000 62:00 1245289    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libverify.so
    4045b000-4047b000 r-xp 00000000 62:00 1245290    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libjava.so
    4047b000-4047d000 rw-p 0001f000 62:00 1245290    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libjava.so
    4047d000-40491000 r-xp 00000000 62:00 1245292    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libzip.so
    40491000-40494000 rw-p 00013000 62:00 1245292    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libzip.so
    40494000-4058b000 r--s 00000000 62:00 852034     /home/audient/jakarta-tomcat-5.0.28/common/endorsed/xercesImpl.jar
    4058b000-405aa000 r--s 00000000 62:00 852035     /home/audient/jakarta-tomcat-5.0.28/common/endorsed/xml-apis.jar
    405aa000-41f53000 r--s 00000000 62:00 557164     /home/audient/Java/j2sdk1.4.2_07/jre/lib/rt.jar
    41f9d000-41fb3000 r--s 00000000 62:00 557110     /home/audient/Java/j2sdk1.4.2_07/jre/lib/sunrsasign.jar
    41fb3000-42090000 r--s 00000000 62:00 557155     /home/audient/Java/j2sdk1.4.2_07/jre/lib/jsse.jar
    42090000-420a1000 r--s 00000000 62:00 557111     /home/audient/Java/j2sdk1.4.2_07/jre/lib/jce.jar
    420a1000-425fa000 r--s 00000000 62:00 557156     /home/audient/Java/j2sdk1.4.2_07/jre/lib/charsets.jar
    42722000-42922000 r--p 00000000 62:00 9504       /usr/lib/locale/locale-archive
    42922000-4293e000 r--s 00000000 62:00 786491     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/sunjce_provider.jar
    4293e000-4294b000 r--s 00000000 62:00 786494     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/ldapsec.jar
    4294b000-42a07000 r--s 00000000 62:00 786495     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/localedata.jar
    42a07000-42a43000 r--s 00000000 62:00 1097765    /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/mysql-connector-java-3.0.11-stable-bin.jar
    42a43000-42f1f000 r--s 00000000 62:00 278689     /home/audient/Java/j2sdk1.4.2_07/lib/tools.jar
    42f1f000-42f27000 r--s 00000000 62:00 1343609    /home/audient/jakarta-tomcat-5.0.28/bin/bootstrap.jar
    42f27000-42f7b000 r--s 00000000 62:00 1343619    /home/audient/jakarta-tomcat-5.0.28/bin/jmx.jar
    42f7b000-42f7e000 r--s 00000000 62:00 1343614    /home/audient/jakarta-tomcat-5.0.28/bin/commons-daemon.jar
    42f7e000-42f85000 r--s 00000000 62:00 1343616    /home/audient/jakarta-tomcat-5.0.28/bin/commons-logging-api.jar
    42f85000-42f95000 r-xp 00000000 62:00 1245295    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libnet.so
    42f95000-42f96000 rw-p 0000f000 62:00 1245295    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libnet.so
    42f96000-42f99000 r--s 00000000 62:00 1261707    /home/audient/jakarta-tomcat-5.0.28/common/lib/ant-launcher.jar
    42f99000-43084000 r--s 00000000 62:00 1261708    /home/audient/jakarta-tomcat-5.0.28/common/lib/ant.jar
    43084000-4310d000 r--s 00000000 62:00 1261709    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-collections-3.1.jar
    4310d000-43128000 r--s 00000000 62:00 1261710    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-dbcp-1.2.1.jar
    43128000-43144000 r--s 00000000 62:00 1261711    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-el.jar
    43144000-4314f000 r--s 00000000 62:00 1261712    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-pool-1.2.jar
    4314f000-431a5000 r--s 00000000 62:00 1261713    /home/audient/jakarta-tomcat-5.0.28/common/lib/jasper-compiler.jar
    431a5000-431bf000 r--s 00000000 62:00 1261714    /home/audient/jakarta-tomcat-5.0.28/common/lib/jasper-runtime.jar
    431bf000-431cc000 r--s 00000000 62:00 1261715    /home/audient/jakarta-tomcat-5.0.28/common/lib/jsp-api.jar
    431cc000-431d3000 r--s 00000000 62:00 1261716    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-common.jar
    431d3000-431d7000 r--s 00000000 62:00 1261717    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-factory.jar
    431d7000-431d8000 r--s 00000000 62:00 1261718    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-java.jar
    431d8000-431e3000 r--s 00000000 62:00 1261719    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-resources.jar
    431e3000-431fb000 r--s 00000000 62:00 1261720    /home/audient/jakarta-tomcat-5.0.28/common/lib/servlet-api.jar
    431fb000-43200000 r--s 00000000 62:00 573558     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-ant.jar
    43200000-4321f000 r--s 00000000 62:00 573559     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-cluster.jar
    4321f000-43225000 r--s 00000000 62:00 573560     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-es.jar
    43225000-4322b000 r--s 00000000 62:00 573561     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-fr.jar
    4322b000-43231000 r--s 00000000 62:00 573562     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-ja.jar
    43231000-4324c000 r--s 00000000 62:00 573563     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-optional.jar
    4324c000-432f9000 r--s 00000000 62:00 573564     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina.jar
    432f9000-43328000 r--s 00000000 62:00 573565     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-beanutils.jar
    43328000-43343000 r--s 00000000 62:00 573566     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-digester.jar
    43343000-43349000 r--s 00000000 62:00 573567     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-fileupload-1.0.jar
    43349000-43364000 r--s 00000000 62:00 573568     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-modeler.jar
    43364000-4336b000 r--s 00000000 62:00 573569     /home/audient/jakarta-tomcat-5.0.28/server/lib/jakarta-regexp-1.3.jar
    4336b000-43373000 r--s 00000000 62:00 573570     /home/audient/jakarta-tomcat-5.0.28/server/lib/jkconfig.jar
    43373000-43374000 r--s 00000000 62:00 573571     /home/audient/jakarta-tomcat-5.0.28/server/lib/jkshm.jar
    43374000-43375000 r--s 00000000 62:00 573573     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-common.jar
    43375000-4337b000 r--s 00000000 62:00 573574     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-default.jar
    4337b000-4337d000 r--s 00000000 62:00 573575     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-invoker.jar
    4337d000-43383000 r--s 00000000 62:00 573577     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-webdav.jar
    43383000-43388000 r--s 00000000 62:00 573578     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-coyote.jar
    43388000-43395000 r--s 00000000 62:00 573579     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-http11.jar
    43395000-43396000 r--s 00000000 62:00 573580     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jk.jar
    43396000-433b4000 r--s 00000000 62:00 573581     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jk2.jar
    433b4000-433b8000 r--s 00000000 62:00 573582     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jni.jar
    433b8000-433e4000 r--s 00000000 62:00 573583     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-util.jar
    433e4000-433ea000 r--s 00000000 62:00 49514      /usr/lib/gconv/gconv-modules.cache
    43bb0000-43bc5000 r-xp 00000000 62:00 69861      /lib/ld-2.3.2.so
    43bc5000-43bc6000 rw-p 00015000 62:00 69861      /lib/ld-2.3.2.so
    43bc8000-43cff000 r-xp 00000000 62:00 69862      /lib/libc-2.3.2.so
    43cff000-43d02000 rw-p 00137000 62:00 69862      /lib/libc-2.3.2.so
    43d07000-43d28000 r-xp 00000000 62:00 31514      /lib/libm-2.3.2.so
    43d28000-43d29000 rw-p 00020000 62:00 31514      /lib/libm-2.3.2.so
    43d2b000-43d2d000 r-xp 00000000 62:00 69864      /lib/libdl-2.3.2.so
    43d2d000-43d2e000 rw-p 00001000 62:00 69864      /lib/libdl-2.3.2.so
    43d43000-43d52000 r-xp 00000000 62:00 24322      /lib/libpthread-0.10.so
    43d52000-43d53000 rw-p 0000f000 62:00 24322      /lib/libpthread-0.10.so
    43dc6000-43dd8000 r-xp 00000000 62:00 33884      /lib/libnsl-2.3.2.so
    43dd8000-43dd9000 rw-p 00011000 62:00 33884      /lib/libnsl-2.3.2.so
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 551K [0x45de0000, 0x45e80000, 0x462c0000)
      eden space 512K,  99% used [0x45de0000, 0x45e5ffe8, 0x45e60000)
      from space 64K,  61% used [0x45e60000, 0x45e69cf0, 0x45e70000)
      to   space 64K,   0% used [0x45e70000, 0x45e70138, 0x45e80000)
    tenured generation   total 7136K, used 4382K [0x462c0000, 0x469b8000, 0x49de0000)
       the space 7136K,  61% used [0x462c0000, 0x46707848, 0x46707a00, 0x469b8000)
    compacting perm gen  total 6656K, used 6602K [0x49de0000, 0x4a460000, 0x4dde0000)
       the space 6656K,  99% used [0x49de0000, 0x4a452bb0, 0x4a452c00, 0x4a460000)
    Local Time = Mon Mar 21 23:25:01 2005
    Elapsed Time = 11
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_07-b05 mixed mode)
    #

    I'm having a similar problem. Did you ever find a solution?

  • Pls Help - Unexpected Signal 11 occuring on solaris 8

    Hi,
    We are getting Unexpected Signal 11 crashes on solaris 8 our Application server is crashing with following core dump msg
    Unexpected Signal : 11 occurred at PC=0xFE455CF4
    Function=[Unknown. Nearest: JVM_GetInterfaceVersion+0xE0]
    Library=/u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libjvm.so
    Dynamic libraries:
    0x10000      /user2/epoint/pups
    0xff080000      .//libxalan-c1_2.so
    0xfed80000      .//libxerces-c1_6_0.so
    0xff050000      /usr/lib/libsocket.so.1
    0xfec80000      /usr/lib/libnsl.so.1
    0xfed60000      /usr/lib/libpthread.so.1
    0xfed40000      /usr/lib/librt.so.1
    0xff3a0000      /usr/lib/libdl.so.1
    0xfec50000      /usr/lib/libCrun.so.1
    0xfec00000      /usr/lib/libm.so.1
    0xff040000      /usr/lib/libw.so.1
    0xfebc0000      /usr/lib/lwp/libthread.so.1
    0xfea80000      /usr/lib/libc.so.1
    0xfeb90000      /usr/lib/libgen.so.1
    0xfeb70000      /usr/lib/libmp.so.2
    0xfea60000      /usr/lib/libaio.so.1
    0xfebf0000      /usr/platform/SUNW,Sun-Fire-280R/lib/libc_psr.so.1
    0xfe8c0000      /user2/epoint/pjni.dll
    0xfe400000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libjvm.so
    0xfe890000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    0xfe860000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libverify.so
    0xfe3c0000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libjava.so
    0xfe3a0000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libzip.so
    0xfa7a0000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/libnet.so
    0xfa6e0000      /u02/iplanet6.1/j2sdk1.4.1/jre/lib/sparc/librmi.so
    0xfa6c0000      /user2/epoint/pcom.dll
    0xfa690000      /user2/epoint/psl.dll
    0xfa5c0000      /user2/epoint/pfile.dll
    0xfa590000      /user2/epoint/psysapi.dll
    0xfa4e0000      /user2/epoint/pdll.dll
    0xfa4b0000      /user2/epoint/pxml.dll
    0xf1ab0000      /user2/epoint/pactions.dll
    0xf1590000      /user2/epoint/pcti.dll
    0xf13e0000      /user2/epoint/psocket.dll
    0xf0cb0000      /user2/epoint/psqldb.dll
    0xf0da0000      /user2/epoint/poracle.dll
    0xea800000      /export/home/oraep/oracle8/lib/libclntsh.so.8.0
    0xf0c90000      /export/home/oraep/oracle8/lib/libwtc8.so
    0xf0be0000      /usr/lib/libsched.so.1
    Local Time = Thu Feb 3 17:58:24 2005
    Elapsed Time = 216
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002E6 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.1-b21 mixed mode)
    Details of Environemnt :-
    OS :- Solaris 8
    Webserver :- Sunone 6.1 SP3 with JDK 1.4.1
    Application Server (developed in C++ and make native calls with java using JNI ) uses JDK 1.3.1_09
    DB:- Oracle 8.1.7.4
    Is this a JDK Bug ? Should we upgrade JDK
    Also we are using 2 diff JDK versions Sunone on JDK1.4.1 while our Application server is on JDK 1.3.1_09 can this be a cause ???
    Please help me to resolve the problem

    Hi, you can find some answers here: http://www.bitwizard.nl/sig11/.
    Using this article you can detect if it is a hwd problem or a sofware one
    good luck

  • Managed server is getting crashed with Unexpected Signal : 11 occurred

    Hi All,
    I have installed weblogic 8.1 in production environment which has 4 manged servers configured on it.
    One of my managed server is getting down on daily basis with JVM crash leaving the below error:
    Unexpected Signal : 11 occurred at PC=0xFEDCBCAC
    Function=[Unknown. Nearest: JVM_FillInStackTrace+0x4CE4]
    Library=/Prod/bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    Current Java thread:
    Dynamic libraries:
    0x10000      /Prod/bea/jdk142_05/bin/java
    0xff380000      /usr/lib/libthread.so.1
    0xff370000      /usr/lib/libdl.so.1
    0xff280000      /usr/lib/libc.so.1
    0xff3b0000      /usr/platform/SUNW,Sun-Fire-V890/lib/libc_psr.so.1
    0xfec00000      /Prod/bea/jdk142_05/jre/lib/sparc/server/libjvm.so
    0xff230000      /usr/lib/libCrun.so.1
    0xff210000      /usr/lib/libsocket.so.1
    0xfeb00000      /usr/lib/libnsl.so.1
    0xfeab0000      /usr/lib/libm.so.1
    0xff1f0000      /usr/lib/libsched.so.1
    0xfebd0000      /usr/lib/libmp.so.2
    0xfea80000      /Prod/bea/jdk142_05/jre/lib/sparc/native_threads/libhpi.so
    0xfea50000      /Prod/bea/jdk142_05/jre/lib/sparc/libverify.so
    0xfea10000      /Prod/bea/jdk142_05/jre/lib/sparc/libjava.so
    0xfe9e0000      /Prod/bea/jdk142_05/jre/lib/sparc/libzip.so
    0xfe860000      /usr/lib/locale/en_GB.ISO8859-1/en_GB.ISO8859-1.so.2
    0xf98d0000      /Prod/bea/jdk142_05/jre/lib/sparc/libnet.so
    0xf9a90000      /Prod/bea/weblogic81/server/lib/solaris/libweblogicunix1.so
    0xf9890000      /Prod/bea/weblogic81/server/lib/solaris/libstackdump.so
    0x59560000      /Prod/bea/jdk142_05/jre/lib/sparc/libnio.so
    0x59540000      /usr/lib/librt.so.1
    0x59520000      /usr/lib/libaio.so.1
    0x58fe0000      /usr/lib/libmd5.so.1
    0x58fc0000      /usr/lib/libsendfile.so.1
    0x58fa0000      /Prod/bea/jdk142_05/jre/lib/sparc/libioser12.so
    0x49300000      /Prod/bea/jdk142_05/jre/lib/sparc/libawt.so
    0x4ca00000      /Prod/bea/jdk142_05/jre/lib/sparc/libmlib_image.so
    0x51e60000      /Prod/bea/jdk142_05/jre/lib/sparc/headless/libmawt.so
    0x49200000      /Prod/bea/jdk142_05/jre/lib/sparc/libfontmanager.so
    Heap at VM Abort:
    Heap
    def new generation total 678464K, used 239751K [0x59800000, 0x842a0000, 0x842a0000)
    eden space 657920K, 35% used [0x59800000, 0x67e59228, 0x81a80000)
    from space 20544K, 18% used [0x82e90000, 0x83258bc0, 0x842a0000)
    to space 20544K, 0% used [0x81a80000, 0x81a80000, 0x82e90000)
    tenured generation total 1398144K, used 91656K [0x842a0000, 0xd9800000, 0xd9800000)
    the space 1398144K, 6% used [0x842a0000, 0x89c22090, 0x89c22200, 0xd9800000)
    compacting perm gen total 74496K, used 74281K [0xd9800000, 0xde0c0000, 0xf9800000)
    the space 74496K, 99% used [0xd9800000, 0xde08a7c8, 0xde08a800, 0xde0c0000)
    Local Time = Tue Sep 22 12:17:26 2009
    Elapsed Time = 94624
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_05-b04 mixed mode)
    Kindly help me out to solve above problem ......
    Thanks,
    Karthik.

    The kinds of issues are usually bugs in the JVM, I would check your 8.1 Service Pack / Operating System combination on this page:
    http://download.oracle.com/docs/cd/E13196_01/platform/suppconfigs/configs81/81_over/overview.html#1146895
    Make sure you're using the latest supported version of the JVM available for your platform.
    So if you're using 8.1 SP6 on Solaris SPARC, then you could be using Sun Java 2 SDK 1.4.2_11.
    You should also open a support request.

  • [b]Unexpected Signal : 10 Error[/b]

    We are running our application with OC4J server, JDK 1.4.2_07 in a HP UX 11i. The application runs perfectly fine all through the day till 3:30 PM. Around 3:30 PM, the application crashes with the following error in the log.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 10 occurred at PC=0xDFBB04DC
    Function=Hash__11ObHashProxyCFv
    Library=/opt/retek/oblix/AccessServerSDK/oblix/lib/libobaccess.sl
    Current Java thread:
    "HttpRequestHandler-16667599" prio=6 tid=0x0b5aeea0 nid=588 lwp_id=5701570 runnable [0xdbfeb000..0xdbfea530]
    at com.oblix.access.ObUserSession.jni_isAuthorized(Native Method)
    at com.oblix.access.ObUserSession.isAuthorized(ObUserSession.java:232)
    at com.retek.rsw.service.OblixHelper.getLDAPProperties(Unknown Source)
    at com.retek.rsw.persistence.ldap.BbySsoRswSecurityDao.authenticateAndReadUser(Unknown Source)
    at com.retek.rsw.service.UserAuthenticateAndReadCommand.doTransactionalExecute(Unknown Source)
    at com.retek.rsw.service.TransactionCommand.doExecute(Unknown Source)
    at com.retek.rsw.service.Command.execute(Unknown Source)
    at com.retek.rsw.ui.control.security.LoginDoneAction.perform(Unknown Source)
    at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:220)
    at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.java:1758)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:536)
    Dynamic libraries:
    /opt/java1.4.1_07/bin/PA_RISC2.0/java
    text:0x00001000-0x000095ac data:0x0000a000-0x0000a828
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/server/libjvm.sl
    text:0xef000000-0xefbcd000 data:0xefcec000-0xefe57000
    /usr/lib/libpthread.1
    text:0xefc49000-0xefc62000 data:0xefc46000-0xefc49000
    /usr/lib/libm.2
    text:0xefc63000-0xefc8f000 data:0xefc62000-0xefc63000
    /usr/lib/librt.2
    text:0xefc90000-0xefc94000 data:0xefc8f000-0xefc90000
    /usr/lib/libcl.2
    text:0xeef15000-0xef000000 data:0xefc96000-0xefca2000
    /usr/lib/libisamstub.1
    text:0xefc95000-0xefc96000 data:0xefc94000-0xefc95000
    /usr/lib/libCsup.2
    text:0xefca5000-0xefcc0000 data:0xefca2000-0xefca5000
    /usr/lib/libc.2
    text:0xefe72000-0xeffb8000 data:0xefe5f000-0xefe72000
    /usr/lib/libdld.2
    text:0xefe58000-0xefe5b000 data:0xefe57000-0xefe58000
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/native_threads/libhpi.sl
    text:0xefc32000-0xefc42000 data:0xefc30000-0xefc32000
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/libverify.sl
    text:0xefc0d000-0xefc1d000 data:0xefc0c000-0xefc0d000
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/libjava.sl
    text:0xefbdf000-0xefc0c000 data:0xefbda000-0xefbdf000
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/libzip.sl
    text:0xeef02000-0xeef15000 data:0xefbd8000-0xefbda000
    /usr/lib/libnss_compat.1
    text:0xefbd4000-0xefbd8000 data:0xefbd3000-0xefbd4000
    /usr/lib/libnsl.1
    text:0xeec51000-0xeecde000 data:0xeec44000-0xeec51000
    /usr/lib/libxti.2
    text:0xeec2c000-0xeec44000 data:0xeec29000-0xeec2c000
    /opt/java1.4.1_07/jre/lib/PA_RISC2.0/libnet.sl
    text:0xeec19000-0xeec29000 data:0xefbce000-0xefbcf000
    /usr/lib/libnm.sl
    text:0xeec0e000-0xeec19000 data:0xefbcd000-0xefbce000
    /usr/lib/libnss_files.1
    text:0xeec05000-0xeec0e000 data:0xeec04000-0xeec05000
    /usr/lib/libnss_dns.1
    text:0xe8a77000-0xe8a7d000 data:0xeec03000-0xeec04000
    /u01/app/oracle/product/j2ee_904/jdbc/lib/libocijdbc10.sl
    text:0xe6800000-0xe782f000 data:0xe7a52000-0xe7ab8000
    /u01/app/oracle/product/j2ee_904/jdbc/lib/libclntsh.sl.10.1
    text:0xe5400000-0xe65b9000 data:0xe6783000-0xe6800000
    /u01/app/oracle/product/j2ee_904/jdbc/lib/libnnz10.sl
    text:0xe787e000-0xe7a52000 data:0xe7866000-0xe787e000
    /u01/app/oracle/product/j2ee_904/jdbc/lib/libociei.sl
    text:0xdfc00000-0xe5324000 data:0xeec02000-0xeec03000
    /opt/retek/oblix/AccessServerSDK/oblix/lib/libobaccess.sl
    text:0xdfaca000-0xdfc00000 data:0xe65c3000-0xe6600000
    /opt/retek/oblix/AccessServerSDK/oblix/lib/libaaa_client.sl
    text:0xdf98f000-0xdfaca000 data:0xe5361000-0xe53a3000
    /usr/lib/libstream.2
    text:0xe5339000-0xe5361000 data:0xe65ba000-0xe65bd000
    /usr/lib/libstd.2
    text:0xe53a3000-0xe53e1000 data:0xe7830000-0xe7833000
    /usr/lib/libC.2
    text:0xe53e1000-0xe5400000 data:0xe7833000-0xe7836000
    Local Time = Sun Dec 26 15:23:28 2004
    Elapsed Time = 46165
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.1 1.4.1.07-040312-15:24-PA_RISC2.0 PA2.0 (aCC_AP) mixed mode)
    # An error report file has been saved as hs_err_pid23435.log.
    # Please refer to the file for further information.
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Version: 03 - 01
    Can anyone help me in identifying the issue?

    We are running our application with OC4J server, JDK
    1.4.2_07 in a HP UX 11i. The application runs
    perfectly fine all through the day till 3:30 PM.
    Around 3:30 PM, the application crashes with the
    following error in the log.
    I would suggest looking it up but I believe that particular signal occurs when there is a pointer problem in C/C++ code.
    Which means it isn't a java problem. That really seems likely given that there is a "Native Method" call. Either there is a bug in the C/C++ code or the java code is using it incorrectly.
    And the reason of course for it occurring at 3:30 is because you are doing something at 3:30 that you are not doing the rest of the day.

  • Runtime stlport4 error: Unexpected Signal : 11

    Hi Gurus,
    I am using CC 5.5 with stlport4 to build our project. I basically build a jni library which got called from java class. I had no compile and link problem. If do "ldd -r MyLib.so", all symbols are resolved. But at runtime, I got the following error:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0xEFD7FF84
    Function=__1cDstdGlocale2t5B6Mrk1_v_+0xC
    Library=/opt/SUNWspro/lib/stlport4/libstlport.so.1
    Current Java thread:
    at com.ss.sp.MyLogStream.initialize(Native Method)
    Platform: Solaris 2.8
    SUNW CC: 5.5, compiler option -library=stlport4, -mt
    JDK: 1.4.2
    Thanks
    Ivan

    Sun C++ 5.5. comes with STLport as an optional standard library. SInce it is not the default version of the standard library, you must follow these rules when using it:
    Every CC command line used to build the entire program must have the option -library=stlport4
    Every CC command used to link any part of the program, including shared libraries, must have the option -library=stlport4
    If ld is used directly (instead of CC) to link a program or shared library, it must link libstlport.so.1, and not link to libCstd.so.1.
    You cannot mix program parts using the default libCstd with program parts using stlport4. The entire program, including shared libraries, must use the same standard library -- either libCstd or stlport.
    You can see whether there is any conflict between libCstd and stlport in your program by running the ldd command on every executable program and every shared library. If any of these shows a dependency on libCstd.so.1, you cannot use stlport in other parts of the code.
    Unfortunately, it is possible to link libCstd statically, and it's difficult to tell whether that happened if all you have is an a.out or a library. Let's hope that is not the case. The supplier of the third-party components you are using should document whether they used stlport or libCstd. If they used stlport, it needs to be the version that comes with the compiler, not a version they acquired from the stlport web site. Different versions of stlport from the web site are not binary compatibie. The versions we ship with our compilers are compatible with each other.
    The remaining issue is order of initialization of shared libraries. If (for example) a C program dlopens a C++ shared library that was not built with the correct dependencies, it is possible that the shared library will try to use stlport objects that haven't been initialized yet. If the main program is a C++ program that has a dependency on stlport , you won't run into that problem. Using ldd to check the dependencies of the main programs and shared libraries will show you if dependencies are inconsistent.
    It is also possible for shared libraries to be mutually dependent, so that each library requires the other library to be initialized first. (This is a programming error.) That situation should not be possible with stlport, since it should not have any dependency on any user library. But if user libraries A and B have this circular dependency, it is possible that one of them passes a bad reference to stlport. Let's consider this scenario unlikely for now. The other major issues I outlined should be investigated first.
    In particular, find out from the 3rd-party vendor how they built their C++ code. The possible good answers are
    1 They used the default libCstd.so.1
    2. They used the libstdport.so.1 that came with the compiler.
    (You can run ldd to find out these answers.)
    In case 1, you cannot use stlport. You must use the default libCstd, and link it dynamically (which is the default).
    In case 2, you can use stlport, and you must link it dynamically (which is the default).
    Any other answer is very bad news.

  • Precompiling jsps Unexpected Signal : 11  JVM_IsInterface

              Hi,
              We have an weblogic 7.0 SP0 application running on solaris 7. As part of it startup
              in precompiles jsps - sometimes at different points weblogic crashes
              when we don't precompile the jsp's we never get this problem
              has any body seem it got a work around
              the message is
              Unexpected Signal : 11 occurred at PC=0xfe15b1c8
              Function name=JVM_IsInterface
              Library=/usr/j2sdk1_3_1_03/jre/lib/sparc/server/libjvm.so
              Current Java thread:
              Dynamic libraries:
              0x10000      /usr/j2sdk1_3_1_03/bin/../bin/sparc/native_threads/java
              0xff360000      /usr/lib/libthread.so.1
              0xff3a0000      /usr/lib/libdl.so.1
              0xff280000      /usr/lib/libc.so.1
              0xff270000      /usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1
              0xfe000000      /usr/j2sdk1_3_1_03/jre/lib/sparc/server/libjvm.so
              0xff210000      /usr/lib/libCrun.so.1
              0xff1f0000      /usr/lib/libsocket.so.1
              0xff100000      /usr/lib/libnsl.so.1
              0xff1c0000      /usr/lib/libm.so.1
              0xff240000      /usr/lib/libw.so.1
              0xff0e0000      /usr/lib/libmp.so.2
              0xff0a0000      /usr/j2sdk1_3_1_03/jre/lib/sparc/native_threads/libhpi.so
              0xff070000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libverify.so
              0xff030000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libjava.so
              0xfe7d0000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libzip.so
              0xfe650000      /usr/lib/nss_files.so.1
              0xfe540000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libnet.so
              0xfdee0000      /usr/lib/nss_nis.so.1
              0xfdec0000      /apps/wls70/weblogic/server/lib/solaris/libmuxer.so
              0xfdd50000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libioser12.so
              Local Time = Thu Sep 4 17:40:55 2003
              Elapsed Time = 288
              # HotSpot Virtual Machine Error : 11
              # Error ID : 4F530E43505002BD 01
              # Please report this error at
              # http://java.sun.com/cgi-bin/bugreport.cgi
              # Java VM: Java HotSpot(TM) Server VM (1.3.1_03-b03 mixed mode)
              Many thanks
              Malcolm Bridgeford
              

              See Sun's bug parade:
              http://developer.java.sun.com/developer/bugParade/bugs/4458653.html
              They fixed something in 1.3.1_04 that was causing errors similar to yours so you
              should probably try moving up to the _04 release.
              Also there are some know problems with older JVMs when JSPs get REALLY big through
              many custom tags, includes, etc. Breaks some internal 64K limit.. Might be related
              to that.
              -Greg
              Co-author of new advanced WebLogic book, "Mastering BEA WebLogic Server" http://www.amazon.com/exec/obidos/ASIN/047128128X
              "Malcolm Bridgeford" <[email protected]> wrote:
              >
              >Hi,
              >We have an weblogic 7.0 SP0 application running on solaris 7. As part
              >of it startup
              >in precompiles jsps - sometimes at different points weblogic crashes
              >
              >when we don't precompile the jsp's we never get this problem
              >
              >has any body seem it got a work around
              >
              >the message is
              >
              >Unexpected Signal : 11 occurred at PC=0xfe15b1c8
              >Function name=JVM_IsInterface
              >Library=/usr/j2sdk1_3_1_03/jre/lib/sparc/server/libjvm.so
              >
              >Current Java thread:
              >
              >Dynamic libraries:
              >0x10000      /usr/j2sdk1_3_1_03/bin/../bin/sparc/native_threads/java
              >0xff360000      /usr/lib/libthread.so.1
              >0xff3a0000      /usr/lib/libdl.so.1
              >0xff280000      /usr/lib/libc.so.1
              >0xff270000      /usr/platform/SUNW,Ultra-4/lib/libc_psr.so.1
              >0xfe000000      /usr/j2sdk1_3_1_03/jre/lib/sparc/server/libjvm.so
              >0xff210000      /usr/lib/libCrun.so.1
              >0xff1f0000      /usr/lib/libsocket.so.1
              >0xff100000      /usr/lib/libnsl.so.1
              >0xff1c0000      /usr/lib/libm.so.1
              >0xff240000      /usr/lib/libw.so.1
              >0xff0e0000      /usr/lib/libmp.so.2
              >0xff0a0000      /usr/j2sdk1_3_1_03/jre/lib/sparc/native_threads/libhpi.so
              >0xff070000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libverify.so
              >0xff030000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libjava.so
              >0xfe7d0000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libzip.so
              >0xfe650000      /usr/lib/nss_files.so.1
              >0xfe540000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libnet.so
              >0xfdee0000      /usr/lib/nss_nis.so.1
              >0xfdec0000      /apps/wls70/weblogic/server/lib/solaris/libmuxer.so
              >0xfdd50000      /usr/j2sdk1_3_1_03/jre/lib/sparc/libioser12.so
              >
              >Local Time = Thu Sep 4 17:40:55 2003
              >Elapsed Time = 288
              >#
              ># HotSpot Virtual Machine Error : 11
              ># Error ID : 4F530E43505002BD 01
              ># Please report this error at
              ># http://java.sun.com/cgi-bin/bugreport.cgi
              >#
              ># Java VM: Java HotSpot(TM) Server VM (1.3.1_03-b03 mixed mode)
              >#
              >
              >Many thanks
              >Malcolm Bridgeford
              >
              >
              >
              

  • Unexpected Signal : 11

    I have a critical java application running a sunOS 5.8 on X86, Java VM 1.4.2_03-b02. This application has been running for over a year without any problems and then it crashed with the following error report.
    Unexpected Signal : 11 occurred at PC=0xDAD57500
    Function=javax.swing.text.SimpleAttributeSet$EmptyAttributeSet.isDefined(Ljava/lang/Object;)Z (compiled Java code)
    Library=(N/A)
    Current Java thread:
    Dynamic libraries:
    0x8050000      java
    0xdfb70000      /usr/lib/lwp/libthread.so.1
    0xdfb60000      /usr/lib/libdl.so.1
    0xdfab0000      /usr/lib/libc.so.1
    0xdf740000      /usr/j2sdk1.4.2_03/jre/lib/i386/client/libjvm.so
    0xdf720000      /usr/lib/libCrun.so.1
    0xdf700000      /usr/lib/libsocket.so.1
    0xdf650000      /usr/lib/libnsl.so.1
    0xdf630000      /usr/lib/libm.so.1
    0xdf610000      /usr/lib/libsched.so.1
    0xdfa80000      /usr/lib/libw.so.1
    0xdf5d0000      /usr/lib/libmp.so.2
    0xdf5b0000      /usr/j2sdk1.4.2_03/jre/lib/i386/native_threads/libhpi.so
    0xdf550000      /usr/j2sdk1.4.2_03/jre/lib/i386/libverify.so
    0xdf510000      /usr/j2sdk1.4.2_03/jre/lib/i386/libjava.so
    0xdf4e0000      /usr/j2sdk1.4.2_03/jre/lib/i386/libzip.so
    0xdf1a0000      /usr/lib/locale/en_US.ISO8859-1/en_US.ISO8859-1.so.2
    0xdcf00000      /usr/j2sdk1.4.2_03/jre/lib/i386/libawt.so
    0xdce90000      /usr/j2sdk1.4.2_03/jre/lib/i386/libmlib_image.so
    0xdce30000      /usr/j2sdk1.4.2_03/jre/lib/i386/motif21/libmawt.so
    0xdcc70000      /usr/dt/lib/libXm.so.4
    0xdaba0000      /usr/openwin/lib/libXt.so.4
    0xdcc30000      /usr/openwin/lib/libXext.so.0
    0xdcc10000      /usr/openwin/lib/libXtst.so.1
    0xdab20000      /usr/openwin/lib/libX11.so.4
    0xdaac0000      /usr/openwin/lib/libdps.so.5
    0xdaaa0000      /usr/openwin/lib/libSM.so.6
    0xdaa80000      /usr/openwin/lib/libICE.so.6
    0xda9d0000      /usr/j2sdk1.4.2_03/jre/lib/i386/libfontmanager.so
    0xda9a0000      /usr/openwin/lib/locale/common/xlibi18n.so.2
    0xda980000      /usr/openwin/lib/locale/iso8859-1/xomEuro.so.2
    0xda960000      /usr/lib//liblayout.so
    0xda920000      /usr/openwin/lib/locale/common/ximlocal.so.2
    0xd23e0000      /usr/j2sdk1.4.2_03/jre/lib/i386/libnet.so
    0xd23c0000      /usr/j2sdk1.4.2_03/jre/lib/i386/librmi.so
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 161K [0xd2400000, 0xd24a0000, 0xd24a0000)
    eden space 512K, 19% used [0xd2400000, 0xd2418698, 0xd2480000)
    from space 64K, 99% used [0xd2480000, 0xd248fff8, 0xd2490000)
    to space 64K, 0% used [0xd2490000, 0xd2490000, 0xd24a0000)
    train generation total 5696K, used 3416K [0xd24a0000, 0xd2a30000, 0xd6800000)
    compacting perm gen total 8192K, used 7939K [0xd6800000, 0xd7000000, 0xda800000)
    the space 8192K, 96% used [0xd6800000, 0xd6fc0fc0, 0xd6fc1000, 0xd7000000)
    Local Time = Thu Jun 2 14:00:36 2005
    Elapsed Time = 1206
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_03-b02 mixed mode)
    Can any one tell me what may have caused this error? I can't affort to have it happen again.
    Thanks

    What signal is #11?
    $ uname -a
    SunOS scd15 5.9 Generic_117171-02 sun4u sparc SUNW,Sun-Fire-15000
    $ bash
    bash-2.05$ kill -l
    1) SIGHUP       2) SIGINT       3) SIGQUIT      4) SIGILL
    5) SIGTRAP      6) SIGABRT      7) SIGEMT       8) SIGFPE
    9) SIGKILL     10) SIGBUS      11) SIGSEGV     12) SIGSYS
    13) SIGPIPE     14) SIGALRM     15) SIGTERM     16) SIGUSR1
    17) SIGUSR2     18) SIGCHLD     19) SIGPWR      20) SIGWINCH
    21) SIGURG      22) SIGIO       23) SIGSTOP     24) SIGTSTP
    25) SIGCONT     26) SIGTTIN     27) SIGTTOU     28) SIGVTALRM
    29) SIGPROF     30) SIGXCPU     31) SIGXFSZ     32) SIGWAITING
    33) SIGLWP      34) SIGFREEZE   35) SIGTHAW     36) SIGCANCEL
    37) SIGLOST     39) SIGRTMIN    40) SIGRTMIN+1  41) SIGRTMIN+2
    42) SIGRTMIN+3  43) SIGRTMAX-3  44) SIGRTMAX-2  45) SIGRTMAX-1
    46) SIGRTMAX
    posman@linux:~/ivan> uname -a
    Linux linux 2.6.4-52-default #1 Wed Apr 7 02:08:30 UTC 2004 i686 i686 i386 GNU/Linux
    posman@linux:~/ivan> kill -l
    1) SIGHUP       2) SIGINT       3) SIGQUIT      4) SIGILL
    5) SIGTRAP      6) SIGABRT      7) SIGBUS       8) SIGFPE
    9) SIGKILL     10) SIGUSR1     11) SIGSEGV     12) SIGUSR2
    13) SIGPIPE     14) SIGALRM     15) SIGTERM     17) SIGCHLD
    18) SIGCONT     19) SIGSTOP     20) SIGTSTP     21) SIGTTIN
    22) SIGTTOU     23) SIGURG      24) SIGXCPU     25) SIGXFSZ
    26) SIGVTALRM   27) SIGPROF     28) SIGWINCH    29) SIGIO
    30) SIGPWR      31) SIGSYS      35) SIGRTMIN    36) SIGRTMIN+1
    37) SIGRTMIN+2  38) SIGRTMIN+3  39) SIGRTMIN+4  40) SIGRTMIN+5
    41) SIGRTMIN+6  42) SIGRTMIN+7  43) SIGRTMIN+8  44) SIGRTMIN+9
    45) SIGRTMIN+10 46) SIGRTMIN+11 47) SIGRTMIN+12 48) SIGRTMIN+13
    49) SIGRTMIN+14 50) SIGRTMAX-14 51) SIGRTMAX-13 52) SIGRTMAX-12
    53) SIGRTMAX-11 54) SIGRTMAX-10 55) SIGRTMAX-9  56) SIGRTMAX-8
    57) SIGRTMAX-7  58) SIGRTMAX-6  59) SIGRTMAX-5  60) SIGRTMAX-4
    61) SIGRTMAX-3  62) SIGRTMAX-2  63) SIGRTMAX-1  64) SIGRTMAX
    posman@linux:~/ivan>

  • Unexpected Signal : 11 occurred at PC=0xfb8297f4

    Hi,
    I have encountered the following error on solaris running weblogic 7 any ideas to fix this are most appreciated.
    wl 7 core dumps and out puts the following error:
    Unexpected Signal : 11 occurred at PC=0xfb8297f4
    Function name=compareTo (compiled Java code)
    Library=(N/A)
    Current Java thread:
    Dynamic libraries:
    0x10000 /db_01/bea/jdk131_04/jre/bin/../bin/sparc/native_threads/java
    0xff370000 /usr/lib/libthread.so.1
    0xff3a0000 /usr/lib/libdl.so.1
    0xff280000 /usr/lib/libc.so.1
    0xff350000 /usr/platform/SUNW,Ultra-60/lib/libc_psr.so.1
    0xfee80000 /db_01/bea/jdk131_04/jre/lib/sparc/client/libjvm.so
    0xff230000 /usr/lib/libCrun.so.1
    0xfee60000 /usr/lib/libsocket.so.1
    0xfed80000 /usr/lib/libnsl.so.1
    0xfed50000 /usr/lib/libm.so.1
    0xff260000 /usr/lib/libw.so.1
    0xfee40000 /usr/lib/libmp.so.2
    0xfed30000 /usr/lib/librt.so.1
    0xfed10000 /usr/lib/libaio.so.1
    0xfece0000 /usr/lib/libmd5.so.1
    0xfecc0000 /usr/platform/SUNW,Ultra-60/lib/libmd5_psr.so.1
    0xfec90000 /db_01/bea/jdk131_04/jre/lib/sparc/native_threads/libhpi.so
    0xfec40000 /db_01/bea/jdk131_04/jre/lib/sparc/libverify.so
    0xfec00000 /db_01/bea/jdk131_04/jre/lib/sparc/libjava.so
    0xfebd0000 /db_01/bea/jdk131_04/jre/lib/sparc/libzip.so
    0xfe9e0000 /usr/lib/locale/en_US/en_US.so.2
    0xfd840000 /db_01/bea/jdk131_04/jre/lib/sparc/libnet.so
    0xfd820000 /usr/lib/nss_files.so.1
    0xfb660000 /db_01/bea/weblogic700/server/lib/solaris/libstackdump.so
    0xfb470000 /db_01/bea/weblogic700/server/lib/solaris/libmuxer.so
    0xfb450000 /usr/ucblib/libucb.so.1
    0xd33b0000 /usr/lib/libresolv.so.2
    0xfb410000 /usr/lib/libelf.so.1
    0xd3390000 /db_01/bea/weblogic700/server/lib/solaris/libfilelock.so
    0xd32a0000 /db_01/bea/jdk131_04/jre/lib/sparc/libioser12.so
    0xcea40000 /db_01/bea/weblogic700/server/lib/solaris/libweblogicunix1.so
    0xb3d80000 /db_01/pdflib-4.0.1-SunOS/bind/java/libpdf_java.so.1.1.1
    Local Time = Thu May 29 10:44:39 2003
    Elapsed Time = 21454
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002BD 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_04-b02 mixed mode)
    #

    Hi Kolisetty,
    I am also facing the exactly same problem. Can you please reply me at [email protected], with the inforation about the current status of your problem. If it is fixed please let me know how?
    Thanks in advance for your co-operation.
    Suresh Vemulapalli

  • JVM Core Dump  -  An irrecoverable stack overflow has occurred.;  Unexpected Signal : 11 occurred at PC=0xfb3d40cc;

    Hi all,
    We have faced this problem in our production system.
    Machine is Solaris 8, sparc, Running Java 1.3.1_08 hotspot version.
    I searched around quite a bit but no good solution.
    Here is the stack trace that I have just before the JVM crashes.
    Also, I am new to gdb. I tried to connect to core dump file through gdb but i
    do not see any details. The application is running on japanese platform how can
    I read the core file?
    Regards
    Tapan
    ~~~~~~~~~~~~~~~~~~~~~~
    STACK TRACE -
    <2004/04/26 9:44:34:JST> <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession:
    INSIDE...>
    Tag 'insert' can't insert page '/dealing/Snippet.do?name=pricingDetail.edit'.
    Check if it exists.
    Null property value for 'allQuotes'
    java.lang.IllegalArgumentException: Null property value for 'allQuotes'
         at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:619)
         at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:669)
         at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:509)
         at org.apache.struts.taglib.bean.DefineTag.doStartTag(DefineTag.java:200)
         at directDerivatives._integral._dealing._swap._CC.__PricingDetailEdit._jspService(__PricingDetailEdit.java:325)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:530)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:350)
         at org.apache.struts.tiles.ActionComponentServlet.processForward(ActionComponentServlet.java:262)
         at org.apache.struts.tiles.ActionComponentServlet.processActionForward(ActionComponentServlet.java:104)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1529)
         at com.integral.jsp.framework.IdcActionServlet.validateRequest(IdcActionServlet.java:331)
         at com.integral.jsp.framework.IdcActionServlet.process(IdcActionServlet.java:139)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:487)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:530)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:350)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:123)
         at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:733)
         at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:368)
         at directDerivatives._integral._dealing._workflow._template.__DealingFormLayout._jspService(__DealingFormLayout.java:1912)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:284)
         at org.apache.struts.tiles.ActionComponentServlet.processForward(ActionComponentServlet.java:264)
         at org.apache.struts.tiles.ActionComponentServlet.processActionForward(ActionComponentServlet.java:104)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1529)
         at com.integral.jsp.framework.IdcActionServlet.validateRequest(IdcActionServlet.java:331)
         at com.integral.jsp.framework.IdcActionServlet.process(IdcActionServlet.java:139)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:487)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:262)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:198)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2678)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2412)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:140)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:121)<2004/04/26 9:44:34:JST>
    <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession: ABOUT
    TO ACQUIRE LOCK...>
    <2004/04/26 9:44:34:JST> <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession:
    ABOUT TO ACQUIRE LOCK...>
    <2004/04/26 9:44:34:JST> <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession:
    INSIDE...>
    <2004/04/26 9:44:34:JST> <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession:
    INSIDE...>
    An irrecoverable stack overflow has occurred.
    Unexpected Signal : 11 occurred at PC=0xfb3d40cc
    Function name=getValue (compiled Java code)
    Library=(N/A)
    Current Java thread:
    Dynamic libraries:
    0x10000      /opt/weblogic/jdk131/bin/../bin/sparc/native_threads/java
    0xff350000      /usr/lib/libthread.so.1
    0xff390000      /usr/lib/libdl.so.1
    0xff200000      /usr/lib/libc.so.1
    0xff330000      /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
    0xfe400000      /opt/weblogic/jdk131/jre/lib/sparc/client/libjvm.so
    0xff2e0000      /usr/lib/libCrun.so.1
    0xff1e0000      /usr/lib/libsocket.so.1
    0xff100000      /usr/lib/libnsl.so.1
    0xff0d0000      /usr/lib/libm.so.1
    0xff310000      /usr/lib/libw.so.1
    0xff0b0000      /usr/lib/libmp.so.2
    0xff060000      /opt/weblogic/jdk131/jre/lib/sparc/native_threads/libhpi.so
    0xff030000      /opt/weblogic/jdk131/jre/lib/sparc/libverify.so
    0xfe7c0000      /opt/weblogic/jdk131/jre/lib/sparc/libjava.so
    0xfe790000      /opt/weblogic/jdk131/jre/lib/sparc/libzip.so
    0xfe2d0000      /usr/lib/locale/ja_JP.PCK/ja_JP.PCK.so.2
    0xfe2b0000      /usr/lib/locale/ja_JP.PCK/methods_ja_JP.PCK.so.2
    0xaf5e0000      /opt/weblogic/jdk131/jre/lib/sparc/libnet.so
    0xaf360000      /usr/lib/nss_files.so.1
    0xaf340000      /opt/weblogic/wlserver/lib/solaris/libmuxer.so
    0xaf320000      /usr/ucblib/libucb.so.1
    0xaf230000      /usr/lib/libresolv.so.2
    0xaf140000      /usr/lib/libelf.so.1
    0xa7080000      /opt/weblogic/wlserver/lib/solaris/oci920_8/libweblogicoci37.so
    0xa6400000      /opt/oracle/product/lib32/libclntsh.so.9.0
    0xaf010000      /usr/lib/libC.so.5
    0xaef60000      /opt/oracle/product/lib32/libwtc9.so
    0xaef40000      /usr/lib/libgen.so.1
    0xaef20000      /usr/lib/libsched.so.1
    0xaee60000      /usr/lib/libaio.so.1
    0xaee40000      /usr/lib/librt.so.1
    0xad760000      /opt/weblogic/jdk131/jre/lib/sparc/libioser12.so
    Local Time = Mon Apr 26 09:44:34 2004
    Elapsed Time = 67979
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002BD 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.3.1_08-b03 mixed mode)
    <2004/04/26 9:44:34:JST> <Info> <T3Services> <Integral5: ReliableTopicConnection.createTopicSession:
    ABOUT TO ACQUIRE LOCK...>
    ˆÙíI—¹

    Before debugging, look at these 20 or so search hits - at least one one of them looks like a possibility.
    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=4F530E43505002CC&col=javabugs&col=javaforums&x=27&y=9
    Also - if the problem came on suddenly, what changed....environment, software, power, hardware, etc???

  • Unexpected Signal

    does anybody have idea about this? or encountered with this before?
    my program is doing fine for months and suddenly this error occured.
    if anyone have an idea on how to fix this problem please tell me.. thank you so much...
    Unexpected Signal : 11 occurred at PC=0xFEDA70CC
    Function=[Unknown. Nearest: JVM_GetCPFieldClassNameUTF+0x3A34]
    Library=/usr/j2se/jre/lib/sparc/client/libjvm.so
    Dynamic libraries:
    0x10000         java
    0xff370000      /usr/lib/libthread.so.1
    0xff3a0000      /usr/lib/libdl.so.1
    0xff280000      /usr/lib/libc.so.1
    0xff360000      /usr/platform/FJSV,GPUZC-M/lib/libc_psr.so.1
    0xfec00000      /usr/j2se/jre/lib/sparc/client/libjvm.so
    0xff230000      /usr/lib/libCrun.so.1
    0xff210000      /usr/lib/libsocket.so.1
    0xff100000      /usr/lib/libnsl.so.1
    0xff0b0000      /usr/lib/libm.so.1
    0xff1e0000      /usr/lib/libsched.so.1
    0xff260000      /usr/lib/libw.so.1
    0xff090000      /usr/lib/libmp.so.2
    0xff060000      /usr/j2se/jre/lib/sparc/native_threads/libhpi.so
    0xfebd0000      /usr/j2se/jre/lib/sparc/libverify.so
    0xfeb90000      /usr/j2se/jre/lib/sparc/libjava.so
    0xfeb70000      /usr/j2se/jre/lib/sparc/libzip.so
    0xfe1d0000      /usr/j2se/jre/lib/sparc/libnet.so
    Heap at VM Abort:
    Heap
    def new generation   total 2112K, used 6K [0xed800000, 0xeda20000, 0xee630000)
      eden space 2048K,   0% used [0xed800000, 0xed800000, 0xeda00000)
      from space 64K,   9% used [0xeda00000, 0xeda018d8, 0xeda10000)
      to   space 64K,   0% used [0xeda10000, 0xeda10000, 0xeda20000)
    tenured generation   total 1536K, used 1415K [0xee630000, 0xee7b0000, 0xf5800000)
       the space 1536K,  92% used [0xee630000, 0xee791c60, 0xee791e00, 0xee7b0000)
    compacting perm gen  total 4096K, used 3827K [0xf5800000, 0xf5c00000, 0xf9800000)
       the space 4096K,  93% used [0xf5800000, 0xf5bbce70, 0xf5bbd000, 0xf5c00000)
    Local Time = Mon Oct  8 00:09:54 2007
    Elapsed Time = 4193
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode)
    # An error report file has been saved as hs_err_pid25781.log.
    # Please refer to the file for further information.
    Abort - core dumped

    sorry man, i think my 1st question is answered, but i haven't tried it yet because i need to talk to the admins first..
    and i have this follow up question, because i'm pretty sure the admins will ask me this..
    and by the way, if they agree to update to a newer version, are all other programs that runs in the older version will do fine?thanks again...

Maybe you are looking for

  • FUNCTION IS NOT WORKING WHEN RUN IN SRW.RUN_REPORT, URGENT

    Hi, I have a report. it has got 1 Query and 2 groups. Q1 | | __G1__ |F1 | |F2 | |F3 | | | | __G2__ |Items| |Sales| | Qty| |Store| |Func4| |Func5| |Func6| The Query looks like above. Now In the report I have a 3 User parameters . For Each record in G2

  • How to get RFC Destination and Logical System name dynamically

    Hi all, I have a RFC FM written in CRM. I need to call this FM in R/3. So, i use the syntax " Call function <func> destination <destination name>. My problem is that i need to fetch the destination name dynamically.. There is a way to do so in CRM wh

  • Iphoto 09 open event from picture after search

    ok so if I search iphoto 09 by a particular word and find a picture, I can sometimes see the picture is part of an event that has other pictures, but how do I show the whole event?  Drives me mad eg If I search for 'tv' I can get a picture (see link

  • ProRes 422 & Premiere Pro CS5.5.2 Playback

    I am a long-term user of CS5 Recently started using ProRes 422 footage, (LT in order to keep file size a little smaller). The footage is taken from a Ninja2 via the HDMI of a Sony HVR Z5. I do a lot of post work on my projects and the native mpeg2 8

  • XLF - Language Translations Migrations Problem

    Hi We are trying to upload XLF files for language translations using the following command. Command is getting executed without any errors and we can see the uploaded translation XLF files from the front end (XML Publisher Administrator/Home/Template