JNDI in an Eclipse Seam app

I've got a Seam app that needs to use a JNDI datasource file to connect to an Oracle 10g instance. I can create a connection manually in Eclipse and do a "Test Connection" successfully; however, I've not yet figured out how to get Eclipse to recognize the JNDI file with the identical credentials. Here's the persistence.xml file for the app:
  <persistence-unit name="ora-forms" transaction-type="JTA">       <provider>org.hibernate.ejb.HibernatePersistence</provider>       <jta-data-source>java:/ora-forms</jta-data-source>       <properties>         <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>         <property name="hibernate.connection.driver_class" value="oracle.jdbc.driver.OracleDriver"/>         <property name="hibernate.hbm2ddl.auto" value="update"/>         <property name="hibernate.show_sql" value="true"/>         <property name="hibernate.format_sql" value="true"/>         <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/>         <property name="jboss.entity.manager.factory.jndi.name" value="java:/ora-forms"/>       </properties>   </persistence-unit>
Here's the hibernate-console.properties:
hibernate.connection.password= hibernate.connection.username= hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver hibernate.dialect=org.hibernate.dialect.Oracle10gDialect hibernate.connection.url= hibernate.connection.provider_class=org.hibernate.connection.DriverManagerConnectionProvider hibernate.datasource=java:/ora-forms hibernate.transaction.manager_lookup_class=
When we try to use the "Seam Generate Entities" to read the database, it gives the following error:
Can't generate seam entities org.hibernate.exception.JDBCConnectionException: Getting database metadata Getting database metadata org.hibernate.exception.JDBCConnectionException: Getting database metadata Getting database metadata java.sql.SQLException: No suitable driver No suitable driver

Is it easier to manage EJB's or servers using JMS and
JNDI technologies?I would read the j2ee tutorial or a good book on J2ee if I were you.
http://java.sun.com/developer/onlineTraining/index.html

