Problem running an MQ Code

Hello Friends,
While running an MQ code I get the following error :
java.lang.UnsatisfiedLinkError: no mqjbnd05 in java.library.path
Checked with lots of material on net they have asked to set the path of MQ in the enviornment variable, did that too but none helped. Can anybody help on this????

Hello Friends,
I know that I am in the wrong thread, but was unable to find thread for MQ .. So if anybody is familar with the issue or is aware of MQ thread pls let me know ?? Waiting for the any sort of answer ????

Similar Messages

  • Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am mack from Karachi Pakistan

    Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am maqsood  from Karachi Pakistan

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • Problems running code on a different PC, Executable runs on both PCs

    We recently transferred a LV 2010 license from one workstation to another one and tried running some LV code (LV 2010 code) and an executable made from the code at the "new" code development station.
    The executable runs without issues. The code won't initialize one of the two devices on a SBS MIL-STD-1553 interface card that's installed in the workstation.
    Why would the executable work so flawlessly while the code from which the executable was generated has issues? Seems it would have to be something to do with the new workstation and/or its SBS card.
    Any experience with these types of issues when migrating to a new development workstation (mine is running Win XP and LV2010) are much appreciated.
    Thanks,
    Jeffrey Bledsoe
    Electrical Engineer
    Solved!
    Go to Solution.

    I was using the F067L1 microcode in the PASS 3200 card. GE support said that version of microcode is for the PASS 3200 app and not the Integrated Avionics Avionics Library (i.e., the library of the functions in their DLL).
    I updated the microcode to the F040M8 version GE provided. The LV code works now.
    The DLL is an older version, dated 12/18/2002. It's working with the LV code but we'll consider updating the DLL in the future.
    Thanks,
    Jeffrey Bledsoe
    Electrical Engineer

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • New version 9.0.1 on Windows 7 has a problem running JavaScript math iterations.

    Dialog Error Box reads:
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: http://www.classictesla.com/java/javatc/script/JTC_geotc.js:1299
    The above dialog has never come up before. This program ran fine forever and has not changed. With Firefox 8, the program ran in 0.3 seconds. IMMEDIATELY as I allowed the browser to upgrade to 9.0.1, the program is now not working.
    About 1000 people use this program. Knowing how slow fixes can be, I have to inform them not to allow FF to upgrade to version 9. Really sucks as I've been a FF fan forever.
    If you go to that website, click the "Load Sample Coil" button, then scroll down and click the RUN JAVATC button, you'll see the problem
    If there is a problem with the script, why only now after so many years of running? I can run it just fine on version 8. If there's something I can do on my end, I would love to (just tell me what the problem is).
    My guess = "version 9 is limiting the number of iterations a script can run". This code use to run in 0.3 seconds and now is just hung. A very sad day for me. I guess I have to figure out how to go back to old version 8.

    Only Firefox 9 seems to have that problem. Firefox 8 and Firefox 10 (beta) and later work. It helps a bit if I disable javascript.options.methodjit.content, but then it still takes 4 seconds compared to 0.2 or 0.3 seconds with the other Firefox versions. So that looks like a bug with the JIT compiler.

  • Crystal report run from ASP code significantly slower than when run in CRS

    We have CRS XI R2.  I developed a report that contains several on-demand sub-reports.  The report and sub-reports are very fast when run directly from CRS.  However, when I run from ASP (users run a link from the intranet), it takes 4 times longer (1 second on CRS, vs. 5-10 seconds on intranet).  The report takes longer, bringing up a sub-report takes longer and paging through sub-reports take longer.  What can be done to improve the speed of the report that is using the ASP code?  I used a sample program provided at this support site to develop the report and it is pretty basic code.  The only time I have a problem is when I have many sub-reports.  Since they are on-demand, I do not know why this would matter.

    This has been created as an incident with SAP support.  Things that you will want to check is making sure that you handle the postback to the code as you do not need to run your entire code on every postback.  This will help performance after the original load. 
    One other thing is to compare performance with the viewer within Infoview that uses the same backend server as your application, ie PSReportFactory uses the page server, so you'll want to test with the DHTML viewer.  RAS code (reportclientdocument) uses the Report Application Server so you will want to test with the Advanced DHTML viewer.

  • Error while running compiled java code

    Hi
    I have an evaluation license of the JDeveloper2.0 installed on my WindowsNT 4.0 workstation.
    I seem to have a problem running my compiled jave code. After compiling the source code(.java file) when I try to run the same I get a message saying
    "<FileName> not found in outpath classpath or sourcepath ".
    What does this mean and how can I rectify it?
    Regards
    Sree
    null

    Your classpath tells Java run time where to look for the class files it needs. In JDeveloper the class path is set in your project properties. Select Project->Properties and check that the source and output paths correspond to your myprojects and myclasses directories.

  • Display problem in some t code in SAP gui 710

    Hello experts
    we are using SAP gui 710,
    some users facing display problem when they run some t code like CS11/MB51 etc.
    the data grid show some rows in disordered manner, however if we download this into excel
    its shows perfect data.
    if user scroll the report as they appear than also many rows goes disturb.
    i can't understand why this happen.
    this is occurring on many front end system or on many tcods.
    plz help me to resolve this.
    Best Regards
    Deepak Singh

    Hi,
    You can check the screen resolution of the user desktop. I feel this could be a reason.
    Regards,
    Deepak Kori

  • Hello, i have a problem with this number code  213:19,  please help me!

    Hello, i have a problem with this number code  213:19,  please help me!

    dan
    What version of Premiere Elements and on what computer operating system is it running?
    If you are using Premiere Elements 13, have you updated it to 13.1 yet? If not, please do so using an opened project's Help Menu/Updates.
    What type of user account are you using....local administrator or domain type?
    Please review the following Adobe document on the 213.19 issue. Have you read that already?
    Error 213:19 | Problem has occurred with the licensing of this product
    ATR

  • UNIX: problem running an DEV & QA environment using form/report servlets

    UNIX: problem running an DEV & QA environment using form/report servlets
    I am trying to setup on one server an DEV and QA environment using the Forms Servlet, Forms Listener Servlet and Report Servlet.
    I think I have the Forms Servlet and Forms Listener Servlet running properly. The problem is setting up the DEV and QA environment for running reports.
    For example, when in DEV environment I would like to run a report from a directory specified in the REPORTS60_PATH. This doesn't seem possible.
    It might be easier if I describe my configuration first:
    DEV: run all forms and reports from the directory /data/release/dev
    QA: run all forms and reports from the directory /data/release/qa
    ---DEV & QA Settings Forms Listener Servlet:
    zone.properties:
    # DEV
    servlet.fl60dev.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60dev.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev.env
    # QA
    servlet.fl60qa.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60qa.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/qa.env
    ---DEV & QA Settings Forms Servlet:
    servlet.f60servlet.code=oracle.forms.servlet.FormsServlet
    --- Settings for Reports Servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    Custom Env files since we are using Developer 6i Patch 7
    dev.env and qa.env
    Here I specify FORMS60_PATH and REPORTS60_PATH,
    eg: DEV -> FORMS60_PATH=/data/release/dev
    REPORTS60_PATH=/data/release/dev
    likewise for QA ../qa
    In the formsweb.cfg file i have something like:
    [dev]
    serverURL=/servlet/fl60dev
    form=test.fmx
    [qa]
    serverURL=/servlet/fl60dev
    form=test2.fmx
    I have tested the following and they work without problems:
    1. forms listener test page, eg: http://webserver:7777/servlet/fl60dev
    2. running forms from the 2 environments
    eg: http://webserver:7777/servlet/f60servlet?config=dev
    this runs the form in the FORMS60_PATH (/data/release/dev)
    Now my problems start with Reports.
    When I run a report from forms (using run_report_object) it will not run any reports
    as specified in the REPORTS60_PATH
    Even using this url:
    http://webserver:7777/servlet/RWServlet?server=rep60&report=test.rdf&destype=cache&desformat=html&
    userid=scott/tiger@test9i
    It NEVER seems to pickup and use the REPORTS60_PATH. I have tried nearly everything.
    I have gone throught the instructions in "Integrating Oracle9iAS Reports in Oracle9iAS Forms -
    White Paper"
    (http://otn.oracle.com/products/forms/pdf/277282.pdf)
    and Forms6i Patch 7: Oracle Forms Listner Servlet for Deployment of FOrms on the Internet
    (http://otn.oracle.com/products/forms/pdf/p7listenerservlet.pdf)
    plus any other documents in metalink relating to forms, or report servlets. I am
    totally confused, please help.
    I have tried setting the REPORTS60_PATH in the following files without success:
    custom.env (as specified by initArgs=EnvFile in zone.properties)
    jserv.properties
    in the zone.properties I have tried to set a custom env file for the report servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    servlet.RWServlet.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev_rep.env
    NO LUCK.
    The only place that I can set the REPORTS60_PATH
    is in "[6iserver home]/reports60_server" file when I start the reports server (did I even
    get this right - I do have to have a reports server running don't I?)
    Does this meaan I have to run multiple report servers for each of my environments?
    Based on all the documentation I thought that REPORTS60_PATH as specified in the files relating
    to the forms servlet would be the place to specify the path.
    As you will understand I am getting really fustrated with this and it seems to
    me that the reports servlet configuration in 6i is really half baked and since 9i
    is coming out it will never be fixed.

    I am even not able to run forms servlets from two different forms60_path, Is there any configuration do you make other than what you have mentioned in this post.
    I already open a TAR in this regard, I am still waiting reply from ORACLE.
    Thanks,
    Shaik Ather Ahmed

  • Show-stopping error when I try to load/run the muse code with JQuery version 1.9.1.

    Version 1.9.1, and the muse code uses 1.8.3.  As you can see HERE,http://jquery.com/download/ version 1.9.0 was a major milestone release for JQuery that eliminated much of the (deprecated) functionality of earlier versions. Unfortunately, the muse html uses some of that deprecated functionality (specifically, the "browser( )" function HERE)http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed. Thus I am getting a show-stopping error when I try to load/run the muse code with version 1.9.1. Other people have had this same problem (see THIS)http://bugs.jquery.com/ticket/13214.
    Do you see an update in the near future?

    Version 1.9.1, and the muse code uses 1.8.3.  As you can see HERE,http://jquery.com/download/ version 1.9.0 was a major milestone release for JQuery that eliminated much of the (deprecated) functionality of earlier versions. Unfortunately, the muse html uses some of that deprecated functionality (specifically, the "browser( )" function HERE)http://jquery.com/upgrade-guide/1.9/#jquery-browser-removed. Thus I am getting a show-stopping error when I try to load/run the muse code with version 1.9.1. Other people have had this same problem (see THIS)http://bugs.jquery.com/ticket/13214.
    Do you see an update in the near future?

  • Problem with my exe code

    Hello,
    I have a small problem regarding to my code. I have attached the source code. There isn't any problem with the vi code. But when I convert the vi to exe, and double click the exe file in order to open it , the program is trying to start, I mean it is acting like I clicked the run button. I said it is not a problem, because all the values (test duration, delay duration, high limit, low limit) are zero. Therefore it is attempting to run, but only very small portion of the pressure reading occurs. What do you think about the cause of this problem? Thanks for your help.
    Ahmet
    Attachments:
    front panel1.jpg ‏47 KB
    Oksijen_Atolyesi.vi ‏45 KB

    Hi Ahmet,
    when duration and delay are zero, the your DAQ loop will (probably) run only once, thus giving you only small amount of data...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    Oksijen_Atolyesi.vi ‏35 KB

  • Getting Exception: @Scratchpad/1:1 exception while running simple javascript code in mozilla scrachpad

    getting Exception: "@Scratchpad/1:1 exception" while running simple javascript code in mozilla scrachpad

    Does this also happen if you run the code in the Web Console (Firefox/Tools > Web Developer)?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Having problems running 3.7 RCP app in e4

    I'm trying to get my 3.7 RCP app (https://github.com/Phillipus/archi) to run in e4. I'm absolutely failing here.
    I'm using eclipse-SDK-I20120216-2200-win32, I added the EMF and GEF from software update, I imported my code, it compiles. I created a Launch configuration based on the app's product, added only the required selected plug-ins, added "equinox.ds" and hit "Add Required Plug-ins". I hit Run and get:
    !SESSION 2012-02-17 17:52:01.817 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_26
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
    Framework arguments: -product uk.ac.bolton.archimate.editor.product
    Command-line arguments: -product uk.ac.bolton.archimate.editor.product -data C:\Users\Phillipus\workspace/../runtime-Archi -dev file:C:/Users/Phillipus/workspace/.metadata/.plugins/org.eclipse.pde.core/Archi/dev.properties -os win32 -ws win32 -arch x86 -consoleLog
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.288
    !MESSAGE Unable to retrieve the bundle from the URI: bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.291
    !MESSAGE Unable to retrieve the bundle from the URI: bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.293
    !MESSAGE Unable to retrieve the bundle from the URI: bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.444
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.456
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.458
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.461
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.463
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.466
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.468
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.471
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.473
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.475
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.477
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.479
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.481
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.488
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.490
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.493
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.496
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.498
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.500
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.502
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.504
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.558
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.561
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.565
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.569
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.571
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.578
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.581
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.583
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.585
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.588
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.590
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.593
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.596
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.599
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.601
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.608
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/menu/MenuContributions/menuContributions/UNKNOWN].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.612
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/menu/ToolBarContributions/toolBarContributions/UNKNOWN].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.615
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/menu/TrimContributions/trimContributions/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.771
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/Context/context/SET].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.782
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/UIElement/renderer/SET].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.785
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.792
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/UIElement/widget/SET].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.002
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.006
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.009
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.012
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/ElementContainer/children/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.014
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/ElementContainer/selectedElement/SET].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.114
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/TrimmedWindow/trimBars/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.120
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.127
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.136
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.140
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.144
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.147
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.152
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.156
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/ElementContainer/children/ADD].
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.158
    !MESSAGE Event Admin service is not available, unable to publish event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/ElementContainer/selectedElement/SET].
    !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2012-02-17 17:52:05.161
    !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt".
    !STACK 0
    org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:853)
    at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111)
    at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:81)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72)
    at org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1235)
    at org.eclipse.ui.internal.Workbench.getActiveWorkbenchWindow(Workbench.java:1209)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.updateActiveShell(WorkbenchSourceProvider.java:932)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.getCurrentState(WorkbenchSourceProvider.java:133)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:692)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1262)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1052)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058)
    at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1664)
    at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:2145)
    at org.eclipse.swt.widgets.Control.windowProc(Control.java:4525)
    at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341)
    at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627)
    at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069)
    at org.eclipse.swt.widgets.Display.windowProc(Display.java:4972)
    at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method)
    at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:231)
    at org.eclipse.swt.widgets.Shell.open(Shell.java:1217)
    at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.postProcess(WBWRenderer.java:710)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:633)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:951)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85)
    at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:579)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:534)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at uk.ac.bolton.archimate.editor.Application.start(Application.java:59)
    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:352)
    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:624)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1433)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1409)
    Caused by: java.lang.NullPointerException
    at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3354)
    at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:535)
    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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    ... 53 more
    !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.165
    !MESSAGE Exception occurred while rendering: org.eclipse.e4.ui.model.application.ui.basic.impl.TrimmedWindowImpl@9c939 (elementId: IDEWindow, tags: [topLevel], contributorURI: platform:/plugin/org.eclipse.ui.workbench) (widget: Shell {Eclipse SDK 4.0}, renderer: org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer@166faac, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (label: Eclipse SDK 4.0, iconURI: null, tooltip: null, context: TrimmedWindowImpl (IDEWindow) Context, variables: [], x: -2147483648, y: -2147483648, width: 1024, height: 768)
    !STACK 0
    org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
    at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:853)
    at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111)
    at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:81)
    at org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72)
    at org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1235)
    at org.eclipse.ui.internal.Workbench.getActiveWorkbenchWindow(Workbench.java:1209)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.updateActiveShell(WorkbenchSourceProvider.java:932)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider.getCurrentState(WorkbenchSourceProvider.java:133)
    at org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:692)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1262)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1052)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058)
    at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1664)
    at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:2145)
    at org.eclipse.swt.widgets.Control.windowProc(Control.java:4525)
    at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341)
    at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627)
    at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069)
    at org.eclipse.swt.widgets.Display.windowProc(Display.java:4972)
    at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method)
    at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:231)
    at org.eclipse.swt.widgets.Shell.open(Shell.java:1217)
    at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.postProcess(WBWRenderer.java:710)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:633)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:951)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910)
    at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85)
    at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:579)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:534)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at uk.ac.bolton.archimate.editor.Application.start(Application.java:59)
    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:352)
    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:624)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1433)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1409)
    Caused by: java.lang.NullPointerException
    at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3354)
    at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:535)
    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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    ... 53 more
    I really must be missing something here. Do I need to add something to the plugin.xml file or MANIFEST.MF file. Or....?
    PB

    Thanks, I successfully started my old-fashioned RCP application, I'm not
    really happy with what I saw, but some lights better than darkness, right?
    May be you have time to advise me - is there are ways to get rid of "Quick
    Access" toolbar control?
    Brg,
    Sergey.
    "Tom Schindl" wrote in message news:[email protected]...
    You are missing the equinox.event!
    Tom
    Am 29.03.12 04:58, schrieb Sergey Kuznetsov:
    > Completely agree with Phil, for now (M6) e4 looks like pre-alfa
    > platform, I hope it's not what we'll got as a release...
    >
    > "Phil Beauvoir" wrote in message news:[email protected]...
    >
    > I'm trying to get my 3.7 RCP app (https://github.com/Phillipus/archi) to
    > run in e4. I'm absolutely failing here.
    >
    > I'm using eclipse-SDK-I20120216-2200-win32, I added the EMF and GEF from
    > software update, I imported my code, it compiles. I created a Launch
    > configuration based on the app's product, added only the required
    > selected plug-ins, added "equinox.ds" and hit "Add Required Plug-ins". I
    > hit Run and get:
    >
    >
    > !SESSION 2012-02-17 17:52:01.817
    > -----------------------------------------------
    > eclipse.buildId=unknown
    > java.version=1.6.0_26
    > java.vendor=Sun Microsystems Inc.
    > BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB
    > Framework arguments: -product uk.ac.bolton.archimate.editor.product
    > Command-line arguments: -product uk.ac.bolton.archimate.editor.product
    > -data C:\Users\Phillipus\workspace/../runtime-Archi -dev
    > file:C:/Users/Phillipus/workspace/.metadata/.plugins/org.eclipse.pde.core/Archi/dev.properties
    > -os win32 -ws win32 -arch x86 -consoleLog
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.288
    > !MESSAGE Unable to retrieve the bundle from the URI:
    > bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.cleanupaddon.CleanupAddon
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.291
    > !MESSAGE Unable to retrieve the bundle from the URI:
    > bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.dndaddon.DnDAddon
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.293
    > !MESSAGE Unable to retrieve the bundle from the URI:
    > bundleclass://org.eclipse.e4.ui.workbench.addons.swt/org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.444
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.456
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.458
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.461
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.463
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.466
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.468
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.471
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.473
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.475
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.477
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.479
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.481
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.488
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.490
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.493
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.496
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.498
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.500
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.502
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/PartDescriptorContainer/descriptors/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.504
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.558
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.561
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.565
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.569
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.571
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.578
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.581
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.583
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.585
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.588
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.590
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.593
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/rootContext/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.596
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/commands/BindingTableContainer/bindingTables/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.599
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.601
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/Application/commands/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.608
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/menu/MenuContributions/menuContributions/UNKNOWN].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.612
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/menu/ToolBarContributions/toolBarContributions/UNKNOWN].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.615
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/menu/TrimContributions/trimContributions/ADD].
    >
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.771
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/Context/context/SET].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.782
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/UIElement/renderer/SET].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.785
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:04.792
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/UIElement/widget/SET].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.002
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.006
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.009
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.012
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/ElementContainer/children/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.014
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/ElementContainer/selectedElement/SET].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.114
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/TrimmedWindow/trimBars/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.120
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.127
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.136
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.140
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.144
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.147
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.152
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/basic/Window/sharedElements/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.156
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/ElementContainer/children/ADD].
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.158
    > !MESSAGE Event Admin service is not available, unable to publish event
    > org.osgi.service.event.Event
    > [topic=org/eclipse/e4/ui/model/ui/ElementContainer/selectedElement/SET].
    >
    > !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2012-02-17 17:52:05.161
    > !MESSAGE Problems occurred when invoking code from plug-in:
    > "org.eclipse.e4.ui.workbench.swt".
    > !STACK 0
    > org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
    > at
    > org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    >
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:853)
    >
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111)
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:81)
    > at
    > org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72)
    >
    > at
    > org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1235)
    >
    > at
    > org.eclipse.ui.internal.Workbench.getActiveWorkbenchWindow(Workbench.java:1209)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider.updateActiveShell(WorkbenchSourceProvider.java:932)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider.getCurrentState(WorkbenchSourceProvider.java:133)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:692)
    >
    > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    > at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1262)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1052)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058)
    > at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1664)
    > at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:2145)
    > at org.eclipse.swt.widgets.Control.windowProc(Control.java:4525)
    > at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341)
    > at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627)
    > at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069)
    > at org.eclipse.swt.widgets.Display.windowProc(Display.java:4972)
    > at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method)
    > at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:231)
    > at org.eclipse.swt.widgets.Shell.open(Shell.java:1217)
    > at
    > org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.postProcess(WBWRenderer.java:710)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:633)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684)
    >
    > at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:951)
    >
    > at
    > org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85)
    >
    > at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:579)
    > at
    > org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    >
    > at
    > org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:534)
    > at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    > at uk.ac.bolton.archimate.editor.Application.start(Application.java:59)
    > 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:352)
    >
    > 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:624)
    > at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579)
    > at org.eclipse.equinox.launcher.Main.run(Main.java:1433)
    > at org.eclipse.equinox.launcher.Main.main(Main.java:1409)
    > Caused by: java.lang.NullPointerException
    > at
    > org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3354)
    >
    > at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:535)
    > 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    >
    > ... 53 more
    >
    > !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-02-17 17:52:05.165
    > !MESSAGE Exception occurred while rendering:
    > org.eclipse.e4.ui.model.application.ui.basic.impl.TrimmedWindowImpl@9c939
    > (elementId:
    > IDEWindow, tags: [topLevel], contributorURI:
    > platform:/plugin/org.eclipse.ui.workbench) (widget: Shell {Eclipse SDK
    > 4.0}, renderer:
    > org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer@166faac,
    > toBeRendered: true, onTop: false, visible: true, containerData: null,
    > accessibilityPhrase: null) (label: Eclipse SDK 4.0, iconURI: null,
    > tooltip: null, context: TrimmedWindowImpl (IDEWindow) Context,
    > variables: [], x: -2147483648, y: -2147483648, width: 1024, height: 768)
    > !STACK 0
    > org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException
    > at
    > org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63)
    >
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:853)
    >
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111)
    > at
    > org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:81)
    > at
    > org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72)
    >
    > at
    > org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1235)
    >
    > at
    > org.eclipse.ui.internal.Workbench.getActiveWorkbenchWindow(Workbench.java:1209)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider.updateActiveShell(WorkbenchSourceProvider.java:932)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider.getCurrentState(WorkbenchSourceProvider.java:133)
    >
    > at
    > org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:692)
    >
    > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    > at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1262)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1052)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077)
    > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058)
    > at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1664)
    > at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:2145)
    > at org.eclipse.swt.widgets.Control.windowProc(Control.java:4525)
    > at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341)
    > at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1627)
    > at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2069)
    > at org.eclipse.swt.widgets.Display.windowProc(Display.java:4972)
    > at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method)
    > at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:231)
    > at org.eclipse.swt.widgets.Shell.open(Shell.java:1217)
    > at
    > org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.postProcess(WBWRenderer.java:710)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:633)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684)
    >
    > at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:951)
    >
    > at
    > org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910)
    >
    > at
    > org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85)
    >
    > at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:579)
    > at
    > org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
    >
    > at
    > org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:534)
    > at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    > at uk.ac.bolton.archimate.editor.Application.start(Application.java:59)
    > 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:352)
    >
    > 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:624)
    > at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579)
    > at org.eclipse.equinox.launcher.Main.run(Main.java:1433)
    > at org.eclipse.equinox.launcher.Main.main(Main.java:1409)
    > Caused by: java.lang.NullPointerException
    > at
    > org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3354)
    >
    > at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:535)
    > 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56)
    >
    > ... 53 more
    >
    >
    >
    > I really must be missing something here. Do I need to add something to
    > the plugin.xml file or MANIFEST.MF file. Or....?
    >
    > PB
    >

  • "Getting exception when trying to run a JDBC code"

    Hi,
    I am getting this exception when I try to run the Jdbc code. Can some one sort out what is the problem.
    Exception in thread "main" java.lang.UnsupportedClassVersionError: TestJdbcGrip
    (Unsupported major.minor version 49.0)Regards

    The JDBC jarfile you have is either too new, or too old (less liekely) for you current Java version. Download a newer Java version and try that. If it doesn't work, then download the newer version of the JDBC driver and try it with both of the Java versions (both because if it works with both, then you can continue using whichever one you like).

Maybe you are looking for

  • Can/t scan documents from HP OJ 6500A plus

    Ever since I installed McAfee, I can no longer scan a document from my HP 6500A Plus to my Dell Inspiron desktop computer.  I keep getting the message "Scanner communication cannot be establisheed".

  • Oracle App. DBA:Query

    Hi Experts, I'm a Oracle DBA, however i wanted to know what is the work of oracle application administrator. Can onyone suggests me what in oracle app. i should learn. Thanks Shaan

  • APs go into standalone but don't recover

    We have an issue of APs losing communication to the WLC, going into standalone mode and not completely returning to LWAPP mode once communication is restored. The controller is a 4404 running version 5.2.178.0. The WLC is at our corporate office and

  • Dialog, + problem in storing window instance in context

    Hello Friends, I am trying to implement a dialog as defiend in PDF doc  ( Dialog Boxes in Web Dynpro Applications ) http://209.85.129.104/search?q=cache:fA--oXHmRTEJ:https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uu

  • Can i get a new panel for my ipod touch 2G???

    My ipod's panel is full of scratches.. i'm searching for an original new panel for my ipod touch.. its 2G.. it doesn't have a camera, neither bluetooth.. But i just want to know whether there is available..