Eclipse 3.1

hello there. I am using eclipse 3.1.Below is my code:
package com.acme.helloword;
import javacard.framework.APDU;
import javacard.framework.Applet;
import javacard.framework.ISO7816;
import javacard.framework.ISOException;
public class HelloWorldAppet extends Applet {
     // codes of CLA bytes in the command APDUs
     final static byte Helloword_CLA= (byte) 0xB0;
//     codes of INS bytes in the command APDUs
     final static byte VERIFY =(byte) 0x20;
     public static void install(byte[] bArray, short bOffset, byte bLength) {
          // GP-compliant JavaCard applet registration
          new HelloWorldAppet().register(bArray, (short) (bOffset + 1),
                    bArray[bOffset]);
     public void process(APDU apdu) {
          if (selectingApplet()) {
               return;
          byte[] buf = apdu.getBuffer();
          if(buf[ISO7816.OFFSET_CLA] !=Helloword_CLA )
               ISOException.throwIt(ISO7816.SW_CLA_NOT_SUPPORTED);
          switch (buf[ISO7816.OFFSET_INS]) {
          case VERIFY:               
               break;
          default:
               ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
when i am running this code in the simulation and send B020 i am getting 0x9000;
but when i am testing it in the card i am getting
jcshell: Error code: -6 (Card terminal error)
jcshell: Communication problems: The parameter is incorrect.
why i am getting this error?
Finally, can i get an ID number when i send B020?
Thank you

Hello ,
I have a problem same as your problem in eclipse 3.1 ,I have got this error :
"Error code: -6 (Card terminal error)
Communication problems: The parameter is incorrect."
do you find any solution for this problem.
Please inform me if it is possible for you.
Yours sincerely,
Orchid

Similar Messages

  • Eclipse Community Forums

    Hi,
    I have a problem using Xtext generated ecore files in both Eclipse and standalone Java. In a nutshell, Xtext generates relative ecore references which work fine in Eclipse for platform:/resource URIs which make it seem like all projects are siblings of each other, but break when loading resources via absolute file:/ URIs when projects are not physically situated in the same directory.
    For example, I have a few Xtext languages that import each other and refer to each other's elements. Xtext generates ecore files for these languages, and they wind up having relative references to each other. I have a com.mecha1.atom.model.query Xtext project whose language generates an AtomQuery.ecore with references to an imported AtomType.ecore that look like this:
    Quote:
    eType="ecore:EClass ../../../../../../../com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore#//EntityDecl"
    This works ok in Eclipse because the actual absolute URIs are platform:/resource based and all of the workspace projects are directly referenced via platform:/resource/<project>:
    Quote:
    platform:/resource/com.mecha1.atom.model.query/src-gen/com/mecha1/atom/model/query/AtomQuery.ecore
    platform:/resource/com.mecha1.atom.model.type/src/com/mecha1/atom/model/type/AtomType.ecore
    However on the filesystem these projects exist in different subdirectories:
    Quote:
    file:/Users/esp/Code/mecha1/Atom/atom/data/com.mecha1.atom.model.query/bin/com/mecha1/atom/model/query/AtomQuery.ecore
    file:/Users/esp/Code/mecha1/Atom/atom/core/com.mecha1.atom.model.type/bin/com/mecha1/atom/model/type/AtomType.ecore
    So when the relative path is used to navigate from one ecore model to the other they do not resolve correctly. The relative URIs will also break if resources are loaded from archive:/ URIs e.g. when loaded from classpath bundles via org.eclipse.xtext.mwe.Reader.
    Is there a strategy deal with this? For instance, is there a way to force Xtext to generate absolute URIs for cross references? Then at least I could use the EMF URI map to remap things depending on what context the models are being loaded in.
    Thanks,
    Edwin

    Edwin,
    Comments below.
    On 12/10/2012 9:09 AM, Edwin Park wrote:
    > Hi Ed,
    >
    > Thanks, this helped to put me on the right track.
    >
    > I also moved my ecore/genmodel files into a non-source 'model'
    > directory in my plugin according to your suggestion. This avoids the
    > files being duplicated in the bin dir as you said, but when I take
    > them out of the classpath like this, I can no longer reference them in
    > the Xtext editor.
    Yes, because it doesn't index them until they commit this patch I provided:
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=390411
    >
    > For example, I modified the default mydsl sample to include a
    > reference to an EClass in the greeting:
    >
    >
    > grammar org.xtext.example.mydsl.MyDsl with
    > org.eclipse.xtext.common.Terminals
    >
    > generate myDsl "http://www.xtext.org/example/mydsl/MyDsl"
    >
    > import "http://www.eclipse.org/emf/2002/Ecore" as ecore
    >
    > Model:
    > greetings+=Greeting*;
    >
    > Greeting:
    > 'Hello' eClass=[ecore::EClass|QualifiedName] '!';
    >
    > QualifiedName:
    > ID ('.' ID)*;
    >
    >
    > And I have a plugin com.mecha1.atom.mysql that looks like this:
    >
    > com.mecha1.atom.mysql/model/mysqlConfig.ecore
    > com.mecha1.atom.mysql/model/MysqlConfig.genmodel
    >
    > com.mecha1.atom.mysql/plugin.xml:
    >
    > <?xml version="1.0" encoding="UTF-8"?>
    > <?eclipse version="3.0"?>
    >
    > <!--
    > -->
    >
    > <plugin>
    >
    > <extension point="org.eclipse.emf.ecore.generated_package">
    > <package
    > uri="http://www.mecha1.com/atom/mysql/MysqlConfig"
    > class="com.mecha1.atom.mysql.mysqlConfig.MysqlConfigPackage"
    > genModel="model/MysqlConfig.genmodel"/>
    > </extension>
    >
    > </plugin>
    >
    >
    > com.mecha1.atom.mysql/build.properties:
    >
    > #
    >
    > bin.includes = .,\
    > META-INF/,\
    > plugin.xml,\
    > plugin.properties,\
    > model/
    > jars.compile.order = .
    > source.. = src/,\
    > src-gen/,\
    > xtend-gen/
    > output.. = bin/
    >
    >
    > When I launch a hosted Eclipse and create a .mydsl file in a plug-in
    > project with the com.mecha1.atom.mydsl plugin specified as a
    > dependency, the content assist for the eClass attribute does not show
    > anything. However if the ecore files are in the classpath of the
    > dependency plugin, the content assist will show them.
    Yes, that's the bug I referred to.
    >
    > Another thing I noticed is that if I include the org.eclipse.emf.ecore
    > plugin, the Xtext content assist will correctly show the contents of
    > the Ecore.ecore, which is also in a model directory in the plugin.
    But it's an actual deployed bundle so it's actually on the classpath but
    the PDE doesn't properly put the model folder on the classpath, only the
    bin folder.
    > Is there something else I need to do to get Xtext to recognize the
    > ecore file for cross reference scoping/content assist if the ecore is
    > not in the classpath?
    >
    > Thanks,
    > Edwin
    >
    >

  • OEPE causes Eclipse Kepler to start with wrong workspace, overrides Eclipse's workspace configuration

    I'm a new OEPE user, and found that after installing it, Eclipse (Kepler) now starts up with the wrong workspace every time. I have to explicitly do File > Switch Workspace... to get Eclipse to restart with the correct workspace. Also, the workspace I want to use is the only one listed in the Workspaces preferences panel (Window > Preferences > General > Startup and Shutdown > Workspaces). So I can't figure out why Eclipse is using the wrong workspace, and why it's even finding this wrong one.
    I found that many other users of OEPE with Kepler are having this same problem:
    Eclipse Community Forums: Eclipse Platform &amp;raquo; Kepler: On start up, I no longer get prompted for workspace locat…
    And this sounds curiously like this old problem reported right here on the OTN Community site:
    https://forums.oracle.com/thread/2191740
    Any suggestions for how to get around this? I assume this is a bug, but don't know the correct process for reporting OEPE bugs.

    77e559c0-cd28-48cd-916f-3f755e9683b5 wrote:
    Hi.
    I suspect that some action by the OEPE code somehow modifies the OSGi Cache so that it no longer asks you what workspace you'd like to use (and forces usage of the workspace in top user directory.)  I found that if you put in "-clean" in your eclipse.ini, then you get asked what workspace you'd like to use.  This flag clears out the OSGi cache (hence my theory that it is this cache that is messed up)
    That said, there are arguments for not doing this all the time.  See this discussion: java - How to run eclipse in clean mode? and what happens if we do so? - Stack Overflow
    Finally, I suspect you have another workspace on your system now.  Presuming you are on a PC, go to your user dir - I'd wager there is a "workspace" dir there now.  That is where OEPE wants to work.
    Good Luck!
    OEPE should be able to work with any workspace; it has in the past!  If a specific workspace is required with this release, that is a step backward in my opinion.  That said, if that is the direction of the product, so be it.  I find it hard to believe that is the direction of the product, however!

  • Exception-Error when excecuting JSP-File in Crystal reports for Eclipse

    Hi,
    I have created a jsp-File from an rpt-File in Crystal report for Eclipse. When I start the jsp-File on Apache Tomact 5.5 then only errors occurs.
    Coud anyone help me?
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 6 in the generated java file
    Only a type can be imported. com.crystaldecisions.report.web.viewer.CrystalReportViewer resolves to a package
    An error occurred at line: 7 in the generated java file
    Only a type can be imported. com.crystaldecisions.reports.sdk.ReportClientDocument resolves to a package
    An error occurred at line: 8 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.application.OpenReportOptions resolves to a package
    An error occurred at line: 9 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase resolves to a package
    An error occurred at line: 10 in the generated java file
    Only a type can be imported. com.crystaldecisions.sdk.occa.report.reportsource.IReportSource resolves to a package
    An error occurred at line: 13 in the jsp file: /Bericht1-viewer.jsp
    ReportClientDocument cannot be resolved to a type
    10:      try catch (ReportSDKExceptionBase e)
    60:      
    An error occurred at line: 58 in the jsp file: /Bericht1-viewer.jsp
    e cannot be resolved
    55:
    56:
    57:      } catch (ReportSDKExceptionBase e)
    60:      
    61: %>
    Stacktrace:
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:298)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.26 logs.
    Apache Tomcat/5.5.26
    Bericht1.jsp:
    <%@page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.reports.sdk.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"%><%
         // This sample code calls methods from the JRCHelperSample class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the JRCHelperSample class.
         try {
              String reportName = "Bericht1.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
                   // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                        // Create the CrystalReportViewer object
                        CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                        //     set the reportsource property of the viewer
                        IReportSource reportSource = clientDoc.getReportSource();                    
                        crystalReportPageViewer.setReportSource(reportSource);
                        // set viewer attributes
                        crystalReportPageViewer.setOwnPage(true);
                        crystalReportPageViewer.setOwnForm(true);
                        // Apply the viewer preference attributes
                        // Process the report
                        crystalReportPageViewer.processHttpRequest(request, response, application, null);
                   // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    Thanks
    Arnold

    According to the release notes, for the JRCHelperSample to compile, you must set the target runtime for the project.
    To do this, either create a project from scratch that uses the Tomcat 5.5 target runtime, or go to the properties menu and ensure that the target runtime is set to the application server you will be using.

  • Remote system JSP project not working in eclipse

    Hi
    I am developing a JSP project. My files are on a remote server and I want to configure it in Eclipse 3.3 with Lomboz. The problem is After adding the project it gives a warning that xml files can't be validated.The exact warning is
    The file cannot be validated as the XML Schema "\192.168.1.10\gunjan_share\workspace\Project1\WebContent\WEB-INF\web.xml (The system cannot find the path specified)" that is specified as describing the syntax of the file cannot be located.
    Due to this error JSP pages are not getting compiled.
    Plz help me
    Thanks

    Extracted from Note 1067696.1:
    You need to either adapt your code to remove the scriptlets in your JSP page,
    or you can use the following Java option to disable OJSP:
    -Dadfvdt.disableOjspDeployment=true
    You can add this option -Dadfvdt.disableOjspDeployment=true in your file "ide.conf" in the directory "<Middleware_Home>\jdeveloper\ide\bin"
    For your Production environment, you can have your Managed WLS ignoring the OJSP mode by adding the Java Option -Dadfvdt.disableOjspDeployment=true
    * in the "startManagedWebLogic" (if you want to limit it to a specific Managed Server)
    * or "setDomainEnv" (for all managed servers in a domain).

  • Error while running a Servlet program in Eclipse IDE

    Hi,
    I have tried running the following program in the Eclipse Editor. It doesnt compile. I have installed the Tomcat plugin too.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class HTTPGetServlet extends HttpServlet {
         public void doGet(HttpServletRequest request,
                   HttpServletResponse response)
         throws ServletException, IOException
              PrintWriter output;
              response.setContentTe("text/html");
              output=response.getWriter();
              StringBufer buf=new StringBuffer();
              buf.append("<HTML><HEAD><TITLE>\n");
              buf.append("A simple servlet example\n");
              buf.append("</TITLE></HEAD><BODY>");
              buf.append("<H1>Welcome to the world</H1>\n");
              buf.append("</BODY></HTML>");
              out.println(buf.toString());
              output.close();
    On a closer look i realized that the IDE is showing as error any import statements i type in. Can anyone help me get over this problem? Thanks a lot in advance.
    bye
    V

    You need to add the JAR containing the servlet API in the external JARs for the project.
    Regards,
    Carol.

  • Running a java program outside eclipse...!

    Hi guys...!
    I wrote a java program that uses different classes. The program deals with xml documents and creates a new xml document. The problem is, the program works fine in eclipse, but when I run through the command line in windows, it complains that it can't see the different classes that I created. Here is one of the error messages:
    Test.java:44:cannont find symbol
    symbol : class Circuit
    location : class src.Test
    Circuit cir = new Circuit ();
    Note: Test.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details
    Does anyone know how to resolve this...?
    Any help from you guys will be very appreciated.
    Thanks..

    I think the problem is probably something like this:
    You have a path thus:
    C:\blahblahblah\With a subdirectory thus:
    C:\blahblahblah\srcIn which you have declared classes thus:
    package src;
    public class Foo {
    }And you have then used a classpath something like the
    following:
    javac -classpath C:\blahblahblah\src Foo.javaThis is incorrect. Your classpath needs to point to
    the root of the package hierarchy. If it's like the
    above, it will look in C:\blahblahblah\src for a
    package src, which results in a path like
    C:\blahblahblah\src\src which does not exist.
    You should set it to:
    C:\blahblahblah\Where that is the root from which your packages
    stem.
    Dave.Thanks Dave. It works man. I really appreciate your help.

  • ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!

    I already posted this  article  in the motherboard thread but seems like this is the best place to post this
    ONE LAST HURRAH: Before saying Goodbye to my Beloved MSI Eclipse!!!
    Well it has been two months since I purchased this MSI Eclipse SLI board and while waiting for its bigger brother MSI Eclipse Plus, I would like to try out a new board from another manufacturer. Before I pass this board to its new owner, I decided to give it a little review to so that other people who will be upgrading to i7 platform will have some idea how good or how bad this board is.
    A few months ago and maybe until now, Eclipse is the flagship board of MSI in terms of i7 based motherboard. Its bigger brother MSI Eclipse Plus has already been sighted in some forums but no definite date yet on when it will be available in the market.
    The Box
    The size of the box was way bigger than my old P45 motherboards. It is actually almost 2x the size of the conventional ATX board box. 
    Upon opening the panel on the box, you will see a lot of information about the board! You will also see the added stuff from MSI like the Green Power Genie as well as the awesome Creative Xfi! Yes, a creative Xfi Extreme Audio PCIe sound card was included on the package.
    Upon opening the box, you will see a plastic container (I am assuming that this is anti-static) that contains the motherboard, DLED2, Green Power Genie and creative X-fi.
    There’s another box that contains a lot of stuff! MSI is as usual generous in giving their customers all the things the need to fully populate the board. This includes the  cables needed to populate all the sata and ide slots,  cross fire and SLI cable, additional USB bracket, ESATA bracket and the M connectors. All the manuals needed to setup the boards are also included.
    The Board and Layout:
    The board for me is pretty sexy!  It comes with a black PCB. The RAM slots and the other expansion slots are only blue and black in color which is a perfect combination for an intel based platform. The IOH and the ICH10R is actually covered by a copper heatsink with heatpipes connecting them. Well, personally I do not like this design since I do know that x58 generates a lot of heat. The VRMs also come with a copper heatsink but no heatpipe . As far as I understand from the box information, this is MSI’s split thermal design as well as protection from warping.
    MSI also provided 6 RAM slots and they come in blue and black sockets. Do yourself a favor by putting the ram in the black slots. I previously ran into problems of the system hanging in “ DDR ini “ and later found out from reading the manual and searching the web that the black slots should be populated first.
    The board came with 10 sata ports! 6 of them in 90 degrees are connected to the ICH10 and the 4 are actually by the jmicron chips attached to the board and also function as
    HW raid. Connect 2 HDD on sata 7 and 8 or sata 9 and 10, do some stuff in the BIOS and you are all set to run the system in raid 1 (mirror) or 0 (stripe). I have had no chance to test the raid 0 + 1 since I don’t have 4 identical drives.  It also comes with an IDE slot for your old parallel IDE HDD and/or ODD.
    The expansion slots come with 3 pci x16 slots, 2 pci and 2 pcie x1 which I believe is more than enough to suffice your daily needs. The bottom part of the board came with a power, reset and dled switch along with MSI’s OC jumper.
    The back panel is not that good looking. Well it’s the same back panel style of their P45 series board. It doesn’t matter anyway since it is at the back of the chassis and what concerns me the most is functionality. The board came with 8 usb ports at the back, 2  Gigabit lan, 2 esata ports, a 1394 connector, a cmos reset switch and the conventional PS/2 ports for mouse and keyboard.
    Bios and overclocking
    I  just captured the most important portion on the bios which is the Cell Menu. It is the overclocking tab on MSI’s BIOS
    Overclocking and Benchmarking Results
    Since I have not installed anything yet on my new board, I decided just to compare the stock and overclock result from this board.
    Below are the lists of components that I will be using
    Intel Core i7 920 2.66ghz  ( cooled by Thermalright HR 01 plus )
    MSI Eclipse SLI – Beta BIOS 1.45
    MSI 8800gtx (well a bit old but still reliable)
    Team Extreme ddr3 1600 @ 8-8-8-25 rated 1.65V
    Western digital Raptor 74gb 16MB cache
    I tried setting up this board one last time on my  DIY open system  using the components above. And Good thing that my ever energetic and reliable  assistant is always there to help … hahahaha
    SPI Stock and 4Ghz OC  Results
    Stock =  15.313s
    4Ghz = 10.405s
    PC Mark 05 Stock and 4 Ghz OC Result
    Stock = 9745
    4Ghz = 13136
    3DMark 05 Stock and  4Ghz OC results
    Stock = 13388
    4Ghz = 14289
    3DMark vantage Stock and 4Ghz OC Results
    Stock = 8160 ( 33530 on CPU score )
    4Ghz = 8315 ( 43567 CPU score )
    Aquamark Stock and Overclock
    Stock = 131812 ( 18685 CPU score )
    4Ghz =  179261 ( 23139 CPU score )
    I tried playing with bclock  since I have seen people in several forum saying that their boards( not specific to MSi eclipse ) / i7 proc cannot go above 200 or maybe just above 200 bclock. After doing some tweak I was able to get 215 bclock and the max I was able to get is 218,  All the test that had been done are just after vista installation. No tweaks done  on windows.
    SPI = 10.343 ( 19 x 215 )
    SPI = 10.030s (  19 x 218 )
    Wrap-up / Conclusion
    I really don’t want to let this board go but I don’t have extra budget to buy and try new boards from other manufacturer so that I can compare the result. So right now I am stuck with selling this just to buy another x58 board (of which I will try to post a mini review soon)
    I did encounter IOH temperature issue when I first bought this motherboard. IOH temperature is at 65C and this still goes up while running benchmarking tests. I made minor modifications on the board and as far as I know, it did not void the warranty. Below are the modifications that I have made:
    1.   Removed the violet thermal paste that MSI used and replaced it with Artic Silver 5.
    2.   Removed the plastic pushpin and replaced it with a bolt and plastic nut.
    3.   Added a 40mmfan that is just enough to take out the heat from the IOH
    Guess what, the temperature after these is just below 55C even under benchmarking (done during night time and I would expect that this will go to probably 60 degrees during daytime given the tropical climate in the Philippines).
    I was able to overclock my i920 at 3.6ghz without even adjusting anything on the voltages. Meaning they are at stock settings!  I managed to reach 4.0 ghz by simply adding 0.040v (around 1.29 Vcore only)
    Pros
    -   Easy to overclock board
    -   Supports both SLI and crossfire
    -   No issue on bigger after market cooling
    -   90 degrees placement of ICH10’s sata port
    -   Server grade VRM’s and Capacitors used
    -   Creative Xfi included
    Cons
    -   Only one SLI bridge included. It would have been better if a tri SLI connector was given by MSi.
    -   IOH temp an issue for my board.  Need to monitor and maybe try my modifications.
    -   Power/Reset/DLED Switches location will not be accessible if a 3rd video card is installed.
    Other thoughts
    -   It would have been better if the BIOS of the eclipse comes with nominal values on the Cell Menu. This is to serve as guide for the users if they are trying to alter the voltages.
    -   Maybe swap the ide and the sata 7 to 10 ports?  It is better looking if all 10 sata ports are on 90 degrees. It will also ensure that even if you use 2 or 3 video cards, it will not hit any of the sata 7-10 cables if you use them.

    I can see you got your use out of it.   I hope the new owner tortures it, too!

  • Eclipse indigo and weblogic 10.3- not able to download wl 10.3 to indigo

    Install new extension from eclipse indogo, it does not give option of weblogic 10.3. It gives
    BEA Weblogic Server v8.1
    BEA Weblogic Server v9.0
    BEA Weblogic Server v9.1
    BEA Weblogic Server v9.2
    BEA Weblogic Server v10.0
    It does not give
    BEA Weblogic Server v10.3
    How do I configure weblogic 10.3 to eclipse[indigo]?
    1.Change Eclipse memory settings by updating the properties of eclipse.ini file -Xmx768m -Xms256m
    2.Make sure this configuration (-Dsun.lang.ClassLoader.allowArraySyntax=true) is there, if not add it and save the file.
    3.Make sure you have configured your Weblogic server in "Development" mode. If node done, please change the configuration.
    4.Start Eclipse
    5.Go to Window -> Preferences -> Server -> Installed Runtimes -> Add
    6.In the dialog "New Server Runtime", there is a link "Download additional server adapters". Click it, and Eclipse will search on the Internet for additional server adapters. When it's done, select “Oracle Web Logic Server Tools” (or more appropriate one, if you get one) and install it.
    7.Alternate to step 5, you can add http://download.oracle.com/otn_software/oepe/galileo as updated site in Eclipse and install the Eclipse pack from Oracle.
    8.Restart your Eclipse after installation.
    9.Open server view as Window ->Open View -> Others -> Server ->Servers
    10.Right click on the pane, and select new server
    11.In the next screen, select your JRE e.g. JRE 1.5 and Weblogic installation directory e.g. C:\bea\weblogic.
    12.Click next
    13.In next screen, provide the Weblogic domain directory e.g. C:\bea\weblogic\myprojects\domains\mydomain, provide the Weblogic port e.g. 7001 and user id/password for the Weblogic server.
    14.Click finish.
    15.Double click on the server; it will open server details in the editor. Make sure publish automatically check box is check. If not checked, check it, save and close it.
    16.At this point, you can see Weblogic server listed in server pane.
    17.You can right click the server and add/remove projects from your workspace to this server.

    No it's different. It's different script.
    I got the below response from Oracle support, and I'm trying to see where this Servers tab is. I see a servers tab in preference, but I don't think that's what they mean because there's no domain item.. Any idea?
    Basically, OEPE connects to weblogic domain through admin server. When you create a new server in OEPE, you only choose domain instead of individual servers, and that server created maps to domain's admin server.
    If you want to deploy the application developed in OEPE to managed servers or cluster, you could try the following:
    1) browse to Servers tab
    2) right click on the domain
    3) choose 'Properties'
    4) choose 'WebLogic' -> 'Publishing' -> 'Advanced'
    5) move disired target from left to right

  • Eclipse loses installed software after update. How to manage?

    Whenever eclipse gets updated with `pacman -Syu` I lose all my installed software. As you can imagine, this is really annoying because when I start eclipse there are zombie buttons in the UI that no longer do anything because those plugins aren't installed anymore (at least not from eclipse's point of view). I'm assuming those buttons appear in the UI due to some eclipse-auto-generated configs that remain in my workspace. Is there a way to upgrade and *not* lose installed software? (I'm talking about software installed using update sites within eclipse)
    EDIT: The only way that I know how to solve the problem is to remove the .metadata folder from my workspace then recreate my perspective layout from scratch, redo all my settings in preferences, and reinstall all the plugins I want. That's obviously not something I want to keep doing every time eclipse gets updated.
    EDIT: After reinstalling Spring MVC plugins eclipse crashes after startup. I tried downgrading to the previous version of eclipse from pacman's cache, reinstalled Spring MVC, and now it's still crashing.
    Last edited by trusktr (2014-03-10 05:50:42)

    take back date setting to two-three days past
    power off
    power on
    open Settings-Game Center
    sign in
    correct date settings

  • Eclipse +flex 3 plugin crashes when trying to see mxml file in design mode

    Hi,
    I have strange problem I've been struggling with for 3 days.
    I have eclipse-jee-europa-fall2-win32(eclipse europa 3.3.1.1)
    + adobe flex 3 eclipse plugin.
    My workspace consists of several projects + one library.
    There is not problem when trying to edit any mxml file when
    my library is not imported yet. Once I import it to my workspace I
    cannot see any mxml file in design mode since it crashes with the
    following msg in log:
    Did anyone have similar problem and maybe knows the
    solutiuon? I've reinstalled/redownoaded eclipse, flex plugin, flash
    players and so on. What's more it happens only on my machine - same
    project on different one works without crushing.
    !ENTRY org.eclipse.osgi 2 0 2008-02-22 09:13:18.046
    !MESSAGE While loading class
    "org.eclipse.mylyn.tasks.ui.TasksUiPlugin", thread
    "Thread[main,6,main]" timed out waiting (5000ms) for thread
    "Thread[Worker-0,5,main]" to finish starting bundle
    "update@plugins/org.eclipse.mylyn.tasks.ui_2.1.0.v20070927-0900.jar
    [313]". To avoid deadlock, thread "Thread[main,6,main]" is
    proceeding but "org.eclipse.mylyn.tasks.ui.TasksUiPlugin" may not
    be fully initialized.
    !STACK 0
    org.osgi.framework.BundleException: State change in progress
    for bundle
    "update@plugins/org.eclipse.mylyn.tasks.ui_2.1.0.v20070927-0900.jar"
    by thread "Worker-0".
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.j ava:1141)
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:258)
    at
    org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at
    org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
    at
    org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.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.jav a:83)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at
    org.eclipse.mylyn.context.ui.ContextUiPlugin$5.run(ContextUiPlugin.java:258)
    at
    org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at
    org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
    at
    org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
    at
    org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
    at
    org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
    at
    org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
    at
    org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    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:508)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by:
    org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException
    ... 40 more
    Root exception:
    org.eclipse.osgi.framework.internal.core.AbstractBundle$BundleStatusException
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.beginStateChange(AbstractBundle.j ava:1141)
    at
    org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:258)
    at
    org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
    at
    org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
    at
    org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
    at
    org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
    at
    org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.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.jav a:83)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at
    org.eclipse.mylyn.context.ui.ContextUiPlugin$5.run(ContextUiPlugin.java:258)
    at
    org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at
    org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
    at
    org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
    at
    org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
    at
    org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
    at
    org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
    at
    org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    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:508)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)
    !ENTRY org.eclipse.help 4 0 2008-02-22 09:18:14.375
    !MESSAGE Required attribute "label" missing from "topic"
    element in "/com.adobe.flexbuilder.help/tocAPI.xml" (skipping
    element)

    I've found solution by myself so I'll present it here. Maybe
    someone will need it.
    The problem of such behaviour was that Flex plugin always (at
    least on my pc) wants to ustart eclipse using its own JRE from here
    C:\Program Files\Adobe\Flex Builder 3 Plug-in\jre (default dir).
    This environment is Java 5. When you go to
    eclipse>window>preferences>Java>Installed JREs and you
    delete default Flex JRE, add new to point to for example C:\Program
    Files\Java\jre1.6.0_04 eclipse still uses JRE from C:\Program
    Files\Adobe\Flex Builder 3 Plug-in\jre. Do not know why
    Flex/eclipse does that but if you simply overwrite C:\Program
    Files\Adobe\Flex Builder 3 Plug-in\jre files with newer JRE from
    C:\Program Files\Java\jre1.6.0_04 all works perfectly.
    Hope it helps somebody ;-)
    thanks Artur

  • [Eclipse&JBoss] JBoss doesn't start

    Hi there.
    I encountered a problem in starting JBoss with Eclipse. The strange thing is that I have the same configuration on my laptop and it works. On this second computer it doesn't work and I can't understand why.
    Here my configuration:
    - Eclipse Galileo
    - JDK 1.6
    - JBoss 5.0.0 for jdk6
    I inserted JBoss as a server in Eclipse and then I launched my Enterprise Application in there. The server starts correctly, in more or less 20 seconds. Then I find in the console something like:
    +22:32:07,937 INFO [ServerImpl] JBoss (Microcontainer) [5.0.0.GA (build: SVNTag=JBoss_5_0_0_GA date=200812042120)] Started in 23s:111ms+
    It could make me think that JBoss actually started, because there aren't errors. But Eclipse doesn't recognise it, and the bar in the right corner says "Starting JBoss..." since it goes in timeout.
    I found a post in this forum that says to change the timeout, or to replace JBoss with a new copy, or to do the same thing with Eclipse. I have done all these things, pushing the timeout to 1000 seconds, deleting the JBoss folder and replacing it, and deleting the Eclipse folder (but not the workspace). Still getting the same error. And I can't understand why.
    It's weird because I would expect to find an error in the console, but it's error free...
    Could anyone help me? I would be very very grateful!!
    Thank you for your attention.
    Eleanore
    Edited by: Eleanore on May 31, 2010 2:06 PM

    you may want to install jboss-tools.
    [http://www.jboss.org/tools|http://www.jboss.org/tools]
    Among a pile of other helper plugins, it has JbossAS tools. Using the server runtime setup from JBoss Tools, I've never had any problems with any version of JBoss.
    btw: Jboss 5.0 was fairly broken; I would consider upgrading to JBoss 5.1-jdk6 which is far more stable.

  • WorkSpace Studio as eclipse plugin

    I found a problem when my workspace studio installation is starting, and i found that the error is related to some bug on eclipse 3.2.
    The solution is easy. I have to replace or downgrade the version of the xulrunner library, but after doing that firefox does not start since it's built with the other version. I thought wlp 10.3 uses a newer version of eclipse but i think i'm wrong since the probelm persists.... so the question is ... is there any package of workspace studio as a plugin for an existing eclipse installation?
    andi if so, where can I download it?

    I have the same problem as mentioned above. If anybody knows
    solution for it then please tell me.

  • Eclipse blank grey dialogue box on startup, fixed with rm of workspace

    Hello,
    I wanted to get coding today, but.... eclipse isn't starting up like it usually does. The splash screen pops up, it asks where I want my workspace folder, and then a small grey dialogue box pops up. It will never exit on it's own, pressing close does nothing, I have to kill it.
    I tried running eclipse in a terminal in the hope it complained about a library error or something, but it's silent, it doesn't say anything back to me when run in a terminal. I'm not sure what other info to give you. It was working yesterday, and today it's not opening. I just shut down my computer after that day and started it up the next and it didn't work. So I removed the .eclipse folder in the hope that would clear some temporary data that was causing it, nothing.
    I eventually moved my workspace and let it start fresh, it worked. Unfortunately, I need those files. Can I import the folder to fix this issue? How can I?

    thurisaz wrote:
    I'm experiencing the same problem. Additionally the whole update configuration seems to be damaged. There are no update sites listed anymore (I had quite many).
    Furthermore I'm having some other problems (Eclipse icon seems to be missing, Saros plug-in and Gnome Battery Applet doesn't work anymore, no wallpaper on desktop) which all appeard after my update yesterday. Eclipse was updated too.
    The following error messages are displayed when I start eclipse via terminal:
    (Eclipse:8741): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_width: assertion `GDK_IS_PIXBUF (pixbuf)' failed
    (Eclipse:8741): GdkPixbuf-CRITICAL **: gdk_pixbuf_get_height: assertion `GDK_IS_PIXBUF (pixbuf)' failed
    (Eclipse:8741): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `width > 0' failed
    gdk-pixbuf2 was updated too.
    In the update log I found this message regarding gdk-pixbuf2:
    [2011-06-30 22:58] g_module_open() failed for /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so: /lib/libc.so.6: version `GLIBC_2.14' not found (required by /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so)
    (more error messages follow which name the other libpixbufloader-*.so libraries.)
    I can't open images anymore because the programs can not recognize the image format.
    Therefore this seems to be a problem with gdk-pixbuf2. At least for me. Don't know how to fix this. Will try to downgrade gdk-pixbuf2. Will post results.
    EDIT: Yup, that did the trick. At least for all the image related stuff. Eclipse starts fine now, I can see the wallpaper and the battery applet is working now.
    Eclipse plug-ins are still messed-up but that's worth a separate topic.
    EDIT2: I still can't figure out how that gdk-pixbuf stuff could make eclipse "forget" about the workspace.
    Do you know what version last worked? How should I downgrade?

  • Eclipse Won't Start (Windows 7)

    I am a newbie, and please pardon my lack of terminology.
    I had a wonderful install of Eclipse working, with remote access to files on my Linux home server on my home network. It was working absolutely wonderfully! All I wanted to do was to create another workspace, so I can set it up for other "outside-the-box" stuff as my wife calls it. Using the same Eclipse for what I was already doing AND cross-compiling for the beaglebone black's ARM processor.
    So the last working options I had was to copy the workspace. I figured the original would be safe, and I can tweak the copy. I clicked OK....
    And now, after seeing issues with the existing workspace LOCKED, and I never found the copy, I deleted the .lock file, rebooted, and tried again by double clicking the Eclipse.exe file. Nothing.
    I noticed that the Eclipse process is running, but the IDE does not open at all, even after a reboot. What the hell did I do? I just followed prompts and now my Eclipse install is hosed?
    I suspect the issue is in the workspace but have no idea what to fix to get back to what I was doing right.
    It's stuff like this with eclipse that has me having several subdirectories of different versions (installs) of eclipse. I have so many all over my Windows system already. Afraid to delete any of them because that particular subdirectory of eclipse worked for whatever targeted system I was going after.
    I'm sorry if I was too vague. What is worse is that I actually had a working cross compiler set up in VMWARE using eclipse for the Raspberry Pi, but other ideas and tasks take over my time, and it has been a long time since I visited that virtual Debian install.
    I'm just not skilled enough to handle these issues. I'm sorry for the newb question. How can I get back to where I was before I went exploring with trying to create another workspace?
    Thank you so much for your time!!!

    On 07/04/2015 11:39 PM, Gary Rubin wrote:
    > I am a newbie, and please pardon my lack of terminology.
    > I had a wonderful install of Eclipse working, with remote access to
    > files on my Linux home server on my home network. It was working
    > absolutely wonderfully! All I wanted to do was to create another
    > workspace, so I can set it up for other "outside-the-box" stuff as my
    > wife calls it. Using the same Eclipse for what I was already doing AND
    > cross-compiling for the beaglebone black's ARM processor.
    >
    > So the last working options I had was to copy the workspace. I figured
    > the original would be safe, and I can tweak the copy. I clicked OK....
    >
    > And now, after seeing issues with the existing workspace LOCKED, and I
    > never found the copy, I deleted the .lock file, rebooted, and tried
    > again by double clicking the Eclipse.exe file. Nothing.
    >
    > I noticed that the Eclipse process is running, but the IDE does not open
    > at all, even after a reboot. What the hell did I do? I just followed
    > prompts and now my Eclipse install is hosed?
    >
    > I suspect the issue is in the workspace but have no idea what to fix to
    > get back to what I was doing right.
    >
    > It's stuff like this with eclipse that has me having several
    > subdirectories of different versions (installs) of eclipse. I have so
    > many all over my Windows system already. Afraid to delete any of them
    > because that particular subdirectory of eclipse worked for whatever
    > targeted system I was going after.
    >
    > I'm sorry if I was too vague. What is worse is that I actually had a
    > working cross compiler set up in VMWARE using eclipse for the Raspberry
    > Pi, but other ideas and tasks take over my time, and it has been a long
    > time since I visited that virtual Debian install.
    > I'm just not skilled enough to handle these issues. I'm sorry for the
    > newb question. How can I get back to where I was before I went exploring
    > with trying to create another workspace?
    >
    > Thank you so much for your time!!!
    Having multiple installations of Eclipse and/or Eclipse versions to
    safeguard against disaster is probably more confusing than helpful to
    you. I assure you that, for the most part, all the trouble you have with
    one version of Eclipse, you'll have with any of the others. Multiple
    versions is just masking the real problem which is...
    You're probably right about the workspace being the base of the problem.
    Unfortunately, the only really concrete clue you give here is that you
    "cop[ied] the workspace."
    Workspaces aren't really portable, especially not from machine to
    machine (if that's what you were doing--unclear).
    I would make a few suggestions.
    1) Don't put your project sources inside the workspace filesystem--what
    the project creation wizards call the "default" location. Keep the
    projects separately somewhere in your filesystem and, for best practice,
    in version-control software like Git at Bitbucket, GitHub, etc. That
    way, you can import them into a workspace on multiple computer hosts.
    2) Don't copy any workspace; create new one(s) and import these
    independent source projects you set up in #1 above into your new workspace.
    3) If your IDE doesn't open, consult the sticky post at the top of this
    forum on launching Eclipse.
    4) When you post a question in a forum, keep it simple. It might take
    you more posts to get to the complete answer, but you're more likely to
    get there asking for help on a single, well stated issue than spraying
    it all at once pêle-mêle into a single post. Reduce the number of
    variables you ask folk to juggle in answering you.
    Hope this helps.

  • Eclipse Kepler Crashed On Jrockit

    Eclipse Kepler often crashed. below is the dump. Any solution or workaround? Thanks
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 01:34:00 on Thu Dec 26 14:54:28 2013
        *  If you see this dump, please go to                                    *
        *  http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html  *
        *  for troubleshooting information.                                      *
    Additional information is available in:
      /home/qianjia/jrockit.13580.dump
    No snapshot file (core dump) will be created because core dumps have been
    disabled. To enable core dumping, try "ulimit -c unlimited"
    before starting JRockit again.
    Error Message: Illegal memory access. [54]
    Signal info  : si_signo=11, si_code=2 si_addr=0x7f5788df4ff8
    Version      : Oracle JRockit(R) R28.2.5-20-152429-1.6.0_37-20120927-1915-linux-x86_64
    CPU          : Intel  (HT) SSE SSE2 SSE3 SSSE3 SSE4.1 SSE4.2 Intel64
    Number CPUs  : 4
    Tot Phys Mem : 8163487744 (7785 MB)
    OS version   : wheezy/sid
    Linux version 3.8.0-34-generic (buildd@roseapple) (gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1) ) #49-Ubuntu SMP Tue Nov 12 18:00:10 UTC 2013 (x86_64)
    Thread System: Linux NPTL
    LibC release : 2.17-stable
    Java locking : Lazy unlocking enabled (class banning) (transfer banning)
    State        : JVM is running
    Command Line : -Dosgi.requiredJavaVersion=1.6 -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xss2m -XX:+CheckStacks -Dsun.java.command=/home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar -data /home/qianjia/workspace-schools/workspace-chongke -os linux -ws gtk -arch x86_64 -showsplash /home/qianjia/eclipse-kelper//plugins/org.eclipse.platform_4.3.1.v20130911-1000/splash.bmp -launcher /home/qianjia/eclipse-kelper/eclipse -name Eclipse --launcher.library /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20130807-1835/eclipse_1506.so -startup /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.appendVmargs -exitdata 12d000f -product org.eclipse.epp.package.jee.product -vm /usr/lib/jvm/java-6/bin/java -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xss2m -XX:+CheckStacks -jar /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar -Dsun.java.launcher=SUN_STANDARD /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar -data /home/qianjia/workspace-schools/workspace-chongke -os linux -ws gtk -arch x86_64 -showsplash /home/qianjia/eclipse-kelper//plugins/org.eclipse.platform_4.3.1.v20130911-1000/splash.bmp -launcher /home/qianjia/eclipse-kelper/eclipse -name Eclipse --launcher.library /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20130807-1835/eclipse_1506.so -startup /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.appendVmargs -exitdata 12d000f -product org.eclipse.epp.package.jee.product -vm /usr/lib/jvm/java-6/bin/java -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xss2m -XX:+CheckStacks -jar /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
    Repository   :
    java.home    : /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre
    j.class.path : /home/qianjia/eclipse-kelper//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
    j.lib.path   : /usr/java/packages/lib/amd64:/usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/jrockit:/usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64:/usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/../lib/amd64
    JAVA_HOME    : <not set>
    _JAVA_OPTIONS: <not set>
    LD_LIBRARY_PATH: /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/jrockit:/usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64:/usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/../lib/amd64
    LD_ASSUME_KERNEL: <not set>
    LD_PRELOAD   : <not set>
    StackOverFlow: 1 StackOverFlowError has occured
    OutOfMemory  : 0 OutOfMemoryErrors have occured
    C Heap       : Good; no memory allocations have failed
    GC Strategy  : Mode: throughput, with strategy: genparpar (basic strategy: genparpar)
    GC Status    : OC is not running. Last finished OC was OC#37.
                 : YC is not running. Last finished YC was YC#68.
    YC Promotion : Last YC successfully promoted all objects
    YC History   : Ran 1 YCs before OC#33.
                 : Ran 1 YCs before OC#34.
                 : Ran 1 YCs before OC#35.
                 : Ran 1 YCs before OC#36.
                 : Ran 1 YCs before OC#37.
                 : Ran 0 YCs since last OC.
    Heap         : 0xc0000000 - 0xe0000000  (Size: 512 MB)
    Compaction   : (no compaction area)
    Allocation   : TLA-min: 2048, TLA-preferred: 65536 TLA-waste limit: 2048
    NurseryList  : 0xc5c5c700 - 0xd1fbbef8
    KeepArea     : 0xcecd8290 - 0xd1fbbef8
    KA Markers   : [ 0xcbc91cc8,  0xcecd8290 , 0xd1fbbef8 ]
    Forbidden A  : (none)
    Previous KA  : 0xce694e98 - 0xd18c7128
    Previous FA  : (none)
    CompRefs     : References are compressed, with heap base 0x0 and shift 0.
    Registers (from ThreadContext: 0x7f5788df4bc0:
      rax = 0000000000000000   rcx = 0000000000000080
      rdx = 000000000000001f   rbx = 00007f5788df5660
      rsp = 00007f5788df5000   rbp = 00007f5788df5650
      rsi = 00007f570af3f988   rdi = 00007f5788df5660
       r8 = 000000000000000b    r9 = 0000000000000064
      r10 = 0000000000000007   r11 = 00007f5784000078
      r12 = 00007f570af3f988   r13 = 000000000000001f
      r14 = 00007f5788df5888   r15 = 00000000ffffffff
       cs = 0000000000000033    fs = 0000000600000000
       gs = 0006000000000000
      rip = 00007f5789f8ba17 flags = 0000000000000202
    Loaded modules:
    (* denotes the module where the exception occured)
    0000000000400000-00000000004128a3  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/bin/java
    00007fffcf56f000-00007fffcf56fd9c  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/bin/java
    00007f578a4f5000-00007f578a4f7067  /lib/x86_64-linux-gnu/libdl.so.2
    00007f578a2d8000-00007f578a2ef127  /lib/x86_64-linux-gnu/libpthread.so.0
    00007f5789f0f000-00007f578a0cd1a7 */lib/x86_64-linux-gnu/libc.so.6
    00007f578a6f9000-00007f578a71b4ef  /lib64/ld-linux-x86-64.so.2
    00007f578992d000-00007f5789c34f33  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/jrockit/libjvm.so
    00007f578970b000-00007f578972a21b  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libjrosal.so
    00007f57894fe000-00007f578950a553  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libjrutil.so
    00007f57891f9000-00007f57892fbdd3  /lib/x86_64-linux-gnu/libm.so.6
    00007f5788ff1000-00007f5788ff7963  /lib/x86_64-linux-gnu/librt.so.1
    00007f5788be7000-00007f5788beed4b  /lib/x86_64-linux-gnu/libnss_compat.so.2
    00007f57889cd000-00007f57889e35e7  /lib/x86_64-linux-gnu/libnsl.so.1
    00007f57887c1000-00007f57887cb053  /lib/x86_64-linux-gnu/libnss_nis.so.2
    00007f57885b4000-00007f57885bf4cb  /lib/x86_64-linux-gnu/libnss_files.so.2
    00007f57883a5000-00007f57883b12b3  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libjfr.so
    00007f5788016000-00007f5788022317  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libverify.so
    00007f5741ecf000-00007f5741ef7283  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libjava.so
    00007f5741d44000-00007f5741d4a5bf  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/native_threads/libhpi.so
    00007f5740bf7000-00007f5740c04c03  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libzip.so
    00007f570bdef000-00007f570bdfdd73  /home/qianjia/eclipse-kelper/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20130807-1835/eclipse_1506.so
    00007f570bb20000-00007f570bbcc30b  /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0
    00007f570b913000-00007f570b91de8b  /usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0
    00007f570b6c8000-00007f570b70fd1b  /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0
    00007f570b4a8000-00007f570b4c5ba3  /usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0
    00007f570b14e000-00007f570b2a0853  /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0
    00007f570aeff000-00007f570af4b57b  /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
    00007f570ac03000-00007f570acfbceb  /lib/x86_64-linux-gnu/libglib-2.0.so.0
    00007f570a9c9000-00007f570a9fff03  /usr/lib/x86_64-linux-gnu/libfontconfig.so.1
    00007f570a7bf000-00007f570a7c78c3  /usr/lib/x86_64-linux-gnu/libXrender.so.1
    00007f570a5bc000-00007f570a5bd6fb  /usr/lib/x86_64-linux-gnu/libXinerama.so.1
    00007f570a3ac000-00007f570a3b9d7b  /usr/lib/x86_64-linux-gnu/libXi.so.6
    00007f570a1a2000-00007f570a1aa683  /usr/lib/x86_64-linux-gnu/libXrandr.so.2
    00007f5709f97000-00007f5709f9fe8b  /usr/lib/x86_64-linux-gnu/libXcursor.so.1
    00007f5709d94000-00007f5709d95a7b  /usr/lib/x86_64-linux-gnu/libXcomposite.so.1
    00007f5709b91000-00007f5709b9282b  /usr/lib/x86_64-linux-gnu/libXdamage.so.1
    00007f570998b000-00007f570998fb13  /usr/lib/x86_64-linux-gnu/libXfixes.so.3
    00007f5709687000-00007f5709784ff3  /usr/lib/x86_64-linux-gnu/libcairo.so.2
    00007f570934d000-00007f5709480863  /usr/lib/x86_64-linux-gnu/libX11.so.6
    00007f570913b000-00007f570914b0e3  /usr/lib/x86_64-linux-gnu/libXext.so.6
    00007f5708f27000-00007f5708f3938b  /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0
    00007f5708c8a000-00007f5708d20423  /usr/lib/x86_64-linux-gnu/libfreetype.so.6
    00007f5708a86000-00007f5708a8847b  /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0
    00007f570886f000-00007f5708884bdb  /lib/x86_64-linux-gnu/libz.so.1
    00007f5708650000-00007f570866c703  /lib/x86_64-linux-gnu/libselinux.so.1
    00007f5708436000-00007f570844b80f  /lib/x86_64-linux-gnu/libresolv.so.2
    00007f570822e000-00007f57082348f3  /usr/lib/x86_64-linux-gnu/libffi.so.6
    00007f5707fef000-00007f570802bc5b  /lib/x86_64-linux-gnu/libpcre.so.3
    00007f5707dc6000-00007f5707debd1b  /lib/x86_64-linux-gnu/libexpat.so.1
    00007f5707b2e000-00007f5707bbdeb3  /usr/lib/x86_64-linux-gnu/libpixman-1.so.0
    00007f5707908000-00007f570792c6bb  /lib/x86_64-linux-gnu/libpng12.so.0
    00007f5707705000-00007f5707706483  /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0
    00007f57074fb000-00007f57075026ab  /usr/lib/x86_64-linux-gnu/libxcb-render.so.0
    00007f57072dd000-00007f57072f9963  /usr/lib/x86_64-linux-gnu/libxcb.so.1
    00007f5707046000-00007f57070da40b  /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0
    00007f5706e42000-00007f5706e43ed3  /usr/lib/x86_64-linux-gnu/libXau.so.6
    00007f5706c3c000-00007f5706c405f3  /usr/lib/x86_64-linux-gnu/libXdmcp.so.6
    00007f5706a07000-00007f5706a386fb  /usr/lib/x86_64-linux-gnu/libicule.so.48
    00007f570669c000-00007f57067f1462  /usr/lib/x86_64-linux-gnu/libicuuc.so.48
    00007f5706399000-00007f570647d545  /usr/lib/x86_64-linux-gnu/libstdc++.so.6
    00007f5706183000-00007f5706196fbb  /lib/x86_64-linux-gnu/libgcc_s.so.1
    00007f5704e13000-00007f5705f81383  /usr/lib/x86_64-linux-gnu/libicudata.so.48
    00007f57047da000-00007f5704c0681b  /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
    00007f57045b8000-00007f57045d716b  /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0
    00007f5704382000-00007f5704392923  /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/liboverlay-scrollbar.so
    00007f5704151000-00007f570417f9cb  /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libmurrine.so
    00007f5703f4b000-00007f5703f4f933  /usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so
    00007f5703d46000-00007f5703d49753  /usr/lib/x86_64-linux-gnu/libcanberra-gtk.so.0
    00007f5703b36000-00007f5703b4476b  /usr/lib/x86_64-linux-gnu/libcanberra.so.0
    00007f570392e000-00007f5703934b3b  /usr/lib/x86_64-linux-gnu/libvorbisfile.so.3
    00007f570371c000-00007f570372bfeb  /usr/lib/x86_64-linux-gnu/libtdb.so.1
    00007f5703512000-00007f570351a2bb  /usr/lib/x86_64-linux-gnu/libltdl.so.7
    00007f57032e5000-00007f570330fea3  /usr/lib/x86_64-linux-gnu/libvorbis.so.0
    00007f57030de000-00007f57030e37b3  /usr/lib/x86_64-linux-gnu/libogg.so.0
    00007f5702e8c000-00007f5702e96123  /usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so
    00007f570245c000-00007f570245ef13  /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-bmp.so
    00007f57018e4000-00007f57018f6d17  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libnet.so
    00007f570179c000-00007f57017a2a03  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/libnio.so
    00007f5701595000-00007f570159af9b  /usr/lib/jvm/jrockit-jdk1.6.0_37-R28.2.5-4.1.0/jre/lib/amd64/liborii.so
    00007f56daa21000-00007f56daa9ed5b  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/659/1/.cp/libswt-gtk-4333.so
    00007f56da7aa000-00007f56da81c2db  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/659/1/.cp/libswt-pi-gtk-4333.so
    00007f56da5a8000-00007f56da5a89e3  /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0
    00007f56da32e000-00007f56da3328c3  /usr/lib/x86_64-linux-gnu/libXtst.so.6
    00007f56da12a000-00007f56da12c2db  /usr/lib/x86_64-linux-gnu/pango/1.8.0/modules/pango-basic-fc.so
    00007f56d9e3b000-00007f56d9e3efeb  /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
    00007f56d9bee000-00007f56d9bfa65b  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/659/1/.cp/libswt-cairo-gtk-4333.so
    00007f56d99a7000-00007f56d99ac97b  /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules/im-ibus.so
    00007f56d9744000-00007f56d9786853  /usr/lib/x86_64-linux-gnu/libibus-1.0.so.0
    00007f56d9513000-00007f56d9541533  /usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so
    00007f56d92d8000-00007f56d930c87b  /usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so
    00007f56d90c7000-00007f56d90d60c3  /lib/x86_64-linux-gnu/libudev.so.1
    00007f56d8d85000-00007f56d8d865fb  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/77/1/.cp/os/linux/x86_64/libunixfile_1_0_0.so
    00007f56d82b9000-00007f56d82c37a3  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/659/1/.cp/libswt-atk-gtk-4333.so
    00007f56c28f5000-00007f56c28fa513  /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-gif.so
    00007f56c23af000-00007f56c23b3cb3  /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/menuproxies/libappmenu.so
    00007f56c219c000-00007f56c21ad95b  /usr/lib/x86_64-linux-gnu/libdbusmenu-gtk.so.4
    00007f56c1f81000-00007f56c1f9a453  /usr/lib/x86_64-linux-gnu/libdbusmenu-glib.so.4
    00007f56a7616000-00007f56a7620cbb  /home/qianjia/eclipse-kelper/configuration/org.eclipse.osgi/bundles/659/1/.cp/libswt-webkit-gtk-4333.so
    00007f56a3c19000-00007f56a53e04fb  /usr/lib/libwebkitgtk-1.0.so.0
    00007f56a35c5000-00007f56a39e469b  /usr/lib/libjavascriptcoregtk-1.0.so.0
    00007f56a33ba000-00007f56a33c3d3b  /usr/lib/libenchant.so.1
    00007f56a31b2000-00007f56a31b8633  /usr/lib/x86_64-linux-gnu/libgailutil.so.18
    00007f56a2f9b000-00007f56a2faebe3  /usr/lib/libgeoclue.so.0
    00007f56a2d8f000-00007f56a2d99a2b  /usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0
    00007f56a2b46000-00007f56a2b8b443  /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0
    00007f56a2922000-00007f56a29433b3  /usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0
    00007f56a26e1000-00007f56a271c9f3  /usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0
    00007f56a2490000-00007f56a24ded7b  /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0
    00007f56a219d000-00007f56a228738b  /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
    00007f56a1f4c000-00007f56a1f8a92b  /usr/lib/x86_64-linux-gnu/libjpeg.so.8
    00007f56a1c91000-00007f56a1d30fa3  /usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1
    00007f56a1a55000-00007f56a1a8ef93  /usr/lib/x86_64-linux-gnu/libxslt.so.1
    00007f56a16f2000-00007f56a184a16b  /usr/lib/x86_64-linux-gnu/libxml2.so.2
    00007f56a1494000-00007f56a14edb23  /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1
    00007f56a11e8000-00007f56a128e6f3  /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
    00007f56a0e22000-00007f56a0fda640  /usr/lib/x86_64-linux-gnu/libicui18n.so.48
    00007f56a0bbc000-00007f56a0c1a5fb  /usr/lib/x86_64-linux-gnu/libXt.so.6
    00007f56a0995000-00007f56a09b9afb  /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2
    00007f56a075f000-00007f56a07923fb  /usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0
    00007f56a04e1000-00007f56a05592b3  /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0
    00007f56a02bf000-00007f56a02df5fb  /lib/x86_64-linux-gnu/liblzma.so.5
    00007f56a009a000-00007f56a00ba3f3  /usr/lib/x86_64-linux-gnu/libglapi.so.0
    00007f56a843c000-00007f56a843c783  /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1
    00007f569fe83000-00007f569fe97423  /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0
    00007f569fc7e000-00007f569fc80bd3  /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0
    00007f569fa78000-00007f569fa7be53  /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1
    00007f569f86d000-00007f569f876dcb  /usr/lib/x86_64-linux-gnu/libdrm.so.2
    00007f569f665000-00007f569f66ba0b  /usr/lib/x86_64-linux-gnu/libSM.so.6
    00007f569f449000-00007f569f45f4d3  /usr/lib/x86_64-linux-gnu/libICE.so.6
    00007f569f205000-00007f569f2474f3  /lib/x86_64-linux-gnu/libdbus-1.so.3
    00007f569f000000-00007f569f003383  /lib/x86_64-linux-gnu/libuuid.so.1
    00007f56a6dce000-00007f56a6dd0d4b  /usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so
    00007f56a5fb3000-00007f56a5fb4bf3  /usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so
    00007f565ddd9000-00007f565ddf99fe  /usr/lib/x86_64-linux-gnu/libproxy.so.1
    00007f565dbcf000-00007f565dbd78ed  /usr/lib/x86_64-linux-gnu/libproxy/0.4.11/modules/config_gnome3.so
    00007f565d9cb000-00007f565d9ccd93  /usr/lib/x86_64-linux-gnu/libproxy/0.4.11/modules/network_networkmanager.so
    00007f565d7bd000-00007f565d7c78f3  /usr/lib/enchant/libenchant_hspell.so
    00007f565d5b1000-00007f565d5bb95f  /usr/lib/enchant/libenchant_ispell.so
    00007f565d3ae000-00007f565d3af843  /usr/lib/enchant/libenchant_aspell.so
    00007f565d0e7000-00007f565d19f27b  /usr/lib/libaspell.so.15
    00007f565cee1000-00007f565cee4fd2  /usr/lib/enchant/libenchant_myspell.so
    00007f565cc8d000-00007f565ccdbafd  /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0
    00007f56aa6d3000-00007f56aa6d4253  /usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so
    00007f565656e000-00007f56565a125b  /usr/lib/x86_64-linux-gnu/librsvg-2.so.2
    00007f5656334000-00007f565636a3b3  /usr/lib/x86_64-linux-gnu/libcroco-0.6.so.3
    00007f5656131000-00007f5656132bcb  /lib/libnss_mdns4_minimal.so.2
    00007f5655f2a000-00007f5655f2f07b  /lib/x86_64-linux-gnu/libnss_dns.so.2
    Stack:
    (* marks the word pointed to by the stack pointer)
    00007f5788df5000: 00007f5788df5888* 00007f5789f58917  00007f5788df5690  00007f5788df5680 
    00007f5788df5020: 00007f570af3f988  00007f570af3f9b9  00007f5788df58b8  00007f5789f58942 
    00007f5788df5040: 00007f5788df58c8  00007f5789f5d1e4  000000000000000c  00007f570000003f 
    00007f5788df5060: 0000000000000014  00007f570000003d  0000000000000014  00007f5700000038 
    00007f5788df5080: 0000000000000009  00007f570000003c  00007f5788df5918  0000000089f58942 
    00007f5788df50a0: 00007f5788df5928  0000000000000000  0000000000000000  0000000000000000 
    Code:
    (* marks the word pointed to by the instruction pointer)
    00007f5789f8b9b0: 48fe294840738b48  814800000fffc681  9346e8fffff000e6  00401f0fc1eb0007 
    00007f5789f8b9d0: 2e66c3ffffffffb8  0000000000841f0f  53000000d8878b48  f8832050fffb8948 
    00007f5789f8b9f0: 0f08538b480f74ff  894801c2834802b6  2e666666c35b0853  0000000000841f0f 
    00007f5789f8ba10: 41d28548c0315641* 5355d48949544155  8949000000f8840f  90d38948f58948fd 
    00007f5789f8ba30: 30758b4d287d8b49  000090830ff7394c  4cf3394cfe294900  0f14fe8349f3460f 
    00007f5789f8ba50: f6854d000000ab87  8d48104d8d487474  e28348f2894c1077  cf3948ff468d49f0 
    Last optimized methods:
      #177 java/lang/ref/ReferenceQueue.poll()Ljava/lang/ref/Reference;  5177.866-5177.870 0x7f574300dbe0-0x7f574300ddb4 3.92 ms 256KB 
      #178 org/eclipse/e4/core/internal/contexts/EclipseContext.cleanup()V  5201.219-5201.346 0x7f574326e000-0x7f574326ed4c 127.39 ms 1280KB 
      #179 jrockit/vm/Classes.forName(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;  5412.858-5412.936 0x7f574326ed60-0x7f574326f94e 77.88 ms 1280KB 
      #180 java/util/HashMap.buildCache()V  5412.946-5412.972 0x7f574326f960-0x7f574326feb5 26.35 ms 768KB 
    *#181 java/util/HashMap$KeyIterator.next()Ljava/lang/Object;  5622.881-5622.885 0x7f574326fec0-0x7f5743270063 3.62 ms 256KB 
      #166 org/eclipse/emf/ecore/impl/MinimalEObjectImpl.hasField(I)Z  4513.062-4513.063 0x7f574312cf00-0x7f574312cf1f 0.31 ms 256KB 
      #167 org/eclipse/emf/common/util/AbstractEList.add(Ljava/lang/Object;)Z  4513.084-4513.084 0x7f574312cf20-0x7f574312cf6d 0.76 ms 256KB 
      #168 org/eclipse/emf/common/util/AbstractTreeIterator.next()Ljava/lang/Object;  4813.131-4813.144 0x7f574312cf80-0x7f574312d353 13.43 ms 576KB 
      #169 org/eclipse/emf/ecore/util/EcoreUtil$ProperContentIterator.hasNext()Z  4813.144-4813.148 0x7f574312d360-0x7f574312d5f9 3.57 ms 256KB 
      #170 org/eclipse/core/internal/resources/MarkerAttributeMap.shareStrings(Lorg/eclipse/core/internal/utils/StringPool;)V  4818.874-4818.883 0x7f574312d600-0x7f574312d858 9.57 ms 256KB 
      #171 java/util/HashMap.addEntry(ILjava/lang/Object;Ljava/lang/Object;I)V  4818.883-4818.888 0x7f574312d860-0x7f574312dc50 4.65 ms 512KB 
      #172 org/eclipse/swt/widgets/Display.readAndDispatch()Z  4827.887-4828.220 0x7f5742ccad20-0x7f5742ccd336 333.14 ms 4864KB 
      #173 org/eclipse/core/databinding/observable/Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V  4986.776-4986.785 0x7f574312dc60-0x7f574312de55 8.95 ms 256KB 
      #174 org/eclipse/emf/ecore/util/EContentsEList$FeatureIteratorImpl.hasNext()Z  5113.313-5113.350 0x7f574300ce00-0x7f574300d94e 37.04 ms 1024KB 
      #175 org/eclipse/emf/ecore/impl/MinimalEObjectImpl.eContents()Lorg/eclipse/emf/common/util/EList;  5113.350-5113.356 0x7f574300d960-0x7f574300dbc5 6.23 ms 512KB 
      #176 org/eclipse/ui/internal/Workbench$3.eventLoopIdle(Lorg/eclipse/swt/widgets/Display;)V  5154.651-5154.652 0x7f574312de60-0x7f574312de7e 0.86 ms 256KB 
    Thread:
    "Main Thread" id=1 idx=0x4 tid=13581 lastJavaFrame=0x7f5788feecf8
    Stack 0: start=0x7f5788df0000, end=0x7f5788ff1000, guards=0x7f5788df5000 (disabled), forbidden=0x7f5788df3000
    Thread Stack Trace:
        at _IO_default_xsputn+7()@0x7f5789f8ba17
        at __vasprintf_chk+192()@0x7f578a020b31
        -- Java stack --
        at org/eclipse/swt/internal/gtk/OS._gtk_main_do_event(J)V(Native Method)
        at org/eclipse/swt/internal/gtk/OS.gtk_main_do_event(OS.java:8742)
        at org/eclipse/swt/widgets/Display.eventProc(Display.java:1243)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        at org/eclipse/swt/internal/gtk/OS._g_main_context_iteration(JZ)Z(Native Method)
        at org/eclipse/swt/internal/gtk/OS.g_main_context_iteration(OS.java:2288)[inlined]
        at org/eclipse/swt/widgets/Display.readAndDispatch(Display.java:3361)[optimized]
        at org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine$9.run(PartRenderingEngine.java:1113)
        at org/eclipse/core/databinding/observable/Realm.runWithDefault(Realm.java:332)
        at org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.run(PartRenderingEngine.java:997)
        at org/eclipse/e4/ui/internal/workbench/E4Workbench.createAndRunUI(E4Workbench.java:138)
        at org/eclipse/ui/internal/Workbench$5.run(Workbench.java:610)
        at org/eclipse/core/databinding/observable/Realm.runWithDefault(Realm.java:332)
        at org/eclipse/ui/internal/Workbench.createAndRunWorkbench(Workbench.java:567)
        at org/eclipse/ui/PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
        at org/eclipse/ui/internal/ide/application/IDEApplication.start(IDEApplication.java:124)
        at org/eclipse/equinox/internal/app/EclipseAppHandle.run(EclipseAppHandle.java:196)
        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:354)
        at org/eclipse/core/runtime/adaptor/EclipseStarter.run(EclipseStarter.java:181)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        at jrockit/vm/Reflect.invokeMethod(Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;(Native Method)
        at sun/reflect/NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun/reflect/DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java/lang/reflect/Method.invoke(Method.java:597)
        at org/eclipse/equinox/launcher/Main.invokeFramework(Main.java:636)
        at org/eclipse/equinox/launcher/Main.basicRun(Main.java:591)
        at org/eclipse/equinox/launcher/Main.run(Main.java:1450)
        at org/eclipse/equinox/launcher/Main.main(Main.java:1426)
        at jrockit/vm/RNI.c2java(JJJJJ)V(Native Method)
        -- end of trace
    Memory usage report:
    Total mapped                  6240004KB           (reserved=3804280KB)
    -              Java heap      1048576KB           (reserved=524288KB)
    -              GC tables        35084KB         
    -          Thread stacks       100360KB           (#threads=50)
    -          Compiled code      1048576KB           (used=17771KB)
    -               Internal         1672KB         
    -                     OS       661012KB         
    -                  Other      3194708KB         
    -            Classblocks         8192KB           (malloced=8159KB #21260)
                                                      Not tracing sites.
    -        Java class data       140800KB           (malloced=140603KB #98453 in 21260 classes)
                                                      Not tracing sites.
    - Native memory tracking         1024KB           (malloced=334KB #10)
                                                      Not tracing sites.
    Set the env variable TRACE_ALLOC_SITES=1 or use the print_memusage switch
    trace_alloc_sites=true to enable alloc site tracing.
        *  If you see this dump, please go to                                    *
        *  http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html  *
        *  for troubleshooting information.                                      *
    ===== END DUMP ===============================================================

    Hi,
    I can see that Stackoverflow is happen in this case.
    Please remove this one -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xss2m
    Try to keep following parameter  -Xms2048 -Xmx2048 -XnoOpt in your eclipse.ini file.
    that will help to resolve this issue.
    Regards,
    Kal

Maybe you are looking for

  • How can I create a symbol filled with a repeating pattern?

    Hey there. Iam trying to make a symbol and it should have a repeating pattern (jpg, png, gif) in the back. It should be 100% widht and height and I will move it on the main stage. Any ideas for that? I just have this code to put it in the background

  • Newest patch for call of duty 5 world at war..

    Can anyone tell me when the newest patch for cod5 waw dd(1.6) will be available for download? thanks to any replies!!

  • Mass cancellation of material document

    Dear All, Is there any way I can do the mass cancellation of material documents. I know I can do one by one with "MBST". I have to cancel nearlly 1000 of documents. Please guide me how can i do that. Thanks and Regards, Vineet Dhawan

  • In Katie's Cafe tutorial, how did she create her color sample?

    In the Adobe Muse tutorial for Katie's Cafe.  How was the color sample created.  She just had us drag it onto our Muse document, but how was the color palette created initially so that it can be used in your Muse document? Thanks!

  • Mac Integration into Windows IT world.

    Hello, The company I work for is looking over it's IT policies and revamping for a possible tele-commute situation. I've been tasked with getting some information on how we could support mac users who may have to work from home on their personal mach