Similar Messages

  • How to use tomcat JNDI  resource in eclipse

    hi all, In my project i am using JSF,Tomcat,eclipse... i am planing to implement annotaions as part of my application
    I want to use Jndi resource as part of my project by using java annotaions
    for this i configured my server.xml in tomcat as
    <Context docBase="ALWREPORTSNEW" path="/ALWREPORTSNEW"
    reloadable="true"
    source="org.eclipse.jst.jee.server:ALWREPORTSNEW" >
    <Resource auth="Container"
    driverClassName="com.mysql.jdbc.Driver" maxActive="10000"
    maxIdle="3000" maxWait="10000" name="jdbc/enrollmentschema"
    password="adminadmin" removeAbandoned="true"
    removeAbandonedTimeout="300" type="javax.sql.DataSource"
    url="jdbc:mysql://localhost:3306/enrollment_schema_old"
    username="root" />
    </Context>And i configured web.xml as
    <resource-ref>
    <description>Enrollment Schema Connection pooling</description>
    <res-ref-name>jdbc/enrollmentschema</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>And some where in my project i am using annotaion as follows. i am getting NULL when trying access that annotaion .
    @Resource(name = "jdbc/mobileEnrollProd") DataSource mobileds;
    @Resource(name = "jdbc/enrollmentschema")
    private DataSource enrollds;
    public String UploadBankWise() {
    System.out.println("--------- ds "+enrollds);// *i am getting NULL*
    }but same code working with Glassfish and net benas..
    can any body hint me where i did mistake
    thanks in advance

    Go to Window-Preferences-Java-Debug-Step Filtering. When the dialog opens, press F1 for help. Good luck!

  • JNDI issue on sun ref app server

    I want to lookup a bean (Session/Entity/Message Bean) deployed on a SUN REF APP. SERVER from a different client machine. What should be specified for the JNDI lookup ?
    Note : If the bean is accessed from the same machine it is working properly.

    Using a Stand-Alone Client to Access an EJB Component
    To access an EJB component from a stand-alone client, perform the following steps:
    1. In your client code, instantiate the InitialContext:
    InitialContext ctx = new InitialContext();
    It is not necessary to explicitly instantiate a naming context that points to the CosNaming service.
    2. In the client code, look up the home object by specifying the JNDI name of the home object. For example:
    Object ref = ctx.lookup("jndi-name");
    BeanAHome = (BeanAHome)PortableRemoteObject.narrow(ref,BeanAHome.class);
    For more information about naming and lookups, see �Accessing the Naming Context� on page 239.
    3. Deploy the EJB component to be accessed. For more information on deployment, see �Tools for Deployment� on page 88.
    4. Copy the following JAR files to the client machine and include them in the classpath on the client side:
    * appserv-rt.jar - available at install_dir/lib
    * j2ee.jar - available at install_dir/lib
    5. To access EJB components that are residing in a remote system, set the values for the Java Virtual Machine startup options:
    jvmarg value = "-Dorg.omg.CORBA.ORBInitialHost=${ORBhost}"
    jvmarg value = "-Dorg.omg.CORBA.ORBInitialPort=${ORBport}"
    Here ORBhost is the Application Server hostname and ORBport is the ORB port number (default is 3700).
    This information can be obtained from the domain.xml file on the remote system. For more information on domain.xml file, see the Sun Java System Application Server Administration Reference.
    6. Run the stand-alone client. As long as the client environment is set appropriately and the JVM is compatible, you merely need to run the main class.

  • Cannot execute Microsoft HTML Help file from within Eclipse managed app.

    I took an easy solution and created a help system for a large Java application using the Microsoft HTML Help Workshop as the IDE. The Help System does exactly what the client wants, but when I tried to integrate it into the application I ran into a brick wall.
    I wrote a very small Java app to see if I could execute the compiled help file (RAS_Help.chm) under the simplest circumstances. The code, which runs fine under VJ++ throws the following exception when run from Eclipse
    e: java.io.IOException: CreateProcess: RAS_Help.chm error=193
    * Created on Mar 20, 2004
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package pkgTesting;
    import java.io.*;
    * @author Owner
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    public class ExeTest {     
         public static void showHelp() {
              Runtime rt = Runtime.getRuntime();
              String prog = "C:\\SCA\\RAS_Help.chm";
              try {
                   rt.exec(prog);
              } catch (IOException e) {
                   System.err.println("e: " + e);
         public static void main(String args[]) {
              showHelp();
    I assume the problem is in launching .chm files, since if I change the program I want to execute from the RAS_Help.chm file to the Windows Solitare game (sol.exe) the program works like a charm with no errors thrown.
    Can anyone give me some guidence on this? If it is impossible to run the HTML Help file I created, I'd be ammenable to redoing it in some other package, if that would guarentee my being able to use it in the client's large application.

    Try this;-*/class OpenBrowser{
       final String WIN_ID = "Win";
    * @throws java.lang.Exception
       OpenBrowser(java.io.File file){
          if(isWindowsPlatform() ){
             try{
                Runtime.getRuntime().exec(tryCommand1()+file);
             }catch(Exception exc1) {
               try{
                   Runtime.getRuntime().exec(tryCommand2()+file);
                }catch(Exception exc2) {
                   try{
                      Runtime.getRuntime().exec(tryCommand3()+file);
                   }catch(Exception exc3) {
                      if(MainEditor.getOpenBrowserHelper() ) new OpenBrowserHelper(file);
          else {
             try{
                Runtime.getRuntime().exec(tryCommand3()+file);
             }catch(Exception exc4) { if(MainEditor.getOpenBrowserHelper() ) new OpenBrowserHelper(file); }
    * @return true if this is a Windows OS
       private boolean isWindowsPlatform(){
          String os = System.getProperty("os.name");
          if ( os != null && os.startsWith(WIN_ID))
             return true;
             return false;
    * @return String path /protocal to open the Internet Explorer browser
       private String tryCommand1(){
          return "C:\\Program Files\\Internet Explorer\\Iexplore.exe file://";
    * @return  String path /protocal to open the default browser
       private String tryCommand2(){
          return "start rundll32 url.dll,FileProtocolHandler file://";
    * @return  String path /protocal to open the default browser
       private String tryCommand3(){
          return "file://";
    }

  • Jndi lookup fails on Sun app server 8

    My standalone client on java is able to lookup TopicConnectionFactory on localhost on Sun Server 7 perfectly, but fails on Sun Server 8. I've set up the resources correctly as described in the J2EE 1.4 tutorial, but I get the following error:
    SEVERE: NAM5003: CommunicationException in SerialContext lookup()
    java.lang.NullPointerException
         at com.sun.enterprise.naming.factory.ConnectorObjectFactory.getObjectInstance(ConnectorObjectFactory.java:64)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:301)
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:148)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
    javax.naming.CommunicationException:
         at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:174)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)What could be wrong??

    It turned out to be a JMS library version issue. I had files for Server 8.0, but was running 8.1. Who knew it would be that big a deal.
    Now that I have the right version, I'm able to look up topics and queues, but cannot lookup TopicConnectionFactory. The client does not return at connectionFactory = (TopicConnectionFactory)initial.lookup("jms/FieldTopicConnectionFactory"); and no error in server.log.
    Here's the rest of the code:
    try {
             Context initial = new InitialContext();
               connectionFactory = (TopicConnectionFactory)initial.lookup("jms/FieldTopicConnectionFactory"); //does not return
             dest = (Topic) initial.lookup("jms/FieldTopic"); //this works!!
    } catch{...}I run my standalone through these JVM args:
    -Dorg.omg.CORBA.ORBInitialPort=3700 -Dorg.omg.CORBA.ORBInitialHost=myserver.com

  • EJB not getting bound to JNDI name using Sun App Server upon deployment

    Hello,
    I've created a very simple "HelloWorld" EJB (2.1-style) and have successfully deployed it to my local application server (Sun Java System App Server Platform Edition 9.0). I now want to invoke the EJB (I have single stateless session bean that returns a string) using a simple remote client app (the client app is executing outside of the app server within its own JVM).
    From my client app I am able to create the InitialContext object, but I get error when trying to lookup my EJB's home object. My client looks as follows:
                   jndiProperties = new Properties();
                   jndiProperties.put("java.naming.factory.initial",
                        "com.sun.jndi.cosnaming.CNCtxFactory");
                   jndiProperties.put("java.naming.provider.url",
                        "iiop://localhost:3700"); // ORB listener is listening on port 3700...
                   context = new InitialContext(jndiProperties);
                   home = context.lookup("ejb/HelloWorldEJB"); // this line throws an exception (line 54)
                   ...The exception I receive is:
                   [java] 234  ERROR [main] net.blueslate.sample.ejb.helloworld.HelloWorldClient     - javax.namin
    g.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.
    org/CosNaming/NamingContext/NotFound:1.0]
         [java]     at com.sun.jndi.cosnaming.ExceptionMapper.mapException(ExceptionMapper.java:44)
         [java]     at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:453)
         [java]     at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:492)
         [java]     at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:470)
         [java]     at javax.naming.InitialContext.lookup(InitialContext.java:351)
         [java]     at net.blueslate.sample.ejb.helloworld.HelloWorldClient.main(HelloWorldClient.java:5
    4)
         [java] Caused by: org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/Naming
    Context/NotFound:1.0
         [java]     at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:72
         [java]     at org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.java:406)
         [java]     at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:440)
         [java]     ... 4 moreHere is my ejb-jar.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar
         xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
         version="2.1">
         <enterprise-beans>
              <session>
                   <ejb-name>HelloWorldEJB</ejb-name>
                   <home>net.blueslate.sample.ejb.helloworld.HelloWorldRemoteHome</home>
                   <remote>net.blueslate.sample.ejb.helloworld.HelloWorldRemote</remote>
                   <local-home>net.blueslate.sample.ejb.helloworld.HelloWorldLocalHome</local-home>
                   <local>net.blueslate.sample.ejb.helloworld.HelloWorldLocal</local>
                   <ejb-class>net.blueslate.sample.ejb.helloworld.impl.HelloWorldImpl</ejb-class>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
              </session>
         </enterprise-beans>
    </ejb-jar>Here is my sun-ejb-jar.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 EJB 3.0//EN" "http://www.sun.com/software/appserver/dtds/sun-ejb-jar_3_0-0.dtd">
    <sun-ejb-jar>
         <enterprise-beans>
              <ejb>
                   <ejb-name>HelloWorldEJB</ejb-name>
                   <jndi-name>HelloWorldEJB</jndi-name>
              </ejb>
         </enterprise-beans>     
    </sun-ejb-jar>I believe the root cause is that my EJB is not bound to a name within the app server. If I browse the "JNDI tree" from the app server admin console, I can see there is a root element "ejb," but there is nothing underneath. I guess I just expected to find the name of my EJB, "HelloWorldEJB." I swear I could have read somewhere in the documentation for the app server that when you deploy an EJB, the name of the EJB as specified by the "<ejb-name>" element of the ejb-jar.xml deployment descriptor gets automatically bound within the naming server to its home object.
    At this point I would appreciate any insight anyone might have regarding this problem. I suspect there is something extra I need to do when deploying my EJB so that its name gets binded to its home object; I just don't have a clue at this point what that is.
    I should also mention that I have played with the parameter passed to 'context.lookup()' - I tried passing: "ejb/HelloWorldEJB", "HelloWorldEJB", etc - nothing seems to work. FWIW, if I just pass in "ejb", I don't receive an exception (I was glad to see this work since the JNDI tree-view from the app server admin console shows "ejb" as one of the root-elements within the naming-tree - this indicated to me I was on the right track in my diagnosis of the problem; i.e., it's probably not a connectivity or protocol issue)
    Thank you very much for your time and help.

    Nevermind folks - I got it to work. All my configuration was correct; I had other issues with the ejb-jar file that the verifier informed me of (my previous deployments were with the verifier turned-off).

  • Eclipse crash

    Eclipse randomly crashes on me. I've tried to reproduce the problem but it seems to be totally random. From what I've gathered it has something to do with UTF-16.so but I really have no clue. Im running GNOME 3.0 with Gnome-Shell form the testing repo. I've attached the crash log from Eclipse and the output from 'uname -a'. Thx in advance for any insight that is provided....I need eclipse for all my Java related homework and for GWT.
    eclipse crash log:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x8a2e7a4c, pid=3431, tid=3075876544
    # JRE version: 6.0_24-b07
    # Java VM: Java HotSpot(TM) Client VM (19.1-b02 mixed mode linux-x86 )
    # Problematic frame:
    # C [UTF-16.so+0xa4c] gconv+0x35c
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0896d400): JavaThread "main" [_thread_in_native, id=3431, stack(0xbff3f000,0xbff8f000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=2 (SEGV_ACCERR), si_addr=0x85cdd000
    Registers:
    EAX=0x85cdd000, EBX=0x8a2eaff4, ECX=0x00000000, EDX=0x09382a74
    ESP=0xbff8c0b0, EBP=0x85cdd002, ESI=0x09382a70, EDI=0x00000000
    EIP=0x8a2e7a4c, CR2=0x85cdd000, EFLAGS=0x00210212
    Register to memory mapping:
    EAX=0x85cdd000
    0x85cdd000 is pointing to unknown location
    EBX=0x8a2eaff4
    0x8a2eaff4: <offset 0x3ff4> in /usr/lib/gconv/UTF-16.so at 0x8a2e7000
    ECX=0x00000000
    0x00000000 is pointing to unknown location
    EDX=0x09382a74
    0x09382a74 is pointing to unknown location
    ESP=0xbff8c0b0
    0xbff8c0b0 is pointing into the stack for thread: 0x0896d400
    "main" prio=10 tid=0x0896d400 nid=0xd67 runnable [0xbff8d000]
    java.lang.Thread.State: RUNNABLE
    EBP=0x85cdd002
    0x85cdd002 is pointing to unknown location
    ESI=0x09382a70
    0x09382a70 is pointing to unknown location
    EDI=0x00000000
    0x00000000 is pointing to unknown location
    Top of Stack: (sp=0xbff8c0b0)
    0xbff8c0b0: 08a2d598 00000000 bff8c178 bff8c24d
    0xbff8c0c0: 08c8295c 849d6028 b76c5ff4 08c8295c
    0xbff8c0d0: 093a4e4c bff8c250 b758351d 9713a4b8
    0xbff8c0e0: 09388f00 00000000 00000000 00000000
    0xbff8c0f0: 85cdc288 09380f80 00000004 b75825a0
    0xbff8c100: bff8c118 00000002 08c8a91c 093a4f14
    0xbff8c110: 00000000 8a2e76f0 00000000 00000000
    0xbff8c120: 093a49ec 093a4e4c bff8c144 b76c5ff4
    Instructions: (pc=0x8a2e7a4c)
    0x8a2e7a3c: 00 00 00 89 4c 24 60 90 8d 74 26 00 8b 7c 24 34
    0x8a2e7a4c: 0f b7 08 85 ff 0f 84 29 01 00 00 66 c1 c9 08 66
    Stack: [0xbff3f000,0xbff8f000], sp=0xbff8c0b0, free space=308k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [UTF-16.so+0xa4c] gconv+0x35c
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.mozilla.XPCOM._NS_NewLocalFile(II[I)I+0
    j org.eclipse.swt.internal.mozilla.XPCOM.NS_NewLocalFile(II[I)I+10
    j org.eclipse.swt.browser.AppFileLocProvider.<init>(Ljava/lang/String;Ljava/lang/String;Z)V+94
    j org.eclipse.swt.browser.Mozilla.create(Lorg/eclipse/swt/widgets/Composite;I)Z+551
    j org.eclipse.swt.browser.Browser.<init>(Lorg/eclipse/swt/widgets/Composite;I)V+302
    j org.eclipse.jface.internal.text.html.BrowserInformationControl.isAvailable(Lorg/eclipse/swt/widgets/Composite;)Z+12
    j org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover$HoverControlCreator.doCreateInformationControl(Lorg/eclipse/swt/widgets/Shell;)Lorg/eclipse/jface/text/IInformationControl;+18
    j org.eclipse.jface.text.AbstractReusableInformationControlCreator.createInformationControl(Lorg/eclipse/swt/widgets/Shell;)Lorg/eclipse/jface/text/IInformationControl;+20
    j org.eclipse.jface.text.AbstractInformationControlManager.getInformationControl()Lorg/eclipse/jface/text/IInformationControl;+176
    j org.eclipse.jface.text.AbstractInformationControlManager.internalShowInformationControl(Lorg/eclipse/swt/graphics/Rectangle;Ljava/lang/Object;)V+18
    j org.eclipse.jface.text.AbstractInformationControlManager.presentInformation()V+70
    j org.eclipse.jface.text.AbstractHoverInformationControlManager.presentInformation()V+64
    j org.eclipse.jface.text.TextViewerHoverManager.doPresentInformation()V+1
    j org.eclipse.jface.text.TextViewerHoverManager$5.run()V+4
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+58
    j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x09132c00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=3517, stack(0x89c5e000,0x89caf000)]
    0x8b0a1000 JavaThread "H2 Log Writer MODEL" daemon [_thread_blocked, id=3515, stack(0x89caf000,0x89d00000)]
    0x08de2800 JavaThread "H2 File Lock Watchdog /media/fc0f85c1-5673-4354-92c4-04c636d8202d/home/kicsyromy/workspace/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/model.lock.db" daemon [_thread_blocked, id=3514, stack(0x89e1d000,0x89e6e000)]
    0x08f04400 JavaThread "PHP Debugger Daemon Thread - Port: 9000" daemon [_thread_in_native, id=3511, stack(0x89e6e000,0x89ebf000)]
    0x08f03c00 JavaThread "PHP Debugger Daemon Thread - Port: 10000" daemon [_thread_in_native, id=3510, stack(0x89ebf000,0x89f10000)]
    0x8a171400 JavaThread "Worker-5" [_thread_blocked, id=3509, stack(0x8a005000,0x8a056000)]
    0x8b042c00 JavaThread "DLTK indexing" daemon [_thread_blocked, id=3508, stack(0x8ac76000,0x8acc7000)]
    0x08dfc800 JavaThread "Worker-4" [_thread_blocked, id=3507, stack(0x8aaa6000,0x8aaf7000)]
    0x8b4da400 JavaThread "Worker-3" [_thread_blocked, id=3506, stack(0x8ade9000,0x8ae3a000)]
    0x8a99f400 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=3469, stack(0x8a265000,0x8a2b6000)]
    0x08b6a400 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=3468, stack(0x8a88b000,0x8a8dc000)]
    0x8b0a6400 JavaThread "Worker-2" [_thread_blocked, id=3464, stack(0x8ab03000,0x8ab54000)]
    0x08f25c00 JavaThread "4895754@qtp-11419048-1 - Acceptor0 [email protected]:50313" [_thread_in_native, id=3463, stack(0x8ab54000,0x8aba5000)]
    0x08ecfc00 JavaThread "26461030@qtp-11419048-0" [_thread_blocked, id=3462, stack(0x8aba5000,0x8abf6000)]
    0x08d04000 JavaThread "Java indexing" daemon [_thread_blocked, id=3461, stack(0x8ad34000,0x8ad85000)]
    0x08cbf000 JavaThread "Worker-1" [_thread_blocked, id=3460, stack(0x8b2bc000,0x8b30d000)]
    0x08c4f800 JavaThread "Worker-0" [_thread_blocked, id=3458, stack(0x8ae75000,0x8aec6000)]
    0x8b476400 JavaThread "Worker-JM" [_thread_blocked, id=3457, stack(0x8b21a000,0x8b26b000)]
    0x08aff800 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=3456, stack(0x8b26b000,0x8b2bc000)]
    0x08ac0000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=3454, stack(0x8b30d000,0x8b35e000)]
    0x8b473c00 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=3453, stack(0x8b35e000,0x8b3af000)]
    0x8b44c000 JavaThread "State Data Manager" daemon [_thread_blocked, id=3452, stack(0x8b3af000,0x8b400000)]
    0x089d0400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3450, stack(0x8b5fb000,0x8b64c000)]
    0x089cd800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3449, stack(0x8b64c000,0x8b6cd000)]
    0x089cc000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3448, stack(0x8b6cd000,0x8b71e000)]
    0x089be000 JavaThread "Finalizer" daemon [_thread_blocked, id=3447, stack(0x8b71e000,0x8b76f000)]
    0x089b9400 JavaThread "Reference Handler" daemon [_thread_blocked, id=3446, stack(0x8b76f000,0x8b7c0000)]
    =>0x0896d400 JavaThread "main" [_thread_in_native, id=3431, stack(0xbff3f000,0xbff8f000)]
    Other Threads:
    0x089b5800 VMThread [stack: 0x8b7c0000,0x8b841000] [id=3445]
    0x089db800 WatcherThread [stack: 0x8b57a000,0x8b5fb000] [id=3451]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 26560K, used 1326K [0x8bc50000, 0x8d920000, 0x93c50000)
    eden space 23616K, 5% used [0x8bc50000, 0x8bd9bab8, 0x8d360000)
    from space 2944K, 0% used [0x8d360000, 0x8d360000, 0x8d640000)
    to space 2944K, 0% used [0x8d640000, 0x8d640000, 0x8d920000)
    tenured generation total 58912K, used 35346K [0x93c50000, 0x975d8000, 0xa3c50000)
    the space 58912K, 59% used [0x93c50000, 0x95ed4a20, 0x95ed4c00, 0x975d8000)
    compacting perm gen total 58112K, used 57896K [0xa3c50000, 0xa7510000, 0xb3c50000)
    the space 58112K, 99% used [0xa3c50000, 0xa74da078, 0xa74da200, 0xa7510000)
    No shared spaces configured.
    Dynamic libraries:
    08048000-0804c000 r-xp 00000000 08:01 838 /opt/eclipse/eclipse
    0804c000-0804d000 rw-p 00003000 08:01 838 /opt/eclipse/eclipse
    088fb000-0951b000 rw-p 00000000 00:00 0 [heap]
    842c9000-842dd000 r-xp 00000000 08:01 544811 /usr/lib/libICE.so.6.3.0
    842dd000-842de000 rw-p 00013000 08:01 544811 /usr/lib/libICE.so.6.3.0
    842de000-842e0000 rw-p 00000000 00:00 0
    842e0000-8432d000 r-xp 00000000 08:01 545523 /usr/lib/libXt.so.6.0.0
    8432d000-84331000 rw-p 0004c000 08:01 545523 /usr/lib/libXt.so.6.0.0
    84331000-843fa000 r-xp 00000000 08:01 544846 /usr/lib/libasound.so.2.0.0
    843fa000-843fe000 rw-p 000c9000 08:01 544846 /usr/lib/libasound.so.2.0.0
    843fe000-84437000 r-xp 00000000 08:01 553694 /usr/lib/libevent-2.0.so.5.0.1
    84437000-84438000 rw-p 00039000 08:01 553694 /usr/lib/libevent-2.0.so.5.0.1
    84438000-8448b000 r-xp 00000000 08:01 553662 /usr/lib/libhunspell-1.2.so.0.0.0
    8448b000-8448f000 rw-p 00053000 08:01 553662 /usr/lib/libhunspell-1.2.so.0.0.0
    8448f000-844a4000 r-xp 00000000 08:01 552655 /usr/lib/libnssutil3.so
    844a4000-844a7000 rw-p 00015000 08:01 552655 /usr/lib/libnssutil3.so
    844a7000-845b5000 r-xp 00000000 08:01 552651 /usr/lib/libnss3.so
    845b5000-845b9000 rw-p 0010d000 08:01 552651 /usr/lib/libnss3.so
    845b9000-845ba000 rw-p 00000000 00:00 0
    845ba000-845dc000 r-xp 00000000 08:01 552658 /usr/lib/libsmime3.so
    845dc000-845de000 rw-p 00022000 08:01 552658 /usr/lib/libsmime3.so
    845de000-8460a000 r-xp 00000000 08:01 552648 /usr/lib/libssl3.so
    8460a000-8460c000 rw-p 0002c000 08:01 552648 /usr/lib/libssl3.so
    8460c000-84912000 r-xp 00000000 08:01 764 /usr/lib/xulrunner-2.0/libmozjs.so
    84912000-8492e000 rw-p 00305000 08:01 764 /usr/lib/xulrunner-2.0/libmozjs.so
    8492e000-849c8000 r-xp 00000000 08:01 546621 /usr/lib/libsqlite3.so.0.8.6
    849c8000-849cb000 rw-p 00099000 08:01 546621 /usr/lib/libsqlite3.so.0.8.6
    849cb000-858b3000 r-xp 00000000 08:01 766 /usr/lib/xulrunner-2.0/libxul.so
    858b3000-859df000 rw-p 00ee8000 08:01 766 /usr/lib/xulrunner-2.0/libxul.so
    859df000-85a12000 rw-p 00000000 00:00 0
    85a12000-85af4000 r-xp 00000000 08:01 528494 /usr/lib/libstdc++.so.6.0.16
    85af4000-85af8000 r--p 000e1000 08:01 528494 /usr/lib/libstdc++.so.6.0.16
    85af8000-85af9000 rw-p 000e5000 08:01 528494 /usr/lib/libstdc++.so.6.0.16
    85af9000-85b00000 rw-p 00000000 00:00 0
    85b00000-85b70000 rw-p 00000000 00:00 0
    85b70000-85c00000 ---p 00000000 00:00 0
    85c03000-85c40000 r-xp 00000000 08:01 548335 /usr/lib/libjpeg.so.8.0.2
    85c40000-85c41000 rw-p 0003d000 08:01 548335 /usr/lib/libjpeg.so.8.0.2
    85c41000-85c51000 rw-p 00000000 00:00 0
    85c51000-85c81000 r-xp 00000000 08:01 552644 /usr/lib/libnspr4.so
    85c81000-85c83000 rw-p 0002f000 08:01 552644 /usr/lib/libnspr4.so
    85c83000-85c84000 rw-p 00000000 00:00 0
    85ca2000-85cbe000 r-xp 00000000 08:01 528515 /usr/lib/libgcc_s.so.1
    85cbe000-85cbf000 rw-p 0001b000 08:01 528515 /usr/lib/libgcc_s.so.1
    85cc4000-85cdc000 r-xp 00000000 08:01 262609 /home/kicsyromy/.eclipse/org.eclipse.platform_3.6.1_1473617060/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-mozilla-gtk-3655.so
    85cdc000-85cdd000 rw-p 00018000 08:01 262609 /home/kicsyromy/.eclipse/org.eclipse.platform_3.6.1_1473617060/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-mozilla-gtk-3655.so
    85cdd000-85ce0000 ---p 00000000 00:00 0
    85ce0000-85d2e000 rwxp 00000000 00:00 0
    85d2e000-85d31000 ---p 00000000 00:00 0
    85d31000-85d7f000 rwxp 00000000 00:00 0
    85d7f000-85d82000 ---p 00000000 00:00 0
    85d82000-85dd0000 rwxp 00000000 00:00 0
    85dd0000-85dd3000 ---p 00000000 00:00 0
    85dd3000-85e21000 rwxp 00000000 00:00 0
    85e21000-85e2f000 r-xp 00000000 08:01 130750 /lib/libudev.so.0.11.1
    85e2f000-85e30000 rw-p 0000e000 08:01 130750 /lib/libudev.so.0.11.1
    85e30000-85e6b000 r-xp 00000000 08:01 543501 /usr/lib/libdbus-1.so.3.5.3
    85e6b000-85e6c000 r--p 0003b000 08:01 543501 /usr/lib/libdbus-1.so.3.5.3
    85e6c000-85e6d000 rw-p 0003c000 08:01 543501 /usr/lib/libdbus-1.so.3.5.3
    85e6d000-85e97000 r-xp 00000000 08:01 549513 /usr/lib/gio/modules/libgvfsdbus.so
    85e97000-85e98000 rw-p 00029000 08:01 549513 /usr/lib/gio/modules/libgvfsdbus.so
    85e98000-865cd000 r--p 00000000 08:01 701103 /usr/share/icons/hicolor/icon-theme.cache
    865cd000-89bcb000 r--p 00000000 08:01 813188 /usr/share/icons/gnome/icon-theme.cache
    89bcb000-89c0d000 r--s 0043d000 08:01 261814 /opt/eclipse/configuration/org.eclipse.osgi/bundles/305/1/.cp/libs/gwt-dev-tools.jar
    89c0d000-89c10000 ---p 00000000 00:00 0
    89c10000-89c5e000 rwxp 00000000 00:00 0
    89c5e000-89c61000 ---p 00000000 00:00 0
    89c61000-89caf000 rwxp 00000000 00:00 0
    89caf000-89cb2000 ---p 00000000 00:00 0
    89cb2000-89d00000 rwxp 00000000 00:00 0
    89d00000-89dfb000 rw-p 00000000 00:00 0
    89dfb000-89e00000 ---p 00000000 00:00 0
    89e06000-89e1c000 r-xp 00000000 08:01 549511 /usr/lib/libgvfscommon.so.0.0.0
    89e1c000-89e1d000 rw-p 00016000 08:01 549511 /usr/lib/libgvfscommon.so.0.0.0
    89e1d000-89e20000 ---p 00000000 00:00 0
    89e20000-89e6e000 rwxp 00000000 00:00 0
    89e6e000-89e71000 ---p 00000000 00:00 0
    89e71000-89ebf000 rwxp 00000000 00:00 0
    89ebf000-89ec2000 ---p 00000000 00:00 0
    89ec2000-89f10000 rwxp 00000000 00:00 0
    89f10000-89f59000 r--s 003b8000 08:01 7018 /opt/eclipse/plugins/org.eclipse.pde.ui_3.6.1.v20100810_r361.jar
    89f59000-89fa2000 r-xp 00000000 08:01 548788 /usr/lib/libORBit-2.so.0.1.0
    89fa2000-89fac000 rw-p 00048000 08:01 548788 /usr/lib/libORBit-2.so.0.1.0
    89fac000-8a005000 r--s 00368000 08:01 8111 /opt/eclipse/plugins/org.eclipse.wb.core_0.9.0.r36x201102111430.jar
    8a005000-8a008000 ---p 00000000 00:00 0
    8a008000-8a056000 rwxp 00000000 00:00 0
    8a056000-8a0a0000 r--s 003bb000 08:01 8442 /opt/eclipse/plugins/org.eclipse.dltk.ui_2.0.0.v20100909-1720.jar
    8a0a0000-8a100000 rw-s 00000000 00:04 1409028 /SYSV00000000 (deleted)
    8a100000-8a1fd000 rw-p 00000000 00:00 0
    8a1fd000-8a200000 ---p 00000000 00:00 0
    8a200000-8a206000 r-xp 00000000 08:01 544819 /usr/lib/libSM.so.6.0.1
    8a206000-8a207000 rw-p 00005000 08:01 544819 /usr/lib/libSM.so.6.0.1
    8a207000-8a20e000 r-xp 00000000 08:01 548901 /usr/lib/libstartup-notification-1.so.0.0.0
    8a20e000-8a20f000 rw-p 00006000 08:01 548901 /usr/lib/libstartup-notification-1.so.0.0.0
    8a20f000-8a229000 r--s 00000000 08:01 661693 /usr/share/mime/mime.cache
    8a229000-8a246000 r--s 0017a000 08:01 8162 /opt/eclipse/plugins/org.eclipse.team.cvs.ui_3.3.301.R36x_v20100825-0800.jar
    8a246000-8a265000 r--s 0016b000 08:01 8250 /opt/eclipse/plugins/org.eclipse.mylyn.tasks.ui_3.4.2.v20100902-0100-e3x.jar
    8a265000-8a268000 ---p 00000000 00:00 0
    8a268000-8a2b6000 rwxp 00000000 00:00 0
    8a2b6000-8a2d2000 r--s 00141000 08:01 8173 /opt/eclipse/plugins/org.eclipse.team.ui_3.5.101.R36x_v20100825-0800.jar
    8a2d6000-8a2db000 r-xp 00000000 08:01 261133 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-xpcominit-gtk-3655.so
    8a2db000-8a2dd000 rw-p 00005000 08:01 261133 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-xpcominit-gtk-3655.so
    8a2dd000-8a2e1000 r--s 0001d000 08:01 8228 /opt/eclipse/plugins/org.eclipse.ui.externaltools_3.2.0.v20100427.jar
    8a2e1000-8a2e7000 r--s 00032000 08:01 8339 /opt/eclipse/plugins/org.eclipse.mylyn.context.ui_3.4.1.v20100909-0100-e3x.jar
    8a2e7000-8a2ea000 r-xp 00000000 08:01 524531 /usr/lib/gconv/UTF-16.so
    8a2ea000-8a2eb000 r--p 00002000 08:01 524531 /usr/lib/gconv/UTF-16.so
    8a2eb000-8a2ec000 rw-p 00003000 08:01 524531 /usr/lib/gconv/UTF-16.so
    8a2ec000-8a323000 r--p 00000000 08:01 654694 /usr/share/fonts/TTF/DejaVuSansMono-BoldOblique.ttf
    8a323000-8a35c000 r--p 00000000 08:01 654682 /usr/share/fonts/TTF/DejaVuSansMono-Oblique.ttf
    8a35c000-8a3a7000 r--p 00000000 08:01 654680 /usr/share/fonts/TTF/DejaVuSansMono-Bold.ttf
    8a3a7000-8a400000 r--p 00000000 08:01 661057 /usr/share/fonts/ubuntu-font-family/Ubuntu-BI.ttf
    8a400000-8a4ff000 rw-p 00000000 00:00 0
    8a4ff000-8a500000 ---p 00000000 00:00 0
    8a501000-8a504000 r-xp 00000000 08:01 130707 /lib/libuuid.so.1.3.0
    8a504000-8a505000 rw-p 00002000 08:01 130707 /lib/libuuid.so.1.3.0
    8a505000-8a508000 r--s 00012000 08:01 8313 /opt/eclipse/plugins/org.eclipse.jdt.core.manipulation_1.3.0.v20100520-0800.jar
    8a508000-8a50f000 r--s 00048000 08:01 8130 /opt/eclipse/plugins/org.eclipse.ltk.core.refactoring_3.5.100.v20100526-0800.jar
    8a50f000-8a519000 r--s 00066000 08:01 8286 /opt/eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.5.0.v20100526-0800.jar
    8a519000-8a523000 r--s 0011b000 08:01 8436 /opt/eclipse/plugins/org.h2_1.1.117.v20091003-1000.jar
    8a523000-8a583000 r--p 00000000 08:01 661063 /usr/share/fonts/ubuntu-font-family/Ubuntu-RI.ttf
    8a583000-8a5d6000 r--p 00000000 08:01 661056 /usr/share/fonts/ubuntu-font-family/Ubuntu-B.ttf
    8a5d6000-8a600000 r--s 00223000 08:01 8461 /opt/eclipse/plugins/org.eclipse.php.ui_2.2.1.v20100822-1200.jar
    8a600000-8a6f6000 rw-p 00000000 00:00 0
    8a6f6000-8a700000 ---p 00000000 00:00 0
    8a703000-8a708000 r--s 00044000 08:01 8282 /opt/eclipse/plugins/org.eclipse.ui.forms_3.5.2.r36_v20100702.jar
    8a708000-8a70c000 r--s 00024000 08:01 8232 /opt/eclipse/plugins/org.eclipse.ui.console_3.5.0.v20100526.jar
    8a70c000-8a70f000 r-xp 00000000 08:01 543803 /usr/lib/libxcb-atom.so.1.0.0
    8a70f000-8a710000 rw-p 00002000 08:01 543803 /usr/lib/libxcb-atom.so.1.0.0
    8a710000-8a719000 r--s 0005d000 08:01 8227 /opt/eclipse/plugins/org.eclipse.wst.sse.core_1.1.502.v201008311901.jar
    8a719000-8a72b000 r--s 000d3000 08:01 8169 /opt/eclipse/plugins/org.eclipse.wst.sse.ui_1.2.2.v201008232126.jar
    8a72b000-8a72f000 r--s 0001a000 08:01 8426 /opt/eclipse/plugins/org.eclipse.wst.xsl.debug.ui_1.0.100.v201004290328.jar
    8a72f000-8a741000 r--s 000b8000 08:01 8473 /opt/eclipse/plugins/org.eclipse.wst.server.ui_1.1.205.v20100908.jar
    8a741000-8a746000 r--s 00025000 08:01 8468 /opt/eclipse/plugins/org.eclipse.wst.jsdt.debug.ui_1.0.1.v201008170101.jar
    8a746000-8a749000 r--s 0001d000 08:01 8458 /opt/eclipse/plugins/org.eclipse.php.server.ui_2.2.0.v20100505-0800.jar
    8a749000-8a753000 r--s 00067000 08:01 8452 /opt/eclipse/plugins/org.eclipse.php.debug.ui_2.2.0.v20100822-0100.jar
    8a753000-8a75c000 r--s 0005a000 08:01 7014 /opt/eclipse/plugins/org.eclipse.pde.api.tools.ui_1.0.201.v20100820_r361.jar
    8a75c000-8a792000 r-xp 00000000 08:01 548895 /usr/lib/libgconf-2.so.4.1.5
    8a792000-8a795000 rw-p 00036000 08:01 548895 /usr/lib/libgconf-2.so.4.1.5
    8a795000-8a79e000 r--s 00142000 08:01 7020 /opt/eclipse/plugins/com.google.gdt.eclipse.core_2.2.0.v201102111811.jar
    8a79e000-8a7cf000 r--s 00240000 08:01 8155 /opt/eclipse/plugins/org.eclipse.debug.ui_3.6.1.v20100901_r361.jar
    8a7cf000-8a7d2000 r-xp 00000000 08:01 552643 /usr/lib/libplc4.so
    8a7d2000-8a7d3000 rw-p 00002000 08:01 552643 /usr/lib/libplc4.so
    8a7d3000-8a7da000 r--s 00052000 08:01 8126 /opt/eclipse/plugins/org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar
    8a7da000-8a7ed000 r--s 000dc000 08:01 8131 /opt/eclipse/plugins/org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar
    8a7ed000-8a7f9000 r--s 00082000 08:01 8387 /opt/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar
    8a7f9000-8a88b000 r--s 008f6000 08:01 8379 /opt/eclipse/plugins/org.eclipse.jdt.ui_3.6.1.r361_v20100825-0800.jar
    8a88b000-8a88e000 ---p 00000000 00:00 0
    8a88e000-8a8dc000 rwxp 00000000 00:00 0
    8a8df000-8a8ed000 r--s 0007f000 08:01 8488 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/commons-collections-3.2.1.jar
    8a8f0000-8a8f9000 r--s 00037000 08:01 8493 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/commons-primitives-1.0.jar
    8a8f9000-8a8fd000 r--s 00022000 08:01 8312 /opt/eclipse/plugins/org.eclipse.mylyn.java.ui_3.4.0.v20100608-0100-e3x.jar
    8a900000-8a9f9000 rw-p 00000000 00:00 0
    8a9f9000-8aa00000 ---p 00000000 00:00 0
    8aa00000-8aa05000 r--s 00021000 08:01 8172 /opt/eclipse/plugins/org.eclipse.ui_3.6.1.M20100826-1330.jar
    8aa05000-8aa0f000 r-xp 00000000 08:01 261132 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-cairo-gtk-3655.so
    8aa0f000-8aa10000 rw-p 00009000 08:01 261132 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-cairo-gtk-3655.so
    8aa13000-8aa16000 rw-s 00000000 00:04 1376259 /SYSV00000000 (deleted)
    8aa16000-8aa1b000 r-xp 00000000 08:01 654692 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    8aa1b000-8aa1c000 rw-p 00005000 08:01 654692 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    8aa1e000-8aa27000 r--s 0006b000 08:01 8485 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/MVEL-fork.jar
    8aa27000-8aa3d000 r--s 000fa000 08:01 8495 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/guava-r08.jar
    8aa3d000-8aa5d000 r--s 0016c000 08:01 7021 /opt/eclipse/plugins/com.google.gdt.eclipse.designer_2.2.0.r36x201102111505.jar
    8aa5f000-8aa76000 r--s 00127000 08:01 8191 /opt/eclipse/plugins/org.apache.xerces_2.9.0.v201005080400.jar
    8aa76000-8aa92000 r--s 00278000 08:01 8444 /opt/eclipse/plugins/org.eclipse.php.core_2.2.1.v20100822-1200.jar
    8aa92000-8aa9a000 r--s 0004c000 08:01 8220 /opt/eclipse/plugins/org.eclipse.debug.core_3.6.0.v20100519.jar
    8aa9a000-8aaa6000 r--s 0007e000 08:01 8448 /opt/eclipse/plugins/org.eclipse.php.debug.core_2.2.0.v20100822-0100.jar
    8aaa6000-8aaa9000 ---p 00000000 00:00 0
    8aaa9000-8aaf7000 rwxp 00000000 00:00 0
    8aaf7000-8aafb000 r--s 00028000 08:01 7038 /opt/eclipse/plugins/com.google.gdt.eclipse.suite_2.2.0.v201102111811.jar
    8aafd000-8ab01000 r-xp 00000000 08:01 261406 /opt/eclipse/configuration/org.eclipse.osgi/bundles/333/1/.cp/os/linux/x86/libwbp.so
    8ab01000-8ab02000 r--p 00003000 08:01 261406 /opt/eclipse/configuration/org.eclipse.osgi/bundles/333/1/.cp/os/linux/x86/libwbp.so
    8ab02000-8ab03000 rw-p 00004000 08:01 261406 /opt/eclipse/configuration/org.eclipse.osgi/bundles/333/1/.cp/os/linux/x86/libwbp.so
    8ab03000-8ab06000 ---p 00000000 00:00 0
    8ab06000-8ab54000 rwxp 00000000 00:00 0
    8ab54000-8ab57000 ---p 00000000 00:00 0
    8ab57000-8aba5000 rwxp 00000000 00:00 0
    8aba5000-8aba8000 ---p 00000000 00:00 0
    8aba8000-8abf6000 rwxp 00000000 00:00 0
    8abf7000-8abfb000 r--s 0000d000 08:01 8687 /opt/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/jdi.jar
    8abfb000-8ac07000 r--s 0005a000 08:01 8114 /opt/eclipse/plugins/org.eclipse.wb.core.xml_0.9.0.r36x201102111443.jar
    8ac07000-8ac0b000 r--s 00044000 08:01 8274 /opt/eclipse/plugins/org.eclipse.jdt.launching_3.5.100.v20100526.jar
    8ac0b000-8ac14000 r--s 0005b000 08:01 8226 /opt/eclipse/plugins/org.eclipse.jdt.junit_3.6.1.r361_v20100825-0800.jar
    8ac14000-8ac2e000 r--s 0012c000 08:01 8211 /opt/eclipse/plugins/org.eclipse.jdt.debug.ui_3.5.0.v20100602-0830.jar
    8ac2e000-8ac3d000 r--s 000da000 08:01 8198 /opt/eclipse/plugins/org.eclipse.ant.ui_3.5.0.v20100427.jar
    8ac3d000-8ac4a000 r--s 000be000 08:01 8686 /opt/eclipse/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/jdimodel.jar
    8ac4a000-8ac5b000 r--s 004f7000 08:01 7039 /opt/eclipse/plugins/com.google.gwt.eclipse.core_2.2.0.v201102111811.jar
    8ac5d000-8ac63000 r--s 0003e000 08:01 8441 /opt/eclipse/plugins/org.eclipse.dltk.launching_2.0.0.v20100806-1245.jar
    8ac63000-8ac6b000 r--s 00045000 08:01 7022 /opt/eclipse/plugins/com.google.gdt.eclipse.designer.UiBinder_2.2.0.r36x201102111505.jar
    8ac6b000-8ac70000 r--s 0002d000 08:01 261834 /opt/eclipse/configuration/org.eclipse.osgi/bundles/286/1/.cp/lib/ant_stripped.jar
    8ac70000-8ac76000 r--s 00041000 08:01 261833 /opt/eclipse/configuration/org.eclipse.osgi/bundles/286/1/.cp/lib/htmlparser.jar
    8ac76000-8ac79000 ---p 00000000 00:00 0
    8ac79000-8acc7000 rwxp 00000000 00:00 0
    8acc7000-8acd1000 r--s 00089000 08:01 8285 /opt/eclipse/plugins/org.eclipse.update.core_3.2.402.R36x_v20100629.jar
    8acd1000-8acd2000 r--s 00007000 08:01 8280 /opt/eclipse/plugins/org.eclipse.update.scheduler_3.2.300.v20100512.jar
    8acd2000-8acd6000 r--s 00017000 08:01 8197 /opt/eclipse/plugins/org.eclipse.mylyn.team.ui_3.4.2.v20100909-0100-e3x.jar
    8acd6000-8acf2000 r--s 0016f000 08:01 8438 /opt/eclipse/plugins/org.eclipse.dltk.core_2.0.1.v20100806-1245.jar
    8acf2000-8acf5000 r--s 00018000 08:01 8121 /opt/eclipse/plugins/org.eclipse.mylyn.context.core_3.4.1.v20100909-0100-e3x.jar
    8acf5000-8acfa000 r--s 0002d000 08:01 8327 /opt/eclipse/plugins/org.eclipse.mylyn.bugzilla.ui_3.4.2.v20100909-0100-e3x.jar
    8acfa000-8acfe000 r--s 00031000 08:01 8132 /opt/eclipse/plugins/org.eclipse.mylyn.bugzilla.core_3.4.2.v20100902-0100-e3x.jar
    8acfe000-8ad07000 r--s 00059000 08:01 8167 /opt/eclipse/plugins/org.eclipse.mylyn.commons.ui_3.4.0.v20100608-0100-e3x.jar
    8ad07000-8ad0e000 r--s 00094000 08:01 706029 /opt/java/jre/lib/jsse.jar
    8ad0e000-8ad14000 r--s 00049000 08:01 8348 /opt/eclipse/plugins/org.apache.commons.httpclient_3.1.0.v201005080502.jar
    8ad14000-8ad16000 r--s 0000f000 08:01 8360 /opt/eclipse/plugins/org.eclipse.mylyn.commons.net_3.4.1.v20100625-2100-e3x.jar
    8ad17000-8ad1a000 r-xp 00000000 08:01 765 /usr/lib/xulrunner-2.0/libxpcom.so
    8ad1a000-8ad1b000 rw-p 00002000 08:01 765 /usr/lib/xulrunner-2.0/libxpcom.so
    8ad1b000-8ad1f000 r--s 00035000 08:01 805546 /opt/java/jre/lib/ext/sunpkcs11.jar
    8ad1f000-8ad21000 r-xp 00000000 08:01 130592 /lib/libutil-2.13.so
    8ad21000-8ad22000 r--p 00001000 08:01 130592 /lib/libutil-2.13.so
    8ad22000-8ad23000 rw-p 00002000 08:01 130592 /lib/libutil-2.13.so
    8ad23000-8ad28000 r--s 00021000 08:01 7019 /opt/eclipse/plugins/com.google.appengine.eclipse.core_2.2.0.v201102111811.jar
    8ad28000-8ad30000 r--s 00052000 08:01 8302 /opt/eclipse/plugins/org.eclipse.mylyn.tasks.core_3.4.1.v20100730-0100-e3x.jar
    8ad32000-8ad34000 r--s 00007000 08:01 8178 /opt/eclipse/plugins/org.eclipse.jsch.core_1.1.200.I20100505-1245.jar
    8ad34000-8ad37000 ---p 00000000 00:00 0
    8ad37000-8ad85000 rwxp 00000000 00:00 0
    8ad85000-8ad8d000 r--s 00115000 08:01 706006 /opt/java/jre/lib/resources.jar
    8ad8d000-8ad92000 r--s 00038000 08:01 8300 /opt/eclipse/plugins/org.eclipse.text_3.5.0.v20100601-1300.jar
    8ad95000-8adbe000 r--s 00425000 08:01 8294 /opt/eclipse/plugins/org.eclipse.jdt.core_3.6.1.v_A68_R36x.jar
    8adbe000-8adc3000 r--s 00040000 08:01 8491 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/commons-lang-2.5.jar
    8adc3000-8adc6000 r--s 0000a000 08:01 8174 /opt/eclipse/plugins/org.eclipse.mylyn.monitor.ui_3.4.0.v20100608-0100-e3x.jar
    8adc6000-8adc8000 r-xp 00000000 08:01 543805 /usr/lib/libxcb-event.so.1.0.0
    8adc8000-8adc9000 rw-p 00001000 08:01 543805 /usr/lib/libxcb-event.so.1.0.0
    8adc9000-8add4000 r--s 0007d000 08:01 8279 /opt/eclipse/plugins/org.eclipse.ui.editors_3.6.1.r361_v20100825-0800.jar
    8add6000-8addd000 r--s 00050000 08:01 8146 /opt/eclipse/plugins/org.eclipse.wst.server.core_1.1.204.v20100908.jar
    8addd000-8ade6000 r--s 00056000 08:01 8384 /opt/eclipse/plugins/org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar
    8ade6000-8ade8000 r-xp 00000000 08:01 543802 /usr/lib/libxcb-aux.so.0.0.0
    8ade8000-8ade9000 rw-p 00001000 08:01 543802 /usr/lib/libxcb-aux.so.0.0.0
    8ade9000-8adec000 ---p 00000000 00:00 0
    8adec000-8ae3a000 rwxp 00000000 00:00 0
    8ae3a000-8ae43000 r-xp 00000000 08:01 261131 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-atk-gtk-3655.so
    8ae43000-8ae44000 rw-p 00008000 08:01 261131 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-atk-gtk-3655.so
    8ae44000-8ae65000 r--s 00607000 08:01 8343 /opt/eclipse/plugins/com.ibm.icu_4.2.1.v20100412.jar
    8ae65000-8ae67000 r-xp 00000000 08:01 552642 /usr/lib/libplds4.so
    8ae67000-8ae68000 rw-p 00001000 08:01 552642 /usr/lib/libplds4.so
    8ae68000-8ae72000 r--s 00084000 08:01 8380 /opt/eclipse/plugins/org.eclipse.team.cvs.core_3.3.300.I20100526-0800.jar
    8ae72000-8ae75000 r--s 00013000 08:01 705991 /opt/java/jre/lib/jce.jar
    8ae75000-8ae78000 ---p 00000000 00:00 0
    8ae78000-8aec6000 rwxp 00000000 00:00 0
    8aec7000-8aec9000 r--s 00007000 08:01 8456 /opt/eclipse/plugins/org.eclipse.php.server.core_2.2.0.v20100410-0300.jar
    8aec9000-8aecb000 r-xp 00000000 08:01 261413 /opt/eclipse/configuration/org.eclipse.osgi/bundles/41/1/.cp/os/linux/x86/libunixfile_1_0_0.so
    8aecb000-8aecc000 rw-p 00001000 08:01 261413 /opt/eclipse/configuration/org.eclipse.osgi/bundles/41/1/.cp/os/linux/x86/libunixfile_1_0_0.so
    8aecc000-8aece000 r--s 00005000 08:01 8381 /opt/eclipse/plugins/org.eclipse.mylyn.commons.core_3.4.0.v20100608-0100-e3x.jar
    8aece000-8aed9000 r--s 000b1000 08:01 8152 /opt/eclipse/plugins/org.eclipse.core.resources_3.6.0.R36x_v20100825-0600.jar
    8aed9000-8aeff000 r--s 0020a000 08:01 8365 /opt/eclipse/plugins/org.eclipse.ui.ide_3.6.1.M20100825-0800.jar
    8aeff000-8af4e000 r--p 00000000 08:01 654678 /usr/share/fonts/TTF/DejaVuSansMono.ttf
    8af4e000-8afa6000 r--p 00000000 08:01 661062 /usr/share/fonts/ubuntu-font-family/Ubuntu-R.ttf
    8afa6000-8afb6000 r--s 00000000 08:01 918695 /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le32d4.cache-3
    8afb6000-8afbf000 r--s 00000000 08:01 918690 /var/cache/fontconfig/5a02e0a9ca9b27d0aa4bd0c42ba2438d-le32d4.cache-3
    8afbf000-8b000000 r--s 00000000 08:01 918687 /var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le32d4.cache-3
    8b000000-8b0ff000 rw-p 00000000 00:00 0
    8b0ff000-8b100000 ---p 00000000 00:00 0
    8b100000-8b101000 r-xp 00000000 08:01 763 /usr/lib/xulrunner-2.0/libmozalloc.so
    8b101000-8b102000 rw-p 00000000 08:01 763 /usr/lib/xulrunner-2.0/libmozalloc.so
    8b102000-8b104000 r--s 00000000 08:01 918696 /var/cache/fontconfig/5dac49e74d8a3622eea6c94592a6c625-le32d4.cache-3
    8b104000-8b10a000 r--s 00000000 08:01 918689 /var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le32d4.cache-3
    8b10a000-8b14b000 r--s 00000000 08:01 918686 /var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le32d4.cache-3
    8b14b000-8b14f000 r-xp 00000000 08:01 544807 /usr/lib/libXtst.so.6.1.0
    8b14f000-8b150000 rw-p 00003000 08:01 544807 /usr/lib/libXtst.so.6.1.0
    8b150000-8b151000 r--s 00008000 08:01 8373 /opt/eclipse/plugins/org.eclipse.mylyn.monitor.core_3.4.0.v20100608-0100-e3x.jar
    8b151000-8b16a000 r--s 00000000 08:01 918688 /var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le32d4.cache-3
    8b16a000-8b16e000 rwxp 00000000 00:00 0
    8b16e000-8b1c7000 r-xp 00000000 08:01 261130 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-pi-gtk-3655.so
    8b1c7000-8b1c9000 rw-p 00058000 08:01 261130 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-pi-gtk-3655.so
    8b1c9000-8b1ca000 rw-p 00000000 00:00 0
    8b1ca000-8b1cd000 r-xp 00000000 08:01 261129 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-gtk-3655.so
    8b1cd000-8b1ce000 rw-p 00002000 08:01 261129 /opt/eclipse/configuration/org.eclipse.osgi/bundles/206/1/.cp/libswt-gtk-3655.so
    8b1ce000-8b1cf000 rw-p 00000000 00:00 0
    8b1d0000-8b1d3000 r--s 00024000 08:01 8490 /opt/eclipse/plugins/org.eclipse.wb.core.lib_0.9.0.r36x201102111430/lib/commons-io-2.0.1.jar
    8b1d3000-8b21a000 r--s 003ab000 08:01 8196 /opt/eclipse/plugins/org.eclipse.ui.workbench_3.6.1.M20100826-1330.jar
    8b21a000-8b21d000 ---p 00000000 00:00 0
    8b21d000-8b26b000 rwxp 00000000 00:00 0
    8b26b000-8b26e000 ---p 00000000 00:00 0
    8b26e000-8b2bc000 rwxp 00000000 00:00 0
    8b2bc000-8b2bf000 ---p 00000000 00:00 0
    8b2bf000-8b30d000 rwxp 00000000 00:00 0
    8b30d000-8b310000 ---p 00000000 00:00 0
    8b310000-8b35e000 rwxp 00000000 00:00 0
    8b35e000-8b361000 ---p 00000000 00:00 0
    8b361000-8b3af000 rwxp 00000000 00:00 0
    8b3af000-8b3b2000 ---p 00000000 00:00 0
    8b3b2000-8b400000 rwxp 00000000 00:00 0
    8b400000-8b4fc000 rw-p 00000000 00:00 0
    8b4fc000-8b500000 ---p 00000000 00:00 0
    8b500000-8b501000 r--s 00000000 08:01 918691 /var/cache/fontconfig/6ba42ae0000f58711b5caaf10d690066-le32d4.cache-3
    8b502000-8b503000 r--s 00004000 08:01 8450 /opt/eclipse/plugins/org.eclipse.php.debug.daemon_2.2.0.v20100410-0300.jar
    8b503000-8b506000 r--s 0000e000 08:01 8144 /opt/eclipse/plugins/org.eclipse.mylyn.tasks.search_3.4.0.v20100608-0100-e3x.jar
    8b506000-8b51b000 r--s 00212000 08:01 8177 /opt/eclipse/plugins/org.eclipse.swt.gtk.linux.x86_3.6.1.v3655c.jar
    8b51b000-8b530000 r--s 000f1000 08:01 8366 /opt/eclipse/plugins/org.eclipse.jface_3.6.1.M20100825-0800.jar
    8b530000-8b532000 r--s 00001000 08:01 8511 /opt/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.100.I20100511-0800/compatibility.jar
    8b532000-8b534000 r--s 00001000 08:01 805548 /opt/java/jre/lib/ext/dnsns.jar
    8b534000-8b535000 r--s 0000a000 08:01 8224 /opt/eclipse/plugins/org.apache.commons.logging_1.0.4.v200904062259.jar
    8b536000-8b53d000 r--s 0003c000 08:01 8189 /opt/eclipse/plugins/org.eclipse.wst.common.snippets_1.2.1.v201008251905.jar
    8b53d000-8b53e000 r--s 00004000 08:01 8170 /opt/eclipse/plugins/org.eclipse.mylyn.team.cvs_3.4.1.v20100909-0100-e3x.jar
    8b53e000-8b540000 r--s 00017000 08:01 8160 /opt/eclipse/plugins/org.eclipse.update.configurator_3.3.100.v20100512.jar
    8b540000-8b543000 r--s 00027000 08:01 805544 /opt/java/jre/lib/ext/sunjce_provider.jar
    8b543000-8b544000 r--s 00002000 08:01 142215 /opt/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.3.0.v20100520/runtime_registry_compatibility.jar
    8b544000-8b548000 r--s 00029000 08:01 8291 /opt/eclipse/plugins/org.eclipse.equinox.registry_3.5.0.v20100503.jar
    8b548000-8b54a000 r--s 0000a000 08:01 8118 /opt/eclipse/plugins/org.eclipse.wb.os.linux_0.9.0.r36x201102111430.jar
    8b54a000-8b54c000 r--s 00008000 08:01 8314 /opt/eclipse/plugins/org.eclipse.epp.usagedata.gathering_1.3.0.R201005261100.jar
    8b54c000-8b553000 r-xp 00000000 08:01 706053 /opt/java/jre/lib/i386/libnio.so
    8b553000-8b554000 rw-p 00006000 08:01 706053 /opt/java/jre/lib/i386/libnio.so
    8b554000-8b568000 r-xp 00000000 08:01 706054 /opt/java/jre/lib/i386/libnet.so
    8b568000-8b569000 rw-p 00013000 08:01 706054 /opt/java/jre/lib/i386/libnet.so
    8b569000-8b57a000 r--s 00108000 08:01 8290 /opt/eclipse/plugins/org.eclipse.osgi_3.6.1.R36x_v20100806.jar
    8b57a000-8b57b000 ---p 00000000 00:00 0
    8b57b000-8b5fb000 rwxp 00000000 00:00 0
    8b5fb000-8b5fe000 ---p 00000000 00:00 0
    8b5fe000-8b64c000 rwxp 00000000 00:00 0
    8b64c000-8b64f000 ---p 00000000 00:00 0
    8b64f000-8b6cd000 rwxp 00000000 00:00 0
    8b6cd000-8b6d0000 ---p 00000000 00:00 0
    8b6d0000-8b71e000 rwxp 00000000 00:00 0
    8b71e000-8b721000 ---p 00000000 00:00 0
    8b721000-8b76f000 rwxp 00000000 00:00 0
    8b76f000-8b772000 ---p 00000000 00:00 0
    8b772000-8b7c0000 rwxp 00000000 00:00 0
    8b7c0000-8b7c1000 ---p 00000000 00:00 0
    8b7c1000-8b841000 rwxp 00000000 00:00 0
    8b841000-8b875000 rw-p 00000000 00:00 0
    8b875000-8ba0d000 r--s 03027000 08:01 706000 /opt/java/jre/lib/rt.jar
    8ba0d000-8ba2a000 rw-p 00000000 00:00 0
    8ba2a000-8ba8e000 rw-p 00000000 00:00 0
    8ba8e000-8baab000 rw-p 00000000 00:00 0
    8baab000-8bb0f000 rw-p 00000000 00:00 0
    8bb0f000-8bb1e000 rw-p 00000000 00:00 0
    8bb1e000-8bb4f000 rw-p 00000000 00:00 0
    8bb4f000-8bb6c000 rw-p 00000000 00:00 0
    8bb6c000-8bbcf000 rw-p 00000000 00:00 0
    8bbcf000-8bbec000 rw-p 00000000 00:00 0
    8bbec000-8bc4f000 rw-p 00000000 00:00 0
    8bc4f000-8d920000 rw-p 00000000 00:00 0
    8d920000-93c50000 rw-p 00000000 00:00 0
    93c50000-975d8000 rw-p 00000000 00:00 0
    975d8000-a3c50000 rw-p 00000000 00:00 0
    a3c50000-a7510000 rw-p 00000000 00:00 0
    a7510000-b3c50000 rw-p 00000000 00:00 0
    b3c50000-b3c51000 r--s 00004000 08:01 8123 /opt/eclipse/plugins/org.eclipse.swt_3.6.1.v3655c.jar
    b3c51000-b3c54000 r--s 000cb000 08:01 805547 /opt/java/jre/lib/ext/localedata.jar
    b3c54000-b3c6a000 rw-p 00000000 00:00 0
    b3c6a000-b3cd4000 rw-p 00000000 00:00 0
    b3cd4000-b4224000 rwxp 00000000 00:00 0
    b4224000-b5cd4000 rw-p 00000000 00:00 0
    b5cd4000-b5ce9000 r-xp 00000000 08:01 130586 /lib/libnsl-2.13.so
    b5ce9000-b5cea000 r--p 00015000 08:01 130586 /lib/libnsl-2.13.so
    b5cea000-b5ceb000 rw-p 00016000 08:01 130586 /lib/libnsl-2.13.so
    b5ceb000-b5ced000 rw-p 00000000 00:00 0
    b5ced000-b5cef000 r--s 00008000 08:01 8440 /opt/eclipse/plugins/org.eclipse.dltk.core.index.sql.h2_2.0.1.v20100909-1720.jar
    b5cef000-b5cf0000 r--s 00006000 08:01 8439 /opt/eclipse/plugins/org.eclipse.dltk.core.index.sql_2.0.1.v20100909-1720.jar
    b5cf0000-b5cf2000 r--s 00007000 08:01 8388 /opt/eclipse/plugins/org.eclipse.core.variables_3.2.400.v20100505.jar
    b5cf2000-b5d01000 r-xp 00000000 08:01 706064 /opt/java/jre/lib/i386/libzip.so
    b5d01000-b5d03000 rw-p 0000e000 08:01 706064 /opt/java/jre/lib/i386/libzip.so
    b5d03000-b5d0b000 rw-s 00000000 08:01 660442 /tmp/hsperfdata_kicsyromy/3431
    b5d0b000-b5d2e000 r-xp 00000000 08:01 706068 /opt/java/jre/lib/i386/libjava.so
    b5d2e000-b5d30000 rw-p 00023000 08:01 706068 /opt/java/jre/lib/i386/libjava.so
    b5d30000-b61f2000 r-xp 00000000 08:01 805557 /opt/java/jre/lib/i386/client/libjvm.so
    b61f2000-b6215000 rw-p 004c2000 08:01 805557 /opt/java/jre/lib/i386/client/libjvm.so
    b6215000-b6631000 rw-p 00000000 00:00 0
    b6631000-b6691000 rw-s 00000000 00:04 1343490 /SYSV00000000 (deleted)
    b6691000-b66f4000 rw-p 00000000 00:00 0
    b66f4000-b671d000 r-xp 00000000 08:01 665805 /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    b671d000-b671e000 rw-p 00028000 08:01 665805 /usr/lib/gtk-2.0/2.10.0/engines/libclearlooks.so
    b671e000-b6727000 r-xp 00000000 08:01 544946 /usr/lib/libltdl.so.7.3.0
    b6727000-b6728000 rw-p 00008000 08:01 544946 /usr/lib/libltdl.so.7.3.0
    b6728000-b6737000 r-xp 00000000 08:01 545000 /usr/lib/libtdb.so.1.2.9
    b6737000-b6738000 rw-p 0000e000 08:01 545000 /usr/lib/libtdb.so.1.2.9
    b6738000-b675d000 r-xp 00000000 08:01 544857 /usr/lib/libvorbis.so.0.4.5
    b675d000-b675e000 rw-p 00025000 08:01 544857 /usr/lib/libvorbis.so.0.4.5
    b675e000-b6765000 r-xp 00000000 08:01 544856 /usr/lib/libvorbisfile.so.3.3.4
    b6765000-b6766000 rw-p 00006000 08:01 544856 /usr/lib/libvorbisfile.so.3.3.4
    b6766000-b6768000 r--s 00017000 08:01 8344 /opt/eclipse/plugins/org.eclipse.equinox.common_3.6.0.v20100503.jar
    b6769000-b676a000 r--s 00000000 08:01 788982 /home/kicsyromy/.local/share/mime/mime.cache
    b676a000-b676c000 r--s 0000a000 08:01 8237 /opt/eclipse/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
    b676c000-b6772000 r-xp 00000000 08:01 805563 /opt/java/jre/lib/i386/native_threads/libhpi.so
    b6772000-b6773000 rw-p 00006000 08:01 805563 /opt/java/jre/lib/i386/native_threads/libhpi.so
    b6773000-b6774000 rw-p 00000000 00:00 0
    b6774000-b677f000 r-xp 00000000 08:01 706035 /opt/java/jre/lib/i386/libverify.so
    b677f000-b6780000 rw-p 0000b000 08:01 706035 /opt/java/jre/lib/i386/libverify.so
    b6780000-b6783000 r-xp 00000000 08:01 654690 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    b6783000-b6784000 rw-p 00002000 08:01 654690 /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    b6784000-b678f000 r-xp 00000000 08:01 130595 /lib/libnss_files-2.13.so
    b678f000-b6790000 r--p 0000a000 08:01 130595 /lib/libnss_files-2.13.so
    b6790000-b6791000 rw-p 0000b000 08:01 130595 /lib/libnss_files-2.13.so
    b6791000-b67ae000 r-xp 00000000 08:01 551310 /usr/lib/libatk-1.0.so.0.9.1
    b67ae000-b67b0000 rw-p 0001c000 08:01 551310 /usr/lib/libatk-1.0.so.0.9.1
    b67b0000-b6c05000 r-xp 00000000 08:01 548575 /usr/lib/libgtk-x11-2.0.so.0.2400.4
    b6c05000-b6c0b000 rw-p 00455000 08:01 548575 /usr/lib/libgtk-x11-2.0.so.0.2400.4
    b6c0b000-b6c0c000 rw-p 00000000 00:00 0
    b6c0c000-b6c10000 r-xp 00000000 08:01 543654 /usr/lib/libXdmcp.so.6.0.0
    b6c10000-b6c11000 rw-p 00003000 08:01 543654 /usr/lib/libXdmcp.so.6.0.0
    b6c11000-b6c13000 r-xp 00000000 08:01 543668 /usr/lib/libXau.so.6.0.0
    b6c13000-b6c14000 rw-p 00001000 08:01 543668 /usr/lib/libXau.so.6.0.0
    b6c14000-b6c2b000 r-xp 00000000 08:01 543682 /usr/lib/libxcb.so.1.1.0
    b6c2b000-b6c2c000 rw-p 00016000 08:01 543682 /usr/lib/libxcb.so.1.1.0
    b6c2c000-b6c93000 r-xp 00000000 08:01 545111 /usr/lib/libpixman-1.so.0.20.2
    b6c93000-b6c97000 rw-p 00066000 08:01 545111 /usr/lib/libpixman-1.so.0.20.2
    b6c97000-b6cbd000 r-xp 00000000 08:01 542879 /usr/lib/libexpat.so.1.5.2
    b6cbd000-b6cbf000 rw-p 00026000 08:01 542879 /usr/lib/libexpat.so.1.5.2
    b6cbf000-b6cd3000 r-xp 00000000 08:01 528312 /usr/lib/libz.so.1.2.5
    b6cd3000-b6cd4000 rw-p 00013000 08:01 528312 /usr/lib/libz.so.1.2.5
    b6cd4000-b6ce7000 r-xp 00000000 08:01 130594 /lib/libresolv-2.13.so
    b6ce7000-b6ce8000 r--p 00012000 08:01 130594 /lib/libresolv-2.13.so
    b6ce8000-b6ce9000 rw-p 00013000 08:01 130594 /lib/libresolv-2.13.so
    b6ce9000-b6ceb000 rw-p 00000000 00:00 0
    b6ceb000-b6d6c000 r-xp 00000000 08:01 545229 /usr/lib/libfreetype.so.6.6.2
    b6d6c000-b6d70000 rw-p 00081000 08:01 545229 /usr/lib/libfreetype.so.6.6.2
    b6d70000-b6d96000 r-xp 00000000 08:01 566098 /usr/lib/libpangoft2-1.0.so.0.2800.4
    b6d96000-b6d97000 rw-p 00026000 08:01 566098 /usr/lib/libpangoft2-1.0.so.0.2800.4
    b6d97000-b6eaf000 r-xp 00000000 08:01 544653 /usr/lib/libX11.so.6.3.0
    b6eaf000-b6eb3000 rw-p 00117000 08:01 544653 /usr/lib/libX11.so.6.3.0
    b6eb3000-b6f4f000 r-xp 00000000 08:01 546347 /usr/lib/libcairo.so.2.11000.2
    b6f4f000-b6f51000 rw-p 0009b000 08:01 546347 /usr/lib/libcairo.so.2.11000.2
    b6f51000-b6f53000 rw-p 00000000 00:00 0
    b6f53000-b6f7b000 r-xp 00000000 08:01 130575 /lib/libm-2.13.so
    b6f7b000-b6f7c000 r--p 00027000 08:01 130575 /lib/libm-2.13.so
    b6f7c000-b6f7d000 rw-p 00028000 08:01 130575 /lib/libm-2.13.so
    b6f7d000-b6fa2000 r-xp 00000000 08:01 545885 /usr/lib/libpng14.so.14.5.0
    b6fa2000-b6fa3000 rw-p 00025000 08:01 545885 /usr/lib/libpng14.so.14.5.0
    b6fa3000-b6fc4000 r-xp 00000000 08:01 569927 /usr/lib/libgdk_pixbuf-2.0.so.0.2300.3
    b6fc4000-b6fc5000 rw-p 00021000 08:01 569927 /usr/lib/libgdk_pixbuf-2.0.so.0.2300.3
    b6fc5000-b6fc9000 r-xp 00000000 08:01 545147 /usr/lib/libXfixes.so.3.1.0
    b6fc9000-b6fca000 rw-p 00003000 08:01 545147 /usr/lib/libXfixes.so.3.1.0
    b6fca000-b6fcc000 r-xp 00000000 08:01 545149 /usr/lib/libXdamage.so.1.1.0
    b6fcc000-b6fcd000 rw-p 00001000 08:01 545149 /usr/lib/libXdamage.so.1.1.0
    b6fcd000-b6fcf000 r-xp 00000000 08:01 545930 /usr/lib/libXcomposite.so.1.0.0
    b6fcf000-b6fd0000 rw-p 00001000 08:01 545930 /usr/lib/libXcomposite.so.1.0.0
    b6fd0000-b6fd8000 r-xp 00000000 08:01 545847 /usr/lib/libXcursor.so.1.0.2
    b6fd8000-b6fd9000 rw-p 00007000 08:01 545847 /usr/lib/libXcursor.so.1.0.2
    b6fd9000-b6fdf000 r-xp 00000000 08:01 545826 /usr/lib/libXrandr.so.2.2.0
    b6fdf000-b6fe0000 rw-p 00005000 08:01 545826 /usr/lib/libXrandr.so.2.2.0
    b6fe0000-b6fec000 r-xp 00000000 08:01 544791 /usr/lib/libXi.so.6.1.0
    b6fec000-b6fed000 rw-p 0000b000 08:01 544791 /usr/lib/libXi.so.6.1.0
    b6fed000-b6fef000 r-xp 00000000 08:01 545947 /usr/lib/libXinerama.so.1.0.0
    b6fef000-b6ff0000 rw-p 00001000 08:01 545947 /usr/lib/libXinerama.so.1.0.0
    b6ff0000-b6ff7000 r-xp 00000000 08:01 545808 /usr/lib/libXrender.so.1.3.0
    b6ff7000-b6ff8000 rw-p 00007000 08:01 545808 /usr/lib/libXrender.so.1.3.0
    b6ff8000-b7005000 r-xp 00000000 08:01 544657 /usr/lib/libXext.so.6.4.0
    b7005000-b7006000 rw-p 0000d000 08:01 544657 /usr/lib/libXext.so.6.4.0
    b7006000-b7032000 r-xp 00000000 08:01 545457 /usr/lib/libfontconfig.so.1.4.4
    b7032000-b7034000 rw-p 0002b000 08:01 545457 /usr/lib/libfontconfig.so.1.4.4
    b7034000-b7139000 r-xp 00000000 08:01 530488 /usr/lib/libgio-2.0.so.0.2902.0
    b7139000-b713c000 rw-p 00105000 08:01 530488 /usr/lib/libgio-2.0.so.0.2902.0
    b713c000-b713d000 rw-p 00000000 00:00 0
    b713d000-b717c000 r-xp 00000000 08:01 566096 /usr/lib/libpango-1.0.so.0.2800.4
    b717c000-b717e000 rw-p 0003e000 08:01 566096 /usr/lib/libpango-1.0.so.0.2800.4
    b717e000-b7188000 r-xp 00000000 08:01 566100 /usr/lib/libpangocairo-1.0.so.0.2800.4
    b7188000-b7189000 rw-p 00009000 08:01 566100 /usr/lib/libpangocairo-1.0.so.0.2800.4
    b7189000-b7234000 r-xp 00000000 08:01 548574 /usr/lib/libgdk-x11-2.0.so.0.2400.4
    b7234000-b7237000 rw-p 000aa000 08:01 548574 /usr/lib/libgdk-x11-2.0.so.0.2400.4
    b7237000-b7273000 r-xp 00000000 08:01 130736 /lib/libpcre.so.0.0.1
    b7273000-b7274000 rw-p 0003b000 08:01 130736 /lib/libpcre.so.0.0.1
    b7274000-b7349000 r-xp 00000000 08:01 530474 /usr/lib/libglib-2.0.so.0.2902.0
    b7349000-b734a000 rw-p 000d4000 08:01 530474 /usr/lib/libglib-2.0.so.0.2902.0
    b734a000-b738f000 r-xp 00000000 08:01 530486 /usr/lib/libgobject-2.0.so.0.2902.0
    b738f000-b7391000 rw-p 00044000 08:01 530486 /usr/lib/libgobject-2.0.so.0.2902.0
    b7391000-b7396000 r-xp 00000000 08:01 544823 /usr/lib/libogg.so.0.7.1
    b7396000-b7397000 rw-p 00004000 08:01 544823 /usr/lib/libogg.so.0.7.1
    b7397000-b73a5000 r-xp 00000000 08:01 549860 /usr/lib/libcanberra.so.0.2.4
    b73a5000-b73a6000 rw-p 0000d000 08:01 549860 /usr/lib/libcanberra.so.0.2.4
    b73a6000-b73a9000 r-xp 00000000 08:01 549866 /usr/lib/libcanberra-gtk.so.0.1.7
    b73a9000-b73aa000 rw-p 00003000 08:01 549866 /usr/lib/libcanberra-gtk.so.0.1.7
    b73aa000-b73ae000 r-xp 00000000 08:01 662464 /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b73ae000-b73af000 rw-p 00004000 08:01 662464 /usr/lib/gtk-2.0/modules/libcanberra-gtk-module.so
    b73af000-b7562000 r--p 00000000 08:01 573946 /usr/lib/locale/locale-archive
    b7562000-b7564000 rw-p 00000000 00:00 0
    b7564000-b76c3000 r-xp 00000000 08:01 130576 /lib/libc-2.13.so
    b76c3000-b76c4000 ---p 0015f000 08:01 130576 /lib/libc-2.13.so
    b76c4000-b76c6000 r--p 0015f000 08:01 130576 /lib/libc-2.13.so
    b76c6000-b76c7000 rw-p 00161000 08:01 130576 /lib/libc-2.13.so
    b76c7000-b76ca000 rw-p 00000000 00:00 0
    b76ca000-b76cd000 r-xp 00000000 08:01 130563 /lib/libdl-2.13.so
    b76cd000-b76ce000 r--p 00002000 08:01 130563 /lib/libdl-2.13.so
    b76ce000-b76cf000 rw-p 00003000 08:01 130563 /lib/libdl-2.13.so
    b76cf000-b76e6000 r-xp 00000000 08:01 130574 /lib/libpthread-2.13.so
    b76e6000-b76e7000 r--p 00016000 08:01 130574 /lib/libpthread-2.13.so
    b76e7000-b76e8000 rw-p 00017000 08:01 130574 /lib/libpthread-2.13.so
    b76e8000-b76ea000 rw-p 00000000 00:00 0
    b76ea000-b76eb000 r--p 00000000 00:00 0
    b76eb000-b76ed000 r-xp 00000000 08:01 530481 /usr/lib/libgmodule-2.0.so.0.2902.0
    b76ed000-b76ee000 rw-p 00002000 08:01 530481 /usr/lib/libgmodule-2.0.so.0.2902.0
    b76ee000-b76f5000 r-xp 00000000 08:01 135341 /lib/librt-2.13.so
    b76f5000-b76f6000 r--p 00006000 08:01 135341 /lib/librt-2.13.so
    b76f6000-b76f7000 rw-p 00007000 08:01 135341 /lib/librt-2.13.so
    b76f7000-b76fa000 r-xp 00000000 08:01 530476 /usr/lib/libgthread-2.0.so.0.2902.0
    b76fa000-b76fb000 rw-p 00003000 08:01 530476 /usr/lib/libgthread-2.0.so.0.2902.0
    b76fb000-b7707000 r-xp 00000000 08:01 142197 /opt/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.1.R36x_v20100810/eclipse_1309.so
    b7707000-b7708000 rw-p 0000c000 08:01 142197 /opt/eclipse/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.1.R36x_v20100810/eclipse_1309.so
    b7708000-b7709000 rw-p 00000000 00:00 0
    b7709000-b770a000 r-xp 00000000 00:00 0 [vdso]
    b770a000-b7728000 r-xp 00000000 08:01 130589 /lib/ld-2.13.so
    b7728000-b7729000 r--p 0001d000 08:01 130589 /lib/ld-2.13.so
    b7729000-b772a000 rw-p 0001e000 08:01 130589 /lib/ld-2.13.so
    bff3f000-bff42000 ---p 00000000 00:00 0
    bff43000-bff8f000 rwxp 00000000 00:00 0 [stack]
    bff8f000-bff90000 rw-p 00000000 00:00 0
    VM Arguments:
    jvm_args: -Xmx384m -Dorg.eclipse.swt.browser.UseWebKitGTK=true -XX:MaxPermSize=256m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=/opt/java/jre
    PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/java/jre/bin:/usr/bin/vendor_perl:/usr/bin/core_perl
    USERNAME=kicsyromy
    LD_LIBRARY_PATH=/opt/java/jre/lib/i386/client:/opt/java/jre/lib/i386:/usr/lib/xulrunner-devel-2.0:/usr/lib/xulrunner-devel-2.0
    SHELL=/bin/bash
    DISPLAY=:0
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x452e10], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGBUS: [libjvm.so+0x452e10], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGFPE: [libjvm.so+0x374120], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGXFSZ: [libjvm.so+0x374120], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGILL: [libjvm.so+0x374120], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: [libjvm.so+0x377100], sa_mask[0]=0x00000000, sa_flags=0x10000004
    SIGHUP: [libjvm.so+0x376ce0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGINT: [libjvm.so+0x376ce0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGTERM: [libjvm.so+0x376ce0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    SIGQUIT: [libjvm.so+0x376ce0], sa_mask[0]=0x7ffbfeff, sa_flags=0x10000004
    --------------- S Y S T E M ---------------
    OS:Linux
    uname:Linux 2.6.38-ARCH #1 SMP PREEMPT Sun Apr 17 14:51:34 UTC 2011 i686
    libc:glibc 2.13 NPTL 2.13
    rlimit: STACK 8192k, CORE 0k, NPROC 16103, NOFILE 1024, AS infinity
    load average:0.06 0.08 0.19
    /proc/meminfo:
    MemTotal: 2063380 kB
    MemFree: 564004 kB
    Buffers: 84152 kB
    Cached: 983900 kB
    SwapCached: 0 kB
    Active: 832640 kB
    Inactive: 585056 kB
    Active(anon): 349992 kB
    Inactive(anon): 1212 kB
    Active(file): 482648 kB
    Inactive(file): 583844 kB
    Unevictable: 0 kB
    Mlocked: 0 kB
    HighTotal: 1187528 kB
    HighFree: 32600 kB
    LowTotal: 875852 kB
    LowFree: 531404 kB
    SwapTotal: 2097148 kB
    SwapFree: 2097148 kB
    Dirty: 28 kB
    Writeback: 0 kB
    AnonPages: 345644 kB
    Mapped: 73308 kB
    Shmem: 1564 kB
    Slab: 45672 kB
    SReclaimable: 35188 kB
    SUnreclaim: 10484 kB
    KernelStack: 1976 kB
    PageTables: 2280 kB
    NFS_Unstable: 0 kB
    Bounce: 0 kB
    WritebackTmp: 0 kB
    CommitLimit: 3128836 kB
    Committed_AS: 1020236 kB
    VmallocTotal: 122880 kB
    VmallocUsed: 51680 kB
    VmallocChunk: 41980 kB
    HardwareCorrupted: 0 kB
    AnonHugePages: 65536 kB
    HugePages_Total: 0
    HugePages_Free: 0
    HugePages_Rsvd: 0
    HugePages_Surp: 0
    Hugepagesize: 4096 kB
    DirectMap4k: 36856 kB
    DirectMap4M: 872448 kB
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3
    Memory: 4k page, physical 2063380k(564004k free), swap 2097148k(2097148k free)
    vm_info: Java HotSpot(TM) Client VM (19.1-b02) for linux-x86 JRE (1.6.0_24-b07), built on Feb 2 2011 17:10:45 by "java_re" with gcc 3.2.1-7a (J2SE release)
    time: Wed Apr 20 08:54:52 2011
    elapsed time: 30 seconds
    'uname -a' output:
    Linux kicsyromy-GX700 2.6.38-ARCH #1 SMP PREEMPT Sun Apr 17 14:51:34 UTC 2011 i686 Intel(R) Core(TM)2 Duo CPU T7250 @ 2.00GHz GenuineIntel GNU/Linux

    Please open threads in appropriate forums. Gnome3 is still in testing
    moved to [testing]
    Check if this helps, although they are not using Gnome3, so it might not be relevant
    https://bbs.archlinux.org/viewtopic.php?id=115543

  • Crash in Eclipse with Qt

    I can't open Eclipse, everytime it is starting it crashes with a EXCEPTION_ACCESS_VIOLATION.
    This starts happening when I install the Qt integration in Eclipse and create the first Qt project in eclipse. After saving the project and closing Eclipse I never been able again to open Eclipse.
    The only way out is to delete Eclipse folder and install it again. Even if I install it over the old one it still doesn't work.
    Any guesses?
    This is the log I get:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x05251340, pid=1924, tid=1928
    # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing)
    # Problematic frame:
    # C [qtcppproparser.dll+0x1340]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x00a06000): JavaThread "main" [_thread_in_native, id=1928]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000008
    Registers:
    EAX=0x00000005, EBX=0x00000000, ECX=0x00000000, EDX=0x0000005f
    ESP=0x0012ea28, EBP=0x00000005, ESI=0x037ede38, EDI=0x0012eadc
    EIP=0x05251340, EFLAGS=0x00010297
    Top of Stack: (sp=0x0012ea28)
    0x0012ea28: 05262538 0526840c 670b5710 0012eadc
    0x0012ea38: 00000000 00000001 0012ec5c 05286869
    0x0012ea48: ffffffff 052715a6 00000000 0000005f
    0x0012ea58: 0012eadc 03593e88 00a060ec 0012ece8
    0x0012ea68: 0012ec9c 011a23e0 03594f50 0000005f
    0x0012ea78: 00000000 80020003 01000010 052a7ae8
    0x0012ea88: 00000001 03594cc0 6716733c 03594f50
    0x0012ea98: 0012eadc 0012eba8 0012ebcc 00000001
    Instructions: (pc=0x05251340)
    0x05251330: 8b 44 24 04 89 41 14 ff 15 30 a7 28 05 c2 04 00
    0x05251340: 8b 41 08 c3 cc cc cc cc cc cc cc cc cc cc cc cc
    Stack: [0x00030000,0x00130000), sp=0x0012ea28, free space=1018k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [qtcppproparser.dll+0x1340]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.ole.win32.COM.VtblCall(IIILorg/eclipse/swt/internal/ole/win32/GUID;IILorg/eclipse/swt/internal/ole/win32/DISPPARAMS;ILorg/eclipse/swt/internal/ole/win32/EXCEPINFO;[I)I+0
    j org.eclipse.swt.internal.ole.win32.IDispatch.Invoke(ILorg/eclipse/swt/internal/ole/win32/GUID;IILorg/eclipse/swt/internal/ole/win32/DISPPARAMS;ILorg/eclipse/swt/internal/ole/win32/EXCEPINFO;[I)I+19
    j org.eclipse.swt.ole.win32.OleAutomation.invoke(II[Lorg/eclipse/swt/ole/win32/Variant;[ILorg/eclipse/swt/ole/win32/Variant;)I+225
    j org.eclipse.swt.ole.win32.OleAutomation.invoke(I)Lorg/eclipse/swt/ole/win32/Variant;+14
    j com.trolltech.qtcppproject.pages.ExplorerView.isDirty()Z+20
    j com.trolltech.qtcppproject.pages.ProCommonPage.isDirty()Z+4
    j com.trolltech.qtcppproject.editors.ProEditor.isDirty()Z+4
    j org.eclipse.ui.internal.PartTester.testEditor(Lorg/eclipse/ui/IEditorPart;)V+48
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+370
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorAreaHelper.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+12
    j org.eclipse.ui.internal.EditorManager.setVisibleEditor(Lorg/eclipse/ui/IEditorReference;Z)Z+6
    j org.eclipse.ui.internal.EditorManager$5.runWithException()V+21
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+44
    j org.eclipse.ui.internal.Workbench$25.runWithException()V+17
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.internal.Workbench.runUI()I+212
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$4.run()V+23
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+81
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+102
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+210
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0398fc00 JavaThread "Thread-2" [_thread_blocked, id=1088]
    0x0391d800 JavaThread "Thread-1" [_thread_blocked, id=1668]
    0x03847c00 JavaThread "Worker-2" [_thread_blocked, id=2040]
    0x037a7800 JavaThread "Worker-1" [_thread_blocked, id=240]
    0x03889800 JavaThread "Worker-0" [_thread_blocked, id=1940]
    0x036eb400 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=1864]
    0x0372c400 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=1456]
    0x036e0800 JavaThread "State Data Manager" daemon [_thread_blocked, id=1044]
    0x02c7d000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1956]
    0x02c78000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1856]
    0x02c76c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=1368]
    0x02c76000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1500]
    0x02c71800 JavaThread "Finalizer" daemon [_thread_blocked, id=1512]
    0x02c6d400 JavaThread "Reference Handler" daemon [_thread_blocked, id=1988]
    =>0x00a06000 JavaThread "main" [_thread_in_native, id=1928]
    Other Threads:
    0x02c6c000 VMThread [id=844]
    0x02c97800 WatcherThread [id=1516]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2880K, used 556K [0x16960000, 0x16c80000, 0x17d10000)
    eden space 2560K, 14% used [0x16960000, 0x169ba780, 0x16be0000)
    from space 320K, 60% used [0x16be0000, 0x16c109a0, 0x16c30000)
    to space 320K, 0% used [0x16c30000, 0x16c30000, 0x16c80000)
    tenured generation total 37824K, used 12498K [0x17d10000, 0x1a200000, 0x26960000)
    the space 37824K, 33% used [0x17d10000, 0x18944908, 0x18944a00, 0x1a200000)
    compacting perm gen total 20480K, used 20316K [0x26960000, 0x27d60000, 0x2a960000)
    the space 20480K, 99% used [0x26960000, 0x27d370f0, 0x27d37200, 0x27d60000)
    ro space 8192K, 62% used [0x2a960000, 0x2ae614a8, 0x2ae61600, 0x2b160000)
    rw space 12288K, 52% used [0x2b160000, 0x2b7a7278, 0x2b7a7400, 0x2bd60000)
    Dynamic libraries:
    0x00400000 - 0x0040e000      C:\eclipse\eclipse.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINDOWS\system32\kernel32.dll
    0x7e410000 - 0x7e4a0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\COMCTL32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x72000000 - 0x72012000      C:\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.1.R33x_v20070828\eclipse_1020.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.DLL
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
    0x6d7c0000 - 0x6da0a000      C:\Program Files\Java\jre1.6.0_03\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\system32\MSVCR71.dll
    0x6d310000 - 0x6d318000      C:\Program Files\Java\jre1.6.0_03\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d770000 - 0x6d77c000      C:\Program Files\Java\jre1.6.0_03\bin\verify.dll
    0x6d3b0000 - 0x6d3cf000      C:\Program Files\Java\jre1.6.0_03\bin\java.dll
    0x6d7b0000 - 0x6d7bf000      C:\Program Files\Java\jre1.6.0_03\bin\zip.dll
    0x6d570000 - 0x6d583000      C:\Program Files\Java\jre1.6.0_03\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d590000 - 0x6d599000      C:\Program Files\Java\jre1.6.0_03\bin\nio.dll
    0x10000000 - 0x10008000      C:\eclipse\configuration\org.eclipse.osgi\bundles\39\1\.cp\os\win32\x86\localfile_1_0_0.dll
    0x04260000 - 0x042af000      C:\eclipse\configuration\org.eclipse.osgi\bundles\84\1\.cp\swt-win32-3346.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x42c10000 - 0x42cdf000      C:\WINDOWS\system32\WININET.dll
    0x042c0000 - 0x042c9000      C:\WINDOWS\system32\Normaliz.dll
    0x42990000 - 0x429d5000      C:\WINDOWS\system32\iertutil.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\oleacc.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x04980000 - 0x04994000      C:\eclipse\configuration\org.eclipse.osgi\bundles\84\1\.cp\swt-gdip-win32-3346.dll
    0x4ec50000 - 0x4edf3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
    0x04c80000 - 0x04f45000      C:\WINDOWS\system32\xpsp2res.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x05250000 - 0x052b6000      C:\Qt\Eclipse\qtcppproparser.dll
    0x61000000 - 0x61053000      C:\Qt\Eclipse\QtXml4.dll
    0x67000000 - 0x67178000      C:\Qt\Eclipse\QtCore4.dll
    0x7c3c0000 - 0x7c43c000      C:\Qt\Eclipse\MSVCP71.dll
    0x65000000 - 0x655eb000      C:\Qt\Eclipse\QtGui4.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    VM Arguments:
    jvm_args: -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx256m
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=.;C:\Program Files\QuickTime\QTSystem\QTJava.zip
    PATH=C:\Program Files\Java\jre1.6.0_03\bin\client;C:\Program Files\Java\jre1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\VXIpnp\WinNT\Bin;C:\Program Files\Common Files\GTK\2.0\bin;c:\mingw\bin;C:\Program Files\boost\boost_1_34_1\bin;C:\Program Files\boost\boost_1_34_1\lib;
    USERNAME=david.beja
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1039856k(568708k free), swap 2504056k(2212812k free)
    vm_info: Java HotSpot(TM) Client VM (1.6.0_03-b05) for windows-x86, built on Sep 24 2007 22:24:33 by "java_re" with unknown MS VC++:1310

    What should I do?Contact 3rd party product vendor. An OS exception is thrown in the application, that may be a 3rd party problem, may be an Oracle problem, may be a combination of both. Only the code developers can analyze this.
    Werner

  • JVM crash when using debug mode in eclipse

    Hi,
    I get a SIGSEGV every time I use debug mode in Eclipse. Sometimes after a few breakpoints, sometimes when I start the debug view.
    Have Eclipse helios and JRE 6.0_21-b06 but have also tried 1.6.0_03-b05 with same result.
    The log file (hs_error_pidxxx.log) gives the following:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xff23259c, pid=2917, tid=2
    # JRE version: 6.0_21-b06
    # Java VM: Java HotSpot(TM) Server VM (17.0-b16 mixed mode solaris-sparc )
    # Problematic frame:
    # C [libc.so.1+0x3259c] strncmp+0x348
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x0003d800): JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000
    Registers:
    O0=0x00000001 O1=0x00000000 O2=0x00000001 O3=0x00000000
    O4=0x00000102 O5=0x0125d898 O6=0xfe37d3b8 O7=0xe1dd104c
    G1=0x00105000 G2=0x00007b00 G3=0x00000000 G4=0xe2947b08
    G5=0xfee6e2e8 G6=0x00000000 G7=0xfe3e0200 Y=0x00000000
    PC=0xff23259c nPC=0xff2325a0
    Top of Stack: (sp=0xfe37d3b8)
    0xfe37d3b8: 00000000 e1ebec00 ff2c1bd0 e1ebec00
    0xfe37d3c8: 011966e8 00000001 fee2e000 00001cc4
    0xfe37d3d8: 1d69c014 e2963fec 00000001 00000108
    0xfe37d3e8: 0000006e 0000006e fe37d3f8 e2947bd4
    0xfe37d3f8: e2963ff4 014e2b38 e2963ffc 00000000
    0xfe37d408: fee2e000 011afd80 01da6f38 e2963fec
    0xfe37d418: fe37d484 0125da90 0125dab8 00000002
    0xfe37d428: 00000000 e2974f88 fe37d488 e2350fd4
    Instructions: (pc=0xff23259c)
    0xff23258c: 91 ee 00 00 b4 a6 a0 01 0a bf ff e1 01 00 00 00
    0xff23259c: f8 0e 40 18 fa 0e 40 00 b2 06 60 01 80 a7 00 1d
    Stack: [0xfe300000,0xfe380000], sp=0xfe37d3b8, free space=1f4ff23259ck
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libc.so.1+0x3259c] strncmp+0x348
    C [libpangoft2-1.0.so.0.501.1+0x7bdc]
    C [libswt-pi-gtk-3650.so+0x50fdc] Java_org_eclipse_swt_internal_gtk_OS__1pango_1context_1list_1families+0x74
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+472954808
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x797afc]
    V [libjvm.so+0x217704]
    V [libjvm.so+0x215d8c]
    C [libjava.so+0x10bfc] Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x18
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+746878888
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    V [libjvm.so+0x15e33c]
    V [libjvm.so+0x2012dc]
    C [java+0x3ab8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.gtk.OS._pango_context_list_families(I[I[I)V+0
    j org.eclipse.swt.internal.gtk.OS.pango_context_list_families(I[I[I)V+10
    j org.eclipse.swt.graphics.Device.getFontList(Ljava/lang/String;Z)[Lorg/eclipse/swt/graphics/FontData;+53
    j org.eclipse.jface.resource.FontRegistry.filterData([Lorg/eclipse/swt/graphics/FontData;Lorg/eclipse/swt/widgets/Display;)[Lorg/eclipse/swt/graphics/FontData;+67
    j org.eclipse.jface.resource.FontRegistry.createFont(Ljava/lang/String;[Lorg/eclipse/swt/graphics/FontData;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+32
    j org.eclipse.jface.resource.FontRegistry.getFontRecord(Ljava/lang/String;)Lorg/eclipse/jface/resource/FontRegistry$FontRecord;+53
    j org.eclipse.jface.resource.FontRegistry.get(Ljava/lang/String;)Lorg/eclipse/swt/graphics/Font;+2
    j org.eclipse.jface.resource.JFaceResources.getHeaderFont()Lorg/eclipse/swt/graphics/Font;+5
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createTitleLabel(Lorg/eclipse/swt/widgets/Composite;Ljava/lang/String;)Lorg/eclipse/swt/widgets/Label;+36
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor$SourceAttachmentForm.createControl(Lorg/eclipse/swt/widgets/Composite;)Lorg/eclipse/swt/widgets/Control;+99
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.verifyInput(Lorg/eclipse/ui/IEditorInput;)V+95
    j org.eclipse.jdt.internal.ui.javaeditor.ClassFileEditor.createPartControl(Lorg/eclipse/swt/widgets/Composite;)V+96
    j org.eclipse.ui.internal.EditorReference.createPartHelper()Lorg/eclipse/ui/IEditorPart;+361
    j org.eclipse.ui.internal.EditorReference.createPart()Lorg/eclipse/ui/IWorkbenchPart;+27
    j org.eclipse.ui.internal.WorkbenchPartReference.getPart(Z)Lorg/eclipse/ui/IWorkbenchPart;+65
    j org.eclipse.ui.internal.EditorReference.getEditor(Z)Lorg/eclipse/ui/IEditorPart;+2
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+233
    j org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+27
    j org.eclipse.ui.internal.WorkbenchPage.access$11(Lorg/eclipse/ui/internal/WorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+8
    j org.eclipse.ui.internal.WorkbenchPage$10.run()V+29
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZILorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart;+59
    j org.eclipse.ui.internal.WorkbenchPage.openEditor(Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;ZI)Lorg/eclipse/ui/IEditorPart;+7
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility$1.run()V+41
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/ui/IWorkbenchPage;Lorg/eclipse/ui/IEditorInput;Ljava/lang/String;)Lorg/eclipse/ui/IEditorPart;+26
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.openEditor(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)Lorg/eclipse/ui/IEditorPart;+201
    j org.eclipse.debug.internal.ui.sourcelookup.SourceLookupFacility.display(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+3
    j org.eclipse.debug.ui.DebugUITools.displaySource(Lorg/eclipse/debug/ui/sourcelookup/ISourceLookupResult;Lorg/eclipse/ui/IWorkbenchPage;)V+5
    j org.eclipse.debug.internal.ui.elements.adapters.StackFrameSourceDisplayAdapter$SourceDisplayJob.runInUIThread(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+24
    j org.eclipse.ui.progress.UIJob$1.run()V+53
    J org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z
    J org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z
    J org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V
    j org.eclipse.ui.internal.Workbench.runUI()I+555
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$7.run()V+55
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+99
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    j org.eclipse.equinox.launcher.Main.main([Ljava/lang/String;)V+10
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x016fec00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=300, stack(0xd8f00000,0xd8f80000)]
    0x01a5dc00 JavaThread "org.eclipse.jdt.debug: JDI Event Dispatcher" daemon [_thread_blocked, id=292, stack(0xd9000000,0xd9080000)]
    0x00a3bc00 JavaThread "Timer-2" daemon [_thread_blocked, id=291, stack(0xd9700000,0xd9780000)]
    0x00a41000 JavaThread "Packet Send Manager" daemon [_thread_blocked, id=290, stack(0xd9100000,0xd9180000)]
    0x01f73c00 JavaThread "Packet Receive Manager" daemon [_thread_in_native, id=289, stack(0xd9200000,0xd9280000)]
    0x00e2a400 JavaThread "Timer-1" daemon [_thread_blocked, id=287, stack(0xd9a00000,0xd9a80000)]
    0x0094c000 JavaThread "ServerConnection" [_thread_in_native, id=285, stack(0xd9800000,0xd9880000)]
    0x0094bc00 JavaThread "Process monitor" daemon [_thread_blocked, id=284, stack(0xd9300000,0xd9380000)]
    0x00895c00 JavaThread "Input Stream Monitor" daemon [_thread_blocked, id=283, stack(0xd9400000,0xd9480000)]
    0x01fef800 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=282, stack(0xd9600000,0xd9680000)]
    0x00a8b000 JavaThread "Output Stream Monitor" daemon [_thread_in_native, id=281, stack(0xd9900000,0xd9980000)]
    0x011dbc00 JavaThread "process reaper" daemon [_thread_in_native, id=280, stack(0xd9500000,0xd9580000)]
    0x01059800 JavaThread "Worker-24" [_thread_blocked, id=261, stack(0xd9c80000,0xd9d00000)]
    0x01059000 JavaThread "Worker-23" [_thread_blocked, id=260, stack(0xde580000,0xde600000)]
    0x02176000 JavaThread "Worker-22" [_thread_blocked, id=248, stack(0xddd00000,0xddd80000)]
    0x01ff0800 JavaThread "Worker-21" [_thread_blocked, id=247, stack(0xda280000,0xda300000)]
    0x00c41c00 JavaThread "Worker-20" [_thread_blocked, id=245, stack(0xdd700000,0xdd780000)]
    0x0268bc00 JavaThread "Worker-19" [_thread_blocked, id=243, stack(0xde000000,0xde080000)]
    0x0141e800 JavaThread "Worker-18" [_thread_blocked, id=242, stack(0xdda00000,0xdda80000)]
    0x019aec00 JavaThread "Worker-16" [_thread_blocked, id=227, stack(0xddf00000,0xddf80000)]
    0x0143b800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=223, stack(0xddb00000,0xddb80000)]
    0x01022800 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=219, stack(0xdde00000,0xdde80000)]
    0x00a58800 JavaThread "Worker-12" [_thread_blocked, id=211, stack(0xde680000,0xde700000)]
    0x018c5400 JavaThread "pool-1-thread-5" [_thread_blocked, id=187, stack(0xd9d80000,0xd9e00000)]
    0x013cdc00 JavaThread "pool-1-thread-4" [_thread_blocked, id=186, stack(0xda380000,0xda400000)]
    0x002a4c00 JavaThread "pool-1-thread-3" [_thread_blocked, id=185, stack(0xddc00000,0xddc80000)]
    0x0282b400 JavaThread "pool-1-thread-2" [_thread_blocked, id=184, stack(0xd9e80000,0xd9f00000)]
    0x018c6400 JavaThread "pool-1-thread-1" [_thread_blocked, id=183, stack(0xd9f80000,0xda000000)]
    0x00973000 JavaThread "Timer-0" daemon [_thread_blocked, id=75, stack(0xdd800000,0xdd880000)]
    0x00ab8000 JavaThread "Thread-39" daemon [_thread_blocked, id=74, stack(0xdd500000,0xdd580000)]
    0x00dc1400 JavaThread "Worker-6" [_thread_blocked, id=73, stack(0xdd900000,0xdd980000)]
    0x004db000 JavaThread "Thread-32" daemon [_thread_in_native, id=66, stack(0xda4d0000,0xda4e0000)]
    0x011eb000 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=43, stack(0xdd400000,0xdd480000)]
    0x003e6400 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=27, stack(0xde100000,0xde180000)]
    0x007c6c00 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=26, stack(0xde200000,0xde280000)]
    0x001ce800 JavaThread "Java indexing" daemon [_thread_blocked, id=24, stack(0xde380000,0xde400000)]
    0x00191400 JavaThread "Worker-0" [_thread_blocked, id=21, stack(0xe2580000,0xe2600000)]
    0x01235400 JavaThread "Worker-JM" [_thread_blocked, id=20, stack(0xe2380000,0xe2400000)]
    0x007ff400 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=19, stack(0xe2480000,0xe2500000)]
    0x0074e000 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=17, stack(0xe2680000,0xe2700000)]
    0x00390000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=16, stack(0xe2780000,0xe2800000)]
    0x005c9800 JavaThread "State Data Manager" daemon [_thread_blocked, id=15, stack(0xe2880000,0xe2900000)]
    0x00124800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=13, stack(0xe2a80000,0xe2b00000)]
    0x00122400 JavaThread "CompilerThread1" daemon [_thread_blocked, id=12, stack(0xe2b80000,0xe2c00000)]
    0x00110c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=11, stack(0xe2c80000,0xe2d00000)]
    0x00118000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10, stack(0xe2d80000,0xe2e00000)]
    0x00107c00 JavaThread "Finalizer" daemon [_thread_blocked, id=9, stack(0xe2e80000,0xe2f00000)]
    0x00106400 JavaThread "Reference Handler" daemon [_thread_blocked, id=8, stack(0xe2f80000,0xe3000000)]
    =>0x0003d800 JavaThread "main" [_thread_in_native, id=2, stack(0xfe300000,0xfe380000)]
    Other Threads:
    0x00103c00 VMThread [stack: 0xe3080000,0xe3100000] [id=7]
    0x0012ec00 WatcherThread [stack: 0xe2980000,0xe2a00000] [id=14]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 40704K, used 18973K [0xf6000000, 0xf9400000, 0xfb800000)
    eden space 29568K, 59% used [0xf6000000,0xf714b120,0xf7ce0000)
    from space 11136K, 11% used [0xf7e40000,0xf7f7c5c8,0xf8920000)
    to space 10432K, 0% used [0xf89d0000,0xf89d0000,0xf9400000)
    PSOldGen total 90112K, used 71968K [0xeb400000, 0xf0c00000, 0xf6000000)
    object space 90112K, 79% used [0xeb400000,0xefa48298,0xf0c00000)
    PSPermGen total 73728K, used 71408K [0xe3400000, 0xe7c00000, 0xeb400000)
    object space 73728K, 96% used [0xe3400000,0xe79bc298,0xe7c00000)
    Dynamic libraries:
    0x00010000      /proj/atelteadm/tools/jdk1.6.0_21/bin/java
    0xff3a0000      /lib/libthread.so.1
    0xff370000      /proj/atelteadm/tools/jdk1.6.0_21/bin/../jre/lib/sparc/jli/libjli.so
    0xff350000      /lib/libdl.so.1
    0xff200000      /lib/libc.so.1
    0xff390000      /platform/SUNW,Sun-Fire-V445/lib/libc_psr.so.1
    0xfe400000      /proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server/libjvm.so
    0xff1d0000      /lib/libsocket.so.1
    0xff1f0000      /usr/lib/libsched.so.1
    0xff1b0000      /lib/libm.so.1
    0xff180000      /usr/lib/libCrun.so.1
    0xff160000      /lib/libdoor.so.1
    0xff080000      /lib/libnsl.so.1
    0xfef80000      /lib/libm.so.2
    0xff050000      /lib/libscf.so.1
    0xff140000      /lib/libuutil.so.1
    VM Arguments:
    jvm_args: -Xms128m -Xmx256m -XX:MaxPermSize=128m
    java_command: /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -os solaris -ws gtk -arch sparc -showsplash -launcher /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix/eclipse -name Eclipse --launcher.library /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.1.0.v20100503/eclipse_1307.so -startup /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar -exitdata 74000027 -install /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix -nl en_US -showlocation -vm /proj/atelteadm/tools/jdk1.6.0_21//bin/java -vmargs -Xms128m -Xmx256m -XX:MaxPermSize=128m -jar /proj/atelteadm/tools/eclipse_dist_jcat/e4e_fix//plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=/usr/local/opt/apssystem/aps_9.1/bin:/proj/aps/bin:/home/ehollis/.afs/0/rbin:/home/ehollis/.afs/0/pbin:/env/seli/bin:/home/ehollis/.afs/0/ibin:/usr/atria/bin:/usr/afsws/bin:/usr/bin:/usr/X/bin:/usr/dt/bin:/usr/openwin/demo:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin:/usr/sbin:/sbin:/usr/ucb:/opt/seli/bin:/opt/sge/seli/etegrid/bin:/opt/sge/seli/bctgrid/bin:/usr/ucb:.
    LD_LIBRARY_PATH=/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc/server:/proj/atelteadm/tools/jdk1.6.0_21/jre/lib/sparc:/proj/atelteadm/tools/jdk1.6.0_21/jre/../lib/sparc:/app/gtk+/2.2.2/lib:/usr/sfw/lib/mozilla/
    SHELL=/bin/tcsh
    DISPLAY=:16.0
    HOSTTYPE=sun4
    OSTYPE=solaris
    MACHTYPE=sparc
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x87b320], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGXFSZ: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x7560bc], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x759ae8], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x1c4174], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Solaris 10 10/08 s10s_u6wos_07b SPARC
    uname:SunOS 5.10 Generic_142900-13 sun4u (T2 libthread)
    vm_info: Java HotSpot(TM) Server VM (17.0-b16) for solaris-sparc JRE (1.6.0_21-b06), built on Jun 22 2010 01:34:33 by "" with Workshop 5.8
    Any clues anyone?

    get a SIGSEGV every time I use debug mode in EclipseSo if you create a hello world program and then debug it, it crashes?
    If yes then the causes would be
    1. The VM(s) binaries are corrupted. Plural as it depends on how you run Eclipse.
    2. Something else installed on your system at the OS level (or at least always running) is corrupt or is corrupting the OS.
    3. A hardware failure.

  • Difficulty while installing Eclipse. Please help

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x1af053d0, pid=3660, tid=208
    # Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode, sharing)
    # Problematic frame:
    # C 0x1af053d0
    --------------- T H R E A D ---------------
    Current thread (0x00859630): JavaThread "main" [_thread_in_native, id=208]
    siginfo: ExceptionCode=0xc0000005, writing address 0x80004005
    Registers:
    EAX=0x80004005, EBX=0x1af053d0, ECX=0xbb40e64e, EDX=0x00130001
    ESP=0x0012ebf4, EBP=0x0012ec14, ESI=0x00000002, EDI=0x00859630
    EIP=0x1af053d0, EFLAGS=0x00010216
    Top of Stack: (sp=0x0012ebf4)
    0x0012ebf4: 00000002 0012ebf8 1af053d0 0012ec28
    0x0012ec04: 1af1d9f0 00000000 1af053d0 0012ec24
    0x0012ec14: 0012ec48 00c829cf 1af1bc88 00c86449
    0x0012ec24: 00000002 00000015 0012ec2c 1bfa9fe0
    0x0012ec34: 0012ec70 1bfc4018 00000000 1bfaa0f8
    0x0012ec44: 0012ec6c 0012ec90 00c82a7b 00000000
    0x0012ec54: 00000000 00000000 0aaae2d8 0aaae288
    0x0012ec64: 0aaae1a0 00000000 0aa94cf8 0ace8db0
    Instructions: (pc=0x1af053d0)
    0x1af053c0: e0 01 0f 00 a7 01 00 00 00 00 a6 2a 10 00 a6 2a
    0x1af053d0: 01 00 00 00 80 0b 26 2b a0 53 f0 1a e0 74 ed 1a
    Stack: [0x00030000,0x00130000), sp=0x0012ebf4, free space=1018k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x1af053d0
    j org.eclipse.swt.browser.IE.setText(Ljava/lang/String;)Z+192
    j org.eclipse.swt.browser.Browser.setText(Ljava/lang/String;)Z+17
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.generateDynamicContentForPage(Lorg/eclipse/ui/internal/intro/impl/model/AbstractIntroPage;)Z+218
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.dynamicStandbyStateChanged(ZZ)V+99
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.doStandbyStateChanged(ZZ)V+58
    j org.eclipse.ui.internal.intro.impl.model.AbstractIntroPartImplementation.standbyStateChanged(ZZ)V+73
    j org.eclipse.ui.internal.intro.impl.model.IntroPartPresentation.standbyStateChanged(ZZ)V+13
    j org.eclipse.ui.intro.config.CustomizableIntroPart.standbyStateChanged(Z)V+88
    j org.eclipse.ui.internal.ViewIntroAdapterPart$2.run()V+19
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.ViewIntroAdapterPart.setStandby(Z)V+28
    j org.eclipse.ui.internal.ViewIntroAdapterPart$1.propertyChanged(Ljava/lang/Object;I)V+39
    j org.eclipse.ui.internal.WorkbenchPartReference.fireInternalPropertyChange(I)V+21
    j org.eclipse.ui.internal.WorkbenchPartReference.fireZoomChange()V+4
    j org.eclipse.ui.internal.PartPane.setZoomed(Z)V+26
    j org.eclipse.ui.internal.PartStack.setZoomed(Z)V+23
    j org.eclipse.ui.internal.PartSashContainer.zoomIn(Lorg/eclipse/ui/internal/LayoutPart;)V+62
    j org.eclipse.ui.internal.PartSashContainer.childRequestZoomIn(Lorg/eclipse/ui/internal/LayoutPart;)V+20
    j org.eclipse.ui.internal.LayoutPart.requestZoomIn()V+11
    j org.eclipse.ui.internal.PartStack.setState(I)V+182
    j org.eclipse.ui.internal.WorkbenchPage.setState(Lorg/eclipse/ui/IWorkbenchPartReference;I)V+87
    j org.eclipse.ui.internal.WorkbenchPage.toggleZoom(Lorg/eclipse/ui/IWorkbenchPartReference;)V+32
    j org.eclipse.ui.internal.WorkbenchIntroManager.setIntroStandby(Lorg/eclipse/ui/intro/IIntroPart;Z)V+78
    j org.eclipse.ui.internal.WorkbenchIntroManager.showIntro(Lorg/eclipse/ui/IWorkbenchWindow;Z)Lorg/eclipse/ui/intro/IIntroPart;+116
    j org.eclipse.ui.application.WorkbenchWindowAdvisor.openIntro()V+113
    j org.eclipse.ui.internal.ide.application.IDEWorkbenchWindowAdvisor.openIntro()V+24
    j org.eclipse.ui.internal.WorkbenchWindow.open()I+20
    j org.eclipse.ui.internal.Workbench$21.runWithException()V+4
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+44
    j org.eclipse.ui.internal.Workbench$25.runWithException()V+17
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.internal.Workbench.runUI()I+212
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$4.run()V+23
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+81
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+102
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8168d]
    V [jvm.dll+0xd4179]
    V [jvm.dll+0x8155e]
    V [jvm.dll+0xe43ca]
    V [jvm.dll+0x9f336]
    C [java.dll+0x6bda]
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+210
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8168d]
    V [jvm.dll+0xd4179]
    V [jvm.dll+0x8155e]
    V [jvm.dll+0x86286]
    C [eclipse_1021.dll+0x4cb0]
    C [eclipse_1021.dll+0x4495]
    C [eclipse_1021.dll+0x14a4]
    C [eclipse.exe+0x1499]
    C [eclipse.exe+0x1181]
    C [eclipse.exe+0x42c6]
    C [kernel32.dll+0x1db1d]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j org.eclipse.swt.internal.win32.OS.CoInternetIsFeatureEnabled(II)I+0
    j org.eclipse.swt.browser.IE.setText(Ljava/lang/String;)Z+192
    j org.eclipse.swt.browser.Browser.setText(Ljava/lang/String;)Z+17
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.generateDynamicContentForPage(Lorg/eclipse/ui/internal/intro/impl/model/AbstractIntroPage;)Z+218
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.dynamicStandbyStateChanged(ZZ)V+99
    j org.eclipse.ui.internal.intro.impl.presentations.BrowserIntroPartImplementation.doStandbyStateChanged(ZZ)V+58
    j org.eclipse.ui.internal.intro.impl.model.AbstractIntroPartImplementation.standbyStateChanged(ZZ)V+73
    j org.eclipse.ui.internal.intro.impl.model.IntroPartPresentation.standbyStateChanged(ZZ)V+13
    j org.eclipse.ui.intro.config.CustomizableIntroPart.standbyStateChanged(Z)V+88
    j org.eclipse.ui.internal.ViewIntroAdapterPart$2.run()V+19
    j org.eclipse.swt.custom.BusyIndicator.showWhile(Lorg/eclipse/swt/widgets/Display;Ljava/lang/Runnable;)V+116
    j org.eclipse.ui.internal.ViewIntroAdapterPart.setStandby(Z)V+28
    j org.eclipse.ui.internal.ViewIntroAdapterPart$1.propertyChanged(Ljava/lang/Object;I)V+39
    j org.eclipse.ui.internal.WorkbenchPartReference.fireInternalPropertyChange(I)V+21
    j org.eclipse.ui.internal.WorkbenchPartReference.fireZoomChange()V+4
    j org.eclipse.ui.internal.PartPane.setZoomed(Z)V+26
    j org.eclipse.ui.internal.PartStack.setZoomed(Z)V+23
    j org.eclipse.ui.internal.PartSashContainer.zoomIn(Lorg/eclipse/ui/internal/LayoutPart;)V+62
    j org.eclipse.ui.internal.PartSashContainer.childRequestZoomIn(Lorg/eclipse/ui/internal/LayoutPart;)V+20
    j org.eclipse.ui.internal.LayoutPart.requestZoomIn()V+11
    j org.eclipse.ui.internal.PartStack.setState(I)V+182
    j org.eclipse.ui.internal.WorkbenchPage.setState(Lorg/eclipse/ui/IWorkbenchPartReference;I)V+87
    j org.eclipse.ui.internal.WorkbenchPage.toggleZoom(Lorg/eclipse/ui/IWorkbenchPartReference;)V+32
    j org.eclipse.ui.internal.WorkbenchIntroManager.setIntroStandby(Lorg/eclipse/ui/intro/IIntroPart;Z)V+78
    j org.eclipse.ui.internal.WorkbenchIntroManager.showIntro(Lorg/eclipse/ui/IWorkbenchWindow;Z)Lorg/eclipse/ui/intro/IIntroPart;+116
    j org.eclipse.ui.application.WorkbenchWindowAdvisor.openIntro()V+113
    j org.eclipse.ui.internal.ide.application.IDEWorkbenchWindowAdvisor.openIntro()V+24
    j org.eclipse.ui.internal.WorkbenchWindow.open()I+20
    j org.eclipse.ui.internal.Workbench$21.runWithException()V+4
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.application.WorkbenchAdvisor.openWindows()Z+44
    j org.eclipse.ui.internal.Workbench$25.runWithException()V+17
    j org.eclipse.ui.internal.StartupThreading$StartupRunnable.run()V+1
    j org.eclipse.swt.widgets.RunnableLock.run()V+11
    j org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Z)Z+29
    j org.eclipse.swt.widgets.Display.runAsyncMessages(Z)Z+5
    j org.eclipse.swt.widgets.Display.readAndDispatch()Z+74
    j org.eclipse.ui.internal.Workbench.runUI()I+212
    j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1
    j org.eclipse.ui.internal.Workbench$4.run()V+23
    j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12
    j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18
    j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2
    j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+81
    j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+102
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103
    j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149
    j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183
    v ~StubRoutines::call_stub
    j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
    j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6
    j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111
    j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+210
    j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114
    j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x03574928 JavaThread "Java indexing" daemon [_thread_blocked, id=3056]
    0x00c2cd10 JavaThread "Thread-2" [_thread_blocked, id=2884]
    0x00c5fc00 JavaThread "Thread-1" [_thread_blocked, id=2292]
    0x0437e488 JavaThread "Worker-0" [_thread_blocked, id=2144]
    0x0382edd0 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=3324]
    0x036d9e60 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=368]
    0x00c1f6a0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2148]
    0x00c1e278 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3720]
    0x00c1d510 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2052]
    0x00c1a850 JavaThread "Finalizer" daemon [_thread_blocked, id=3528]
    0x00c19370 JavaThread "Reference Handler" daemon [_thread_blocked, id=2528]
    =>0x00859630 JavaThread "main" [_thread_in_native, id=208]
    Other Threads:
    0x00c16b60 VMThread [id=4084]
    0x00c208b0 WatcherThread [id=3940]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 2880K, used 665K [0x0aa60000, 0x0ad80000, 0x0be10000)
    eden space 2560K, 13% used [0x0aa60000, 0x0aab7c78, 0x0ace0000)
    from space 320K, 98% used [0x0ace0000, 0x0ad2eac0, 0x0ad30000)
    to space 320K, 0% used [0x0ad30000, 0x0ad30000, 0x0ad80000)
    tenured generation total 37824K, used 13169K [0x0be10000, 0x0e300000, 0x1aa60000)
    the space 37824K, 34% used [0x0be10000, 0x0caec410, 0x0caec600, 0x0e300000)
    compacting perm gen total 22272K, used 22235K [0x1aa60000, 0x1c020000, 0x2aa60000)
    the space 22272K, 99% used [0x1aa60000, 0x1c016d40, 0x1c016e00, 0x1c020000)
    ro space 8192K, 66% used [0x2aa60000, 0x2afb7960, 0x2afb7a00, 0x2b260000)
    rw space 12288K, 46% used [0x2b260000, 0x2b7f43a8, 0x2b7f4400, 0x2be60000)
    Dynamic libraries:
    0x00400000 - 0x0040e000      C:\Documents and Settings\Administrator\Desktop\eclipse\eclipse.exe
    0x77f50000 - 0x77ff9000      C:\WINDOWS\System32\ntdll.dll
    0x77e60000 - 0x77f48000      C:\WINDOWS\system32\kernel32.dll
    0x77cc0000 - 0x77d4c000      C:\WINDOWS\system32\USER32.dll
    0x77c70000 - 0x77cb1000      C:\WINDOWS\system32\GDI32.dll
    0x77340000 - 0x773d4000      C:\WINDOWS\system32\COMCTL32.dll
    0x77da0000 - 0x77e35000      C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x78087000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c65000      C:\WINDOWS\system32\MSVCRT.dll
    0x72000000 - 0x72012000      C:\Documents and Settings\Administrator\Desktop\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.2.R331_v20071019\eclipse_1021.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x74720000 - 0x74765000      C:\WINDOWS\System32\MSCTF.dll
    0x605d0000 - 0x605d8000      C:\WINDOWS\System32\mslbui.dll
    0x77130000 - 0x771bd000      C:\WINDOWS\system32\OLEAUT32.DLL
    0x771c0000 - 0x772e6000      C:\WINDOWS\system32\ole32.dll
    0x6d640000 - 0x6d7c5000      C:\Program Files\Java\jdk1.5.0\jre\bin\client\jvm.dll
    0x76b40000 - 0x76b6c000      C:\WINDOWS\System32\WINMM.dll
    0x6d280000 - 0x6d288000      C:\Program Files\Java\jdk1.5.0\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\System32\PSAPI.DLL
    0x6d610000 - 0x6d61c000      C:\Program Files\Java\jdk1.5.0\jre\bin\verify.dll
    0x6d300000 - 0x6d31d000      C:\Program Files\Java\jdk1.5.0\jre\bin\java.dll
    0x6d630000 - 0x6d63f000      C:\Program Files\Java\jdk1.5.0\jre\bin\zip.dll
    0x6d4c0000 - 0x6d4d3000      C:\Program Files\Java\jdk1.5.0\jre\bin\net.dll
    0x71ab0000 - 0x71ac5000      C:\WINDOWS\System32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\System32\WS2HELP.dll
    0x6d4e0000 - 0x6d4e9000      C:\Program Files\Java\jdk1.5.0\jre\bin\nio.dll
    0x04620000 - 0x0466f000      C:\Documents and Settings\Administrator\Desktop\eclipse\configuration\org.eclipse.osgi\bundles\42\1\.cp\swt-win32-3347.dll
    0x71950000 - 0x71a35000      C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2055_x-ww_a7ce0fc0\COMCTL32.dll
    0x70a70000 - 0x70ab8000      C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f6000      C:\WINDOWS\system32\comdlg32.dll
    0x7c870000 - 0x7d05a000      C:\WINDOWS\system32\SHELL32.dll
    0x76390000 - 0x763ac000      C:\WINDOWS\System32\IMM32.dll
    0x72fa0000 - 0x73009000      C:\WINDOWS\System32\USP10.dll
    0x76200000 - 0x7629a000      C:\WINDOWS\system32\WININET.dll
    0x762c0000 - 0x76350000      C:\WINDOWS\system32\CRYPT32.dll
    0x762a0000 - 0x762b1000      C:\WINDOWS\system32\MSASN1.dll
    0x5ad70000 - 0x5ada2000      C:\WINDOWS\System32\UxTheme.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\System32\oleacc.dll
    0x55900000 - 0x55961000      C:\WINDOWS\System32\MSVCP60.dll
    0x04ad0000 - 0x04ae4000      C:\Documents and Settings\Administrator\Desktop\eclipse\configuration\org.eclipse.osgi\bundles\42\1\.cp\swt-gdip-win32-3347.dll
    0x04b10000 - 0x04ca3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2055_x-ww_51ae8f49\gdiplus.dll
    0x76fd0000 - 0x7707a000      C:\WINDOWS\System32\CLBCATQ.DLL
    0x05420000 - 0x054e5000      C:\WINDOWS\System32\COMRes.dll
    0x769c0000 - 0x76b11000      C:\WINDOWS\System32\shdocvw.dll
    0x76f90000 - 0x76fa0000      C:\WINDOWS\System32\Secur32.dll
    0x75f40000 - 0x75f60000      C:\WINDOWS\system32\appHelp.dll
    0x75e90000 - 0x75f3e000      C:\WINDOWS\System32\SXS.DLL
    0x7e080000 - 0x7e2c6000      C:\WINDOWS\System32\msi.dll
    0x75a70000 - 0x75b1d000      C:\WINDOWS\system32\USERENV.dll
    0x760f0000 - 0x76174000      C:\WINDOWS\system32\urlmon.dll
    0x71b20000 - 0x71b31000      C:\WINDOWS\system32\MPR.dll
    VM Arguments:
    jvm_args: -Xms40m -Xmx256m -XX:MaxPermSize=256m
    java_command: <unknown>
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0
    CLASSPATH=C:\Program Files\Java\jdk1.5.0\jre\lib\rt.jar
    PATH=C:\Program Files\Java\jdk1.5.0\bin\..\jre\bin\client;C:\Program Files\Java\jdk1.5.0\bin\..\jre\bin;C:\Program Files\Java\jdk1.5.0\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 1 Stepping 2, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2, v.2055
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 260592k(21664k free), swap 638832k(315144k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0-b64) for windows-x86, built on Sep 15 2004 03:00:31 by "java_re" with MS VC++ 6.0
    this is the error log I get while I try to execute Eclipse on clicking the Eclipse Icon could anyone suggest or advice on the same.

    Wrong forum.
    This is a forum for Star Office, not for Windows, nor Exclipse.
    You may need to find a new forum web site.
    http://www.google.com/search?hl=en&q=forum+install+exclipse&btnG=Google+Search

  • Error while running BPEL Process with Oracle Apps Adapter.

    Hi All,
    I am trying to configure the oracle apps adapter in JDeveloper.
    Here my EBS is running on different database where as SOA is installed on different database.
    I am able to properly configure the adapter & deploy the process to weblogic server.
    But when I am trying to run the process I am getting following errorr.
    <p>
    The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510\nJCA Resource Adapter location error.\nUnable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/>\nThe JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='*<JNDI Name passed in Oracle apps Adapter.>*'.\nThe reason for this is most likely that either \n 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or \n 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to <JNDI Name passed in Oracle apps Adapter.>
    </p>
    Please suggest the solution for the same.
    its really urgent . waiting for reply.
    Edited by: aumathe on Dec 16, 2010 2:33 PM

    Have you created a connection pool with the JNDI specified while configuring adapter in Oracle Apps adapter on weblogic admin console. You should create it at Deployments --> OracleAppsAdapter --> Configuration--> Outbound Connection pools
    Make sure to update the adapter after creating a connection pool so that changes can take effect.
    Regards,
    Anuj

  • Dynamic JNDI in FTP Adapter | jca.jndi property not picked by Adapter

    Hi,
    I am trying to pass jndi dynamically to FTP adapter using the steps mentioned in http://blogs.oracle.com/adapters/entry/changing_the_connection_factory_jndi_dynamically_in_ftp_adapter.
    I have configured FTP jndi(eis/Ftp/SoaFtpAdapter) at app server.
    And included the following property in the invoke activity that calls the FTP adapter
    <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>
    Invoke activity definition looks as following
        <invoke name="Invoke1"
                partnerLink="FTPFileListAdap" portType="ns3:FileListing_ptt"
                operation="FileListing"
                inputVariable="Invoke1_FileListing_InputVariable"
                outputVariable="Invoke1_FileListing_OutputVariable"
                bpelx:invokeAsDetail="no">
          <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.ftp.Directory" variable="directoryName"/>
          </bpelx:toProperties>   
        </invoke>FTP Adapter jca configuration is as following
    <adapter-config name="FTPFileListAdap" adapter="FTP Adapter" wsdlLocation="FTPFileListAdap.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
      <connection-factory location="eis/Ftp/SoaFtpAdapter12" UIincludeWildcard="*.txt"/>
      <endpoint-interaction portType="FileListing_ptt" operation="FileListing">
        <interaction-spec className="oracle.tip.adapter.ftp.outbound.FTPListInteractionSpec">
          <property name="PhysicalDirectory" value="/in/dev"/>
          <property name="Recursive" value="true"/>
          <property name="IncludeFiles" value=".*\.txt"/>
        </interaction-spec>
      </endpoint-interaction>
    </adapter-config>While calling the BPEL i am passing two parameters
    jndiLocation = eis/Ftp/SoaFtpAdapter
    and
    directoryName = /in/dev
    Following is the fault that I am getting while executing the BPEL.
    <fault>
    <bpelFault>
    <faultType>0</faultType>
    <bindingFault>
    <part  name="summary">
    <summary>Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'FileListing' failed due to: JCA Binding Component connection issue. JCA Binding Component is unable to create an outbound JCA (CCI) connection. RunTimeConfigFTP:FTPFileListAdap [ FileListing_ptt::FileListing(Empty,filelist) ] : The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510 JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/Ftp/SoaFtpAdapter12'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/Ftp/SoaFtpAdapter12. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server Please make sure that the JCA connection factory and any dependent connection factories have been configured with a sufficient limit for max connections. Please also make sure that the physical connection to the backend EIS is available and the backend itself is accepting connections. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. </summary>
    </part>
    <part  name="detail">
    <detail>JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/Ftp/SoaFtpAdapter12'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/Ftp/SoaFtpAdapter12. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server </detail>
    </part>
    <part  name="code">
    <code>12510</code>
    </part>
    </bindingFault>
    </bpelFault>
    </fault>It seems that FTP Adapter is not picking up the value from jca.jndi property.
    How to handle this situation.
    Thanks
    Ajay

    Hi,
    Since I am working on BPEL 2.0
    Following changes solved my problem.
    In the invoke activity, I replaced the following xml tag
          <bpelx:inputProperty name="jca.jndi" variable="jndiLocation"/>with following
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.jndi" variable="jndiLocation"/>
          </bpelx:toProperties> And now my invoke activity looks as follow.
        <invoke name="Invoke1"
                partnerLink="FTPFileListAdap" portType="ns3:FileListing_ptt"
                operation="FileListing"
                inputVariable="Invoke1_FileListing_InputVariable"
                outputVariable="Invoke1_FileListing_OutputVariable"
                bpelx:invokeAsDetail="no">
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.ftp.Directory" variable="directoryName"/>
          </bpelx:toProperties>   
          <bpelx:toProperties>
            <bpelx:toProperty name="jca.jndi" variable="jndiLocation"/>
          </bpelx:toProperties>      
        </invoke>Thanks
    Ajay

  • Eclipse error while debugging ! Its Urgent

    Hi All,
    I am trying to debug a java project using eclipse 3.1 and i am getting this internal error
    Source method signature could not be resolved Error org.eclipse.jdt.debug.ui
    org.eclipse.core.runtime.CoreException: Source method signature could not be resolved
    at org.eclipse.jdt.internal.debug.ui.actions.ToggleBreakpointAdapter.toggleMethodBreakpoints(ToggleBreakpointAdapter.java:296)
    at org.eclipse.jdt.internal.debug.ui.actions.BreakpointLocationVerifierJob.run(BreakpointLocationVerifierJob.java:163)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
    I am not able to set Line breakpoints...
    Can anybody help me ..Its urgent
    Message was edited by:
    Ajay_Java

    hi
    an error occurred when eclipse start or debugging
    the error is :
    !SESSION 2008-05-19 13:47:11.687 -----------------------------------------------
    eclipse.buildId=M20071023-1652
    java.version=1.5.0_15
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86
    !ENTRY org.eclipse.equinox.app 2008-05-19 13:47:12.578
    !MESSAGE Product org.eclipse.sdk.ide could not be found.
    !ENTRY org.eclipse.osgi 4 0 2008-05-19 13:47:12.593
    !MESSAGE Application error
    !STACK 1
    java.lang.RuntimeException: No application id has been found.
         at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:236)
         at org.eclipse.equinox.internal.app.EclipseAppContainer.start(EclipseAppContainer.java:98)
         at org.eclipse.equinox.internal.app.Activator.addingService(Activator.java:112)
         at org.osgi.util.tracker.ServiceTracker$Tracked.trackAdding(ServiceTracker.java:1064)
         at org.osgi.util.tracker.ServiceTracker$Tracked.trackInitialServices(ServiceTracker.java:926)
         at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:330)
         at org.osgi.util.tracker.ServiceTracker.open(ServiceTracker.java:274)
         at org.eclipse.equinox.internal.app.Activator.start(Activator.java:54)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:999)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:993)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:974)
         at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
         at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
         at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
         at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLazyStarter.java:111)
         at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:417)
         at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:189)
         at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:340)
         at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackage.java:37)
         at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java:405)
         at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
         at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
         at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:83)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at org.eclipse.core.internal.runtime.PlatformActivator.startAppContainer(PlatformActivator.java:47)
         at org.eclipse.core.internal.runtime.PlatformActivator.start(PlatformActivator.java:32)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:999)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:993)
         at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:974)
         at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
         at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:350)
         at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1118)
         at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:634)
         at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:508)
         at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:282)
         at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:468)
         at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:195)
         at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:297)
    !ENTRY org.eclipse.osgi 2 0 2008-05-19 13:47:12.703
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.703
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp_3.3.1.v20070823_33x.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp 2 0 2008-05-19 13:47:12.703
    !MESSAGE Missing required bundle org.apache.jasper_5.5.17.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.703
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper_1.0.1.R33x_v20070816.jar was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper 2 0 2008-05-19 13:47:12.703
    !MESSAGE Missing imported package org.apache.jasper.servlet_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.703
    !MESSAGE Bundle update@plugins/org.eclipse.help.base_3.3.1.v20070813_33x.jar was not resolved.
    !SUBENTRY 2 org.eclipse.help.base 2 0 2008-05-19 13:47:12.703
    !MESSAGE Missing required bundle org.apache.lucene.analysis_[1.9.1,2.0.0).
    !ENTRY org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.sdk_3.3.2.R33x_v20071022/ [20] was not resolved.
    !SUBENTRY 2 org.eclipse.sdk 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.help.ui_[3.2.0,4.0.0).
    !SUBENTRY 2 org.eclipse.sdk 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.help.base_[3.1.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.pde.ui_3.3.1.v20070912-0800.jar [25] was not resolved.
    !SUBENTRY 2 org.eclipse.pde.ui 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.apache.lucene.demo.html_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper.registry_1.0.0.v20070607.jar [27] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper.registry 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.equinox.jsp.jasper_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper_1.0.1.R33x_v20070816.jar [32] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.apache.jasper.servlet_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.tool_1.0.1.v_780_R33x.jar [53] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp_3.3.1.v20070823_33x.jar [57] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.help.base_[3.1.0,4.0.0).
    !SUBENTRY 2 org.eclipse.help.webapp 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.apache.jasper_5.5.17.
    !SUBENTRY 2 org.eclipse.help.webapp 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.equinox.jsp.jasper.registry_1.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.pde.ui.templates_3.3.0.v20070608-1300.jar [59] was not resolved.
    !SUBENTRY 2 org.eclipse.pde.ui.templates 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.pde.ui_[3.3.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.pluggable.core_1.0.1.R33x_v20070831-0435.jar [76] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.tool_0.0.0.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.dispatch_0.0.0.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.model_0.0.0.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.apt.util_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui_3.3.1.v20070726_33x.jar [86] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.eclipse.help.base_[3.3.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.apt_1.0.1.R33x_v20070831-0435.jar [129] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.apt 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing imported package org.eclipse.jdt.internal.compiler.tool_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2008-05-19 13:47:12.718
    !MESSAGE Bundle update@plugins/org.eclipse.help.base_3.3.1.v20070813_33x.jar [130] was not resolved.
    !SUBENTRY 2 org.eclipse.help.base 2 0 2008-05-19 13:47:12.718
    !MESSAGE Missing required bundle org.apache.lucene.analysis_[1.9.1,2.0.0).

  • Looking up an EJB in a foreign app server

    Hi,
    I am trying to look up an EJB in a foreign app server from within an EJB deployed
    in WLS 7.0.2. I have passed the name of the initialcontext factory with the -Djava.naming.factory.initial
    argument to the java command in the startWebLogic.cmd file. However WLS uses the
    weblogic.jndi.internal.WLContextImpl class to perform the lookup. Why is this
    happening, any ideas, advises?
    Thanks
    Sriram

    "sriram" <[email protected]> wrote:
    >
    Deepak, Thank you for the reply. Setting the weblogic.jndi.WLInitialContextFactory
    to my foreign app server's ContextFactory doesn't work. The WLS still
    uses weblogic.jndi.internal.WLContextImpl
    to do the lookup. Does any other propertes need to set as well to accomplish
    what I am doing
    Thanks
    Sriram
    "Deepak Vohra" <[email protected]> wrote:
    Specify the system property
    weblogic.jndi.WLInitialContextFactory=<initial context factory>
    "sriram" <[email protected]> wrote:
    Hi,
    I am trying to look up an EJB in a foreign app server from within an
    EJB deployed
    in WLS 7.0.2. I have passed the name of the initialcontext factory
    with
    the -Djava.naming.factory.initial
    argument to the java command in the startWebLogic.cmd file. HoweverWLS
    uses the
    weblogic.jndi.internal.WLContextImpl class to perform the lookup. Why
    is this
    happening, any ideas, advises?
    Thanks
    Sriram
    hi,
    Try the below code in the Lookup EJB
    Properties prop = new properties();
    /* For Weblogic */
    prop.put(Context.INITAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL,"t3://ipaddress:7001");
    /* For JBOSS */
    prop.put(Context.INITAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
    prop.put(Context.PROVIDER_URL,"jnp://ipaddress:7001");
    InitialContext prop = new InitialContext(prop);
    regards,
    Elango TR
    Elango TR
    Sip Technologies & Exports Ltd. Elnet Software City,Chennai
    http://www.siptech.co.in
    [email protected]

  • Error on opening Eclipse Indigo design studio

    Hi,
    I am receiving the below error when tried to open the Eclipse Indigo Design Studio for OSM 7.2.
    !ENTRY org.eclipse.osgi 4 0 2012-07-31 14:20:23.421
    !MESSAGE Application error
    !STACK 1
    java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.equinox.app.error, org.eclipse.equinox.p2.director, org.eclipse.equinox.p2.garbagecollector.application, org.eclipse.pde.junit.runtime.uitestapplication, org.eclipse.pde.junit.runtime.legacytestapplication, org.eclipse.pde.junit.runtime.coretestapplication, org.eclipse.pde.junit.runtime.coretestapplicationnonmain, org.eclipse.pde.junit.runtime.nonuithreadtestapplication, org.eclipse.update.core.standaloneUpdate, org.eclipse.update.core.siteOptimizer.
         at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248)
         at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
         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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    May I know the reason for this exception and the way to rectify it in order to use the indigo design studio?

    hi pratik
    is it windows or linux?
    check any of this solution works for you.
    try using executing with eclipse.exe -clean
    or
    conflict due to set of environment variable multiple times both in user & system
    Regards,
    Kaushal

Maybe you are looking for

  • Bug in the music browser?

    SITUATION: The ATV2 allows the user to browse by GENRE. The second choice in order narrow down the search will be ARTIST followed by ALBUM. In the ARTIST menu all artists are shown with tracks that match the initial genre choice. The user can either

  • ** Exception Throw in Fork Step - How to inform ?

    Hi Friends, Customer sends 2 IDoc DEBMAS, ADRMAS. The conditions is when both the IDocs is having the same customer no we need to send to the outside system.  (DEBMAS - E1KNA1M - KUNNR) equals to (ADRMAS - E1ADRMAS - OBJ_ID). I have designed BPM for

  • Installing 10.6.8 results in "unknown" error

    I am selling my late 2006 24" iMac. Since it has the overheating graphics card that some of you are familiar with, I want to have the software smc fan accelerator installed. At first I uninstalled everything I could and reinstalled the 10.6.8 combo,

  • GRN Date as Baseline Date

    Hi , Want system should capture GRN Posting Date as Base Line date while doing the MIRO. ( If payment term is 30 Days , then system shoulld calculate the 30 Days from GRN posting date ) Any Badi  will serve this purpose ( INVOICE_UPDATE ) Thanks in a

  • Unable to update Dreamweaver CC

    Each time I try to update DW the response is "update failed". Any suggestions?