JApplet / application init / start progress status feedback

We used to put up a separate JFrame during the initization/startup of our applets/applications for status messages. While o.k. for Java Webstart / application modes (& maybe standalone applet mode), this was not pretty for customers embedding our apps in portals.
So, the goal became to show custom progress/status on the "gray screen" initial applet contentpane until our app desktop is ready to show. Known threading / painting issues during applet startup made this task somewhat non-trival.
Searched around here on the jdc & found a nice little Moving Ball class & used that as a base for the play app below. Thought I'd post this back to jdc in case anyone else finds it useful. The JApplet code has a main, so same code should work for the app whether deployed as a (plug-in) applet, application JAR or Web Start app.
The code should show a RED moving ball during init, a YELLOW one during start and a GREEN one after start method is done (w/ball x position update in scrolling pane)....
import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
    cforster: Uses Ball painting code (from jdc) & separate status area to simulate JApplet
    startup msgs to be shown to user during applet init...
    Point is to show status during applet/application initialization (init / start) methods...
    Can JAR this up & try in appletviewer or using 1.4.2+ plugin, etc.
    With main() also usable in application / Webstart mode....
    If going the application route (or double-click JAR route), need JAR manifest.mf like:
    Manifest-Version: 1.0
    Main-Class: Today
    Created-By: 1.4.2 (Sun Microsystems Inc.)
public class Today extends JApplet {
    private static Today inst;
    //  Ball color will change from RED (init) -> YELLOW (start) -> RED (start done)
    Color ballColor = Color.RED;
    final int colorSleep = 3000;    // Time to waste in init & start methods
    final int pauseSleep = 25;      // Time between Ball moves/draws
    JTextArea jta = new JTextArea("===  Status  ===" + "\n", 50, 132);
    MovingBall movingBall = new MovingBall(jta);
    public static Today getInstance() {
        if (inst == null) inst = new Today();
        return inst;
    public Today() {
        super();
    public void init() {
        setVisible(true);
        getContentPane().setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS));
        movingBall.setPreferredSize(new Dimension(400, 100));
        movingBall.setBackground(Color.lightGray);
        getContentPane().add(movingBall);
        jta.setEditable(false);
        jta.setBackground(Color.lightGray);
        getContentPane().add(new JScrollPane(jta));
        movingBall.start();
        validate();
        try {
            Thread.sleep(colorSleep);
        catch (InterruptedException ie) {      }
    public void start() {
        ballColor = Color.YELLOW;
        validate();
        try {
            Thread.sleep(colorSleep);
        catch (InterruptedException ie) {       }
        ballColor = Color.GREEN;
    public void stop() {
        movingBall.stop();
    public static void main(String args[]) {
        final Today CallingApplet = Today.getInstance();
        JFrame frame = new JFrame("Moving Ball / Load status");
        frame.getContentPane().setLayout(new BorderLayout());
        frame.getContentPane().add("Center", CallingApplet);
        // Use an adapter to close the window
        WindowListener listener = new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                System.exit(0);
        frame.addWindowListener(listener);
        frame.setBackground(Color.lightGray);
        frame.pack();
        frame.setSize(400, 400);
        frame.show();
        CallingApplet.init();
        CallingApplet.start();
    class MovingBall extends JPanel implements Runnable {
        final int xPos_Start = 8;
        int xPos = xPos_Start, yPos = 100, rad = 10;
        boolean moveForward = true;
        Thread thread;
        Graphics dbg;
        Image dblImage;
        JTextArea jta = null;
        MovingBall ball = this;
        // Takes in JTestArea that is supposed to be the status msg area...
        // In practice, the staus area & updates are elsewhere...
        public MovingBall(JTextArea jta) {
            this.jta = jta;
        public void start() {
            Thread ballThread = new Thread(this);
            ballThread.start();
        public void run() {
            Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
            yPos = getHeight() / 2 + (rad / 2) + rad;
            while (true) {
                if (moveForward)
                    xPos++;
                else
                    xPos--;
                if (xPos > getWidth() - (2 * rad))
                    moveForward = false;
                else if (xPos < xPos_Start + (2 * rad)) moveForward = true;
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        if (xPos % 20 == 0) {
                            jta.append("xPos = " + xPos + "\n");
                            jta.setCaretPosition(jta.getText().length());
                        ball.paintImmediately(ball.getBounds());
                try {
                    Thread.sleep(pauseSleep);
                catch (InterruptedException ie) {
                    break;
        public synchronized void stop() {
            thread = null;
/*  Not needed for Swing Component (only AWT ?)
          public void update(Graphics g)
               if(dblImage == null)
                    dblImage = createImage(this.getSize().width, this.getSize().height);
                    dbg = dblImage.getGraphics();
               dbg.setColor(getBackground());
               dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
               dbg.setColor(getForeground());
               paintComponent(dbg);
               g.drawImage(dblImage, 0, 0, this);
        public void paintComponent(Graphics g) {
            g.setColor(getBackground());
            g.fillRect(0, 0, getWidth(), getHeight());
            g.setColor(ballColor);
            g.fillOval(xPos - rad, yPos - rad, 2 * rad, 2 * rad);
}If anyone plays with this & finds issues/problems or makes improvements to its mechanism, would be nice to post back to this thread.

hello,
I found that while configuration of AM there was an warning
Command deploy executed successfully with following warning messages: Error occurred during application loading phase. The application will not run properly. Please fix your application and redeploy.
WARNING: com.sun.enterprise.deployment.backend.IASDeploymentException: ContainerBase.addChild: start: LifecycleException:  java.lang.NoClassDefFoundError
Successfully deployed /amserverthis might help in resolving the issue.
regards,
sumant

Similar Messages

  • Application install starts but status is failed

    Hi guys,
    I'm running into an issue where I'm deploying Microsoft Office 2010 Pro and although the install starts the status in Software Center is "Failed". Once application finishes installing and I click on "Reply" button status changes to "Installed".
    This seems to happen only with this software.
    The fail error code is: 0x87D00324(-2016410844).
    Doing a search on the forums I see that people are suggesting to try a different detection methods for my deployment and I have tried different ones but to no luck. I also tried starting the install by launching .exe and .msi but that didn't make a difference. 
    Do you guys have any suggestions?
    Steve

    +++ Starting Install enforcement for App DT "Microsoft Office 2010 Pro" ApplicationDeliveryType - ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision - 2, ContentPath - C:\Windows\ccmcache\1, Execution Context - System AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    A user is logged on to the system. AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Performing detection of app deployment type Microsoft Office 2010 Pro(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, revision 2) for system. AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    +++ Application not discovered. [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision: 2] AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    App enforcement environment:
    Context: Machine
    Command line: setup.exe
    Allow user interaction: Yes
    UI mode: 1
    User token: null
    Session Id: 2
    Content path: C:\Windows\ccmcache\1
    Working directory: AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Prepared working directory: C:\Windows\ccmcache\1 AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Prepared command line: "C:\Windows\ccmcache\1\setup.exe" AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Executing Command line: "C:\Windows\ccmcache\1\setup.exe" with user context AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Working directory C:\Windows\ccmcache\1 AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Post install behavior is BasedOnExitCode AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Waiting for process 4340 to finish. Timeout = 120 minutes. AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Process 4340 terminated with exitcode: 0 AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Looking for exit code 0 in exit codes table... AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    Performing detection of app deployment type Microsoft Office 2010 Pro(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, revision 2) for system. AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    +++ Application not discovered. [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision: 2] AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    ++++++ App enforcement completed (0 seconds) for App DT "Microsoft Office 2010 Pro" [ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977], Revision: 2, User SID: ] ++++++ AppEnforce 9/4/2014 10:33:53 AM 1576 (0x0628)
    +++ Starting Uninstall enforcement for App DT "Microsoft Office 2010 Pro" ApplicationDeliveryType - ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision - 2, ContentPath - C:\Windows\ccmcache\1, Execution Context - System AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    A user is logged on to the system. AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Performing detection of app deployment type Microsoft Office 2010 Pro(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, revision 2) for system. AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    +++ Discovered application [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision: 2] AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    App enforcement environment:
    Context: Machine
    Command line: msiexec /x "x86\ProPlus.WW\ProPlusWW.msi"
    Allow user interaction: Yes
    UI mode: 1
    User token: null
    Session Id: 2
    Content path: C:\Windows\ccmcache\1
    Working directory: AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Prepared working directory: C:\Windows\ccmcache\1 AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Found executable file msiexec with complete path C:\Windows\system32\msiexec.exe AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Prepared command line: "C:\Windows\system32\msiexec.exe" /x "x86\ProPlus.WW\ProPlusWW.msi" AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Executing Command line: "C:\Windows\system32\msiexec.exe" /x "x86\ProPlus.WW\ProPlusWW.msi" with user context AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Working directory C:\Windows\ccmcache\1 AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Post install behavior is BasedOnExitCode AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Waiting for process 2688 to finish. Timeout = 120 minutes. AppEnforce 9/4/2014 11:11:30 AM 4496 (0x1190)
    Process 2688 terminated with exitcode: 1603 AppEnforce 9/4/2014 11:11:47 AM 4496 (0x1190)
    Looking for exit code 1603 in exit codes table... AppEnforce 9/4/2014 11:11:47 AM 4496 (0x1190)
    Unmatched exit code (1603) is considered an execution failure. AppEnforce 9/4/2014 11:11:47 AM 4496 (0x1190)
    ++++++ App enforcement completed (16 seconds) for App DT "Microsoft Office 2010 Pro" [ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977], Revision: 2, User SID: ] ++++++ AppEnforce 9/4/2014 11:11:47 AM 4496 (0x1190)
    +++ Starting Uninstall enforcement for App DT "Microsoft Office 2010 Pro" ApplicationDeliveryType - ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision - 2, ContentPath - C:\Windows\ccmcache\1, Execution Context - System AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    A user is logged on to the system. AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Performing detection of app deployment type Microsoft Office 2010 Pro(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, revision 2) for system. AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    +++ Discovered application [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977, Revision: 2] AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    App enforcement environment:
    Context: Machine
    Command line: msiexec /x "x86\ProPlus.WW\ProPlusWW.msi"
    Allow user interaction: Yes
    UI mode: 1
    User token: null
    Session Id: 2
    Content path: C:\Windows\ccmcache\1
    Working directory: AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Prepared working directory: C:\Windows\ccmcache\1 AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Found executable file msiexec with complete path C:\Windows\system32\msiexec.exe AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Prepared command line: "C:\Windows\system32\msiexec.exe" /x "x86\ProPlus.WW\ProPlusWW.msi" AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Executing Command line: "C:\Windows\system32\msiexec.exe" /x "x86\ProPlus.WW\ProPlusWW.msi" with user context AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Working directory C:\Windows\ccmcache\1 AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Post install behavior is BasedOnExitCode AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Waiting for process 1544 to finish. Timeout = 120 minutes. AppEnforce 9/4/2014 11:11:55 AM 4496 (0x1190)
    Process 1544 terminated with exitcode: 1618 AppEnforce 9/4/2014 11:12:06 AM 4496 (0x1190)
    Looking for exit code 1618 in exit codes table... AppEnforce 9/4/2014 11:12:06 AM 4496 (0x1190)
    ++++++ App enforcement completed (11 seconds) for App DT "Microsoft Office 2010 Pro" [ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_390a03d8-32b9-4622-88ce-d3e201274977], Revision: 2, User SID: ] ++++++ AppEnforce 9/4/2014 11:12:07 AM 4496 (0x1190)
    +++ Starting Install enforcement for App DT "CMTrace" ApplicationDeliveryType - ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6, Revision - 1, ContentPath - C:\Windows\ccmcache\2, Execution Context - User AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    A user is logged on to the system. AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Performing detection of app deployment type CMTrace(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6, revision 1) for user. AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    +++ Application not discovered. [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6, Revision: 1] AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    App enforcement environment:
    Context: User
    Command line: "install.bat"
    Allow user interaction: Yes
    UI mode: 1
    User token: not null
    Session Id: 2
    Content path: C:\Windows\ccmcache\2
    Working directory: AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Prepared working directory: C:\Windows\ccmcache\2 AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Prepared command line: "C:\Windows\ccmcache\2\install.bat" AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Executing Command line: "C:\Windows\ccmcache\2\install.bat" with user context AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Working directory C:\Windows\ccmcache\2 AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Post install behavior is BasedOnExitCode AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Waiting for process 5028 to finish. Timeout = 120 minutes. AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Process 5028 terminated with exitcode: 0 AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Looking for exit code 0 in exit codes table... AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    Performing detection of app deployment type CMTrace(ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6, revision 1) for user. AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    +++ Discovered application [AppDT Id: ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6, Revision: 1] AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    ++++++ App enforcement completed (0 seconds) for App DT "CMTrace" [ScopeId_352419C3-121B-4F48-A71E-DAC7E1D9A151/DeploymentType_355e20a1-4f9d-443a-8a6d-7e0c9df56fc6], Revision: 1, User SID: S-1-5-21-1792559092-1865782889-1767051203-1000] ++++++ AppEnforce 9/4/2014 11:14:12 AM 4596 (0x11F4)
    The weird thing is that the Failed status is as soon as the application starts installing. I just run setup.exe in the command line.

  • JApplet's init, start and run

    I'm new to JApplets. My question is, does an applet need to have init, start and run methods? If it dosn't, does it essentially require any one of these three? What's the basic function of each anyways??
    thanks a lot up front

    To have a applet to work you need the init() method
    the run and start methods are normally if you are useing
    a thread
    pa hopes this helped

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Server0  doesnot start and stalls at "starting apps" status

    The Server0 was running fine and suddenly started stalling at "starting apps" status.  The SDM and Dispatcher are running fine. The Java_Home variable is set correctly and the System has 2GB RAM . The Developer Trace file is showing these errors after
    "starting frameworks" step
    [Thr 2440] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2440] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Jan 12 13:49:07 2007
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_09-b05 mixed mode):
    "SAPEngine_TREXRefreshCache_0" prio=10 tid=0x00fd0e90 nid=0x1674 waiting on condition [6caf000..6cafd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sapportals.trex.util.cache.CacheFactory$RefreshThread.run(CacheFactory.java:522)
    "SAPEngine_System_Thread[impl:5]_94" prio=5 tid=0x00fbe120 nid=0x166c in Object.wait() [6c5f000..6c5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590118> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.log_configurator.archive.Buffer.getTask(Buffer.java:38)
         - locked <0x15590118> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:34)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_93" prio=10 tid=0x00fbee00 nid=0x1670 in Object.wait() [6c1f000..6c1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x00fbd8c0 nid=0x1660 in Object.wait() [6bdf000..6bdfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590378> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x15590378> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_91" prio=10 tid=0x00fbc6d0 nid=0x1668 in Object.wait() [6b9f000..6b9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590458> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590458> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x00fbc980 nid=0x165c in Object.wait() [6b5f000..6b5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590610> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x15590610> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:18)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_89" prio=5 tid=0x00fbce90 nid=0x1664 in Object.wait() [6b1f000..6b1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_88" prio=5 tid=0x00fba520 nid=0x1654 in Object.wait() [6adf000..6adfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_87" prio=10 tid=0x00fbae90 nid=0x1658 in Object.wait() [6a9f000..6a9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_86" prio=10 tid=0x00fb80e0 nid=0x1650 in Object.wait() [6a5f000..6a5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_85" prio=10 tid=0x00fb8760 nid=0x1638 in Object.wait() [6a1f000..6a1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590ad8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x15590ad8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_84" prio=10 tid=0x00fb7600 nid=0x164c in Object.wait() [69df000..69dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_83" prio=10 tid=0x00fb7c30 nid=0x1644 in Object.wait() [699f000..699fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_82" prio=10 tid=0x00fb6980 nid=0x1648 in Object.wait() [695f000..695fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590e98> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x15590e98> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x00fb5490 nid=0x1640 in Object.wait() [691f000..691fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590fe8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x15590fe8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_80" prio=5 tid=0x00fb3950 nid=0x163c in Object.wait() [68df000..68dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_79" prio=10 tid=0x00fb2770 nid=0x1630 in Object.wait() [689f000..689fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_78" prio=10 tid=0x00fb14b0 nid=0x1634 in Object.wait() [685f000..685fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591270> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591270> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_77" prio=10 tid=0x00fb0170 nid=0x161c in Object.wait() [681f000..681fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591400> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591400> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_76" prio=10 tid=0x00faf230 nid=0x1624 in Object.wait() [67df000..67dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591590> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x15591590> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_75" prio=5 tid=0x00fafcb0 nid=0x1628 in Object.wait() [679f000..679fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_74" prio=10 tid=0x00faea90 nid=0x162c in Object.wait() [675f000..675fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591740> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591740> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_73" prio=10 tid=0x00fad620 nid=0x1618 in Object.wait() [671f000..671fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_72" prio=10 tid=0x00fac460 nid=0x1620 in Object.wait() [66df000..66dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_71" prio=10 tid=0x00fab1d0 nid=0x1610 in Object.wait() [669f000..669fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_70" prio=10 tid=0x00faa150 nid=0x1614 in Object.wait() [665f000..665fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591c70> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591c70> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_69" prio=5 tid=0x00faad30 nid=0x1604 in Object.wait() [661f000..661fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_67" prio=10 tid=0x00fa99f0 nid=0x160c in Object.wait() [65df000..65dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_68" prio=10 tid=0x00fa8760 nid=0x15fc waiting on condition [659f000..659fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.mp.core.svc.CAFMPCoreServiceFrame.initializePermissions(CAFMPCoreServiceFrame.java:502)
         at com.sap.caf.mp.core.svc.CAFMPCoreServiceFrame.initializeService(CAFMPCoreServiceFrame.java:183)
         at com.sap.caf.mp.core.svc.CAFMPCoreServiceFrame.start(CAFMPCoreServiceFrame.java:306)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:211)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_65" prio=10 tid=0x00fa7430 nid=0x1608 in Object.wait() [655f000..655fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_66" prio=10 tid=0x00fa61a0 nid=0x1600 in Object.wait() [651f000..651fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591c70> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591c70> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_64" prio=5 tid=0x00fa6d50 nid=0x15f8 in Object.wait() [64df000..64dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_63" prio=10 tid=0x00fa59f0 nid=0x15d8 in Object.wait() [649f000..649fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591270> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591270> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_62" prio=10 tid=0x00fa46a0 nid=0x15f4 in Object.wait() [645f000..645fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_61" prio=10 tid=0x00fa3410 nid=0x15c0 in Object.wait() [641f000..641fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_59" prio=10 tid=0x00fa2230 nid=0x15d0 in Object.wait() [63df000..63dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_60" prio=5 tid=0x00fa2cb0 nid=0x15e8 in Object.wait() [639f000..639fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_58" prio=10 tid=0x00fa1a90 nid=0x15e0 in Object.wait() [635f000..635fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_57" prio=10 tid=0x00fa0590 nid=0x15c8 in Object.wait() [631f000..631fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_56" prio=10 tid=0x00f9f520 nid=0x15f0 in Object.wait() [62df000..62dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_55" prio=10 tid=0x00f9fe90 nid=0x15ec in Object.wait() [629f000..629fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_54" prio=10 tid=0x00f9ecb0 nid=0x15e4 in Object.wait() [625f000..625fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155918e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_53" prio=10 tid=0x00f9c0f0 nid=0x15dc in Object.wait() [621f000..621fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_52" prio=10 tid=0x00f9c7c0 nid=0x15d4 in Object.wait() [61df000..61dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15592fe8> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15592fe8> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_51" prio=10 tid=0x00f9b490 nid=0x15cc in Object.wait() [619f000..619fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_50" prio=10 tid=0x00f9be90 nid=0x15c4 in Object.wait() [615f000..615fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593268> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15593268> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_49" prio=10 tid=0x00f9ad10 nid=0x15bc in Object.wait() [611f000..611fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_48" prio=10 tid=0x00f999f0 nid=0x15b8 in Object.wait() [60df000..60dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593718> (a com.sap.engine.core.configuration.impl.cache.ConfigurationCache)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:856)
         - locked <0x15593718> (a com.sap.engine.core.configuration.impl.cache.ConfigurationCache)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:748)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:694)
         - locked <0x15593790> (a com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl)
         at com.sap.engine.services.rmi_p4.server.P4ObjectBrokerServerImpl.createRedirConfig(P4ObjectBrokerServerImpl.java:313)
         at com.sap.engine.services.rmi_p4.server.P4ObjectBrokerServerImpl.postInit(P4ObjectBrokerServerImpl.java:254)
         at com.sap.engine.services.rmi_p4.server.P4ObjectBrokerServerImpl.postInit(P4ObjectBrokerServerImpl.java:1077)
         at com.sap.engine.services.rmi_p4.P4ObjectBroker.<init>(P4ObjectBroker.java:298)
         at com.sap.engine.services.rmi_p4.server.P4ObjectBrokerServerImpl.<init>(P4ObjectBrokerServerImpl.java:110)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at com.sap.engine.services.rmi_p4.P4ObjectBroker.loadInstance(P4ObjectBroker.java:264)
         - locked <0x50bc8c58> (a java.lang.Class)
         at com.sap.engine.services.rmi_p4.P4ObjectBroker.init(P4ObjectBroker.java:159)
         at com.sap.engine.services.rmi_p4.P4ObjectBroker.init(P4ObjectBroker.java:141)
         at com.sap.engine.services.rmi_p4.server.ClusterOrganizer.<init>(ClusterOrganizer.java:69)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.<init>(P4SessionProcessor.java:80)
         at com.sap.engine.services.rmi_p4.server.P4ServiceFrame.start(P4ServiceFrame.java:79)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:211)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_47" prio=5 tid=0x00f98760 nid=0x15b0 in Object.wait() [609f000..609fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_45" prio=10 tid=0x00f82960 nid=0x15b4 in Object.wait() [605f000..605fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:117)
         - locked <0x155928f8> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_46" prio=5 tid=0x00f972f0 nid=0x15ac in Object.wait() [601f000..601fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_44" prio=10 tid=0x00f97880 nid=0x15a4 in Object.wait() [5fdf000..5fdfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_43" prio=10 tid=0x00f97ca0 nid=0x159c in Object.wait() [5f9f000..5f9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593e88> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15593e88> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_42" prio=10 tid=0x00f962a0 nid=0x15a8 in Object.wait() [5f5f000..5f5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_41" prio=10 tid=0x00f96660 nid=0x1598 in Object.wait() [5ddf000..5ddfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594110> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15594110> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:105)
    "SAPEngine_System_Thread[impl:5]_40" prio=10 tid=0x00f96970 nid=0x15a0 in Object.wait() [5d9f000..5d9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPJarResourceCloseTimeoutThread" daemon prio=5 tid=0x00f92e90 nid=0x1588 in Object.wait() [5d5f000..5d5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594348> (a com.sap.engine.frame.core.load.res.JarThread)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.frame.core.load.res.JarThread.run(JarThread.java:32)
         - locked <0x15594348> (a com.sap.engine.frame.core.load.res.JarThread)
    "Thread-14" daemon prio=5 tid=0x00f80b30 nid=0x1488 in Object.wait() [5f1f000..5f1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155943e0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x155943e0> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.cache.util.ReferenceQueueRunnable.run(ReferenceQueueRunnable.java:43)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x00f7d5a0 nid=0x148c in Object.wait() [5edf000..5edfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594450> (a java.lang.Object)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:134)
         - locked <0x15594450> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f7d220 nid=0x146c in Object.wait() [5e9f000..5e9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594500> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15594500> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x00f7cc90 nid=0x1460 in Object.wait() [5e5f000..5e5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594588> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:115)
         - locked <0x15594588> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f78310 nid=0x1450 in Object.wait() [5e1f000..5e1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594618> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15594618> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "SeedGenerator Thread" daemon prio=2 tid=0x00f74330 nid=0x12e8 in Object.wait() [5d1f000..5d1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155946a0> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Object.wait(Object.java:429)
         at sun.security.provider.SeedGenerator$ThreadedSeedGenerator.run(SeedGenerator.java:282)
         - locked <0x155946a0> (a sun.security.provider.SeedGenerator$ThreadedSeedGenerator)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_EnquReader" prio=5 tid=0x00f65e90 nid=0x120c runnable [5cdf000..5cdfd90]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at com.sap.bc.krn.enqu.EncomiHandle.ReceiveMessage(EncomiHandle.java:483)
         - locked <0x15594748> (a java.lang.Object)
         at com.sap.bc.krn.enqu.EnccliMultiplexHandle.receive(EnccliMultiplexHandle.java:771)
         at com.sap.bc.krn.enqu.ReadRunnable.run(EnccliMultiplexHandle.java:958)
         at java.lang.Thread.run(Thread.java:534)
    "SAP J2EE Engine|MS Ping Thread" prio=5 tid=0x00f638f0 nid=0x11c0 waiting on condition [5c9f000..5c9fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.core.cluster.impl6.ms.MSRawConnection$MSPingRunner.run(MSRawConnection.java:2383)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_System_Thread[impl:5]_39" prio=10 tid=0x00f59460 nid=0x1160 in Object.wait() [5c5f000..5c5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15592fe8> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15592fe8> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Timeout Service Internal Thread" prio=5 tid=0x00f59e90 nid=0x115c in Object.wait() [5c1f000..5c1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594970> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:476)
         - locked <0x15594970> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:20)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_37" prio=5 tid=0x00f57180 nid=0x1158 in Object.wait() [5bdf000..5bdfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_36" prio=10 tid=0x00f56090 nid=0x1154 in Object.wait() [5b9f000..5b9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15594ad0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15594ad0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_35" prio=10 tid=0x00f56690 nid=0x1150 in Object.wait() [5b5f000..5b5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_34" prio=10 tid=0x00f552f0 nid=0x114c in Object.wait() [5b1f000..5b1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590c28> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_33" prio=10 tid=0x00f55e00 nid=0x1148 in Object.wait() [5adf000..5adfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_32" prio=5 tid=0x00f54810 nid=0x1144 in Object.wait() [5a9f000..5a9fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590748> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_31" prio=10 tid=0x00f520b0 nid=0x1140 in Object.wait() [5a5f000..5a5fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591400> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15591400> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_30" prio=10 tid=0x00f523c0 nid=0x113c in Object.wait() [5a1f000..5a1fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155925e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_29" prio=10 tid=0x00f52e90 nid=0x1138 in Object.wait() [59df000..59dfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x15590868> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_28" prio=10 tid=0x00f519d0 nid=0x1134 in Object.wait() [599f000..599fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:92)
         - locked <0x155901e0> (a com.sap.engine.core.service630.container.ServiceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_27" prio=10 tid=0x00f50510 nid=0x1130 in Object.wait()

    Hi ,
    We are facing the same kind of problem in our PI 7.0 Development system.
    Its J2EE Server node got stuck into a  server starting loop.
    The error message is as follows.
    [Thr 3372] JLaunchISetState: change state from [Starting (2)] to
    [Starting applications (10)]
    [Thr 6208] JLaunchIExitJava: exit hook is called (rc = 666)
    [Thr 6208]
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 6208] JLaunchCloseProgram: good bye (exitcode = 666)
    Is anybody having solution for this problem?
    Regards,
    Nilesh

  • JBOSS  4.0 Application Server start up problem?

    1. JBOSS Application Server start up problem?
    I have installed the JBOSS 4.0 application server in eclipse 3.4(Ganymede) in order to work with the adempiere open source ERP.When I start the JBOSS server,It displays the message &ldquo;Server started in Xm:XXs:XXXms&rdquo; in the console window.But the progress bar in server window is still running.Once the time out is over,it displays the message server cannot be started.
    What should I do in order to make eclipse know that the server is started(message in console as server started) and set its status to &ldquo;Started&rdquo;?
    2.Is it possible to copy and paste the .war created in eclipse 3.4 using JBOSS 4.0 to Glassfish v2 which requires archive file .ear form in NetBeans IDE 6.1?

    i also noticed when I start the server some times the first line it display in the container will be starting Microcontainer some times it diaplays microkernel?You can find out reason based on that also?
    Actually I was using 8080 port for my Oracle 10g Express Edition.Even when I change the port in server view,I had same problem.In order to recover from the problem,I finally changed my database port,My Jboss 4.0 has started succesfully. When I access the JBOSS in URL http://localhost:8080/jmx-console,i got the error can you tell me what can i do?
    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
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:97)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:346)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:414)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
    root cause
    Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
         org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:105)
         org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:929)
         org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:758)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:382)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
         org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.28 logs.
    Apache Tomcat/5.0.28

  • Adalnctl failed to start with status 127

    OS:red hat as4
    ebs: 11.5.9
    now my system can be started,but the adalnctl failed to start with status 127.
    the error message is about lsnrctl which saied that lsnrctl: command not found.
    but when i start the lsnrctl with oracle owner,the lsnrctl was started immediately.
    however,i found that,the lsnrctl was conected to the port 1521,the adalnctl to the port 1626.
    please help me to see it!
    the cdalnctl log was this:
    LSNRCTL for Linux: Version 9.2.0.3.0 - Production on 20-MAY-2009 17:03:27
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=ebstest)(Port=1626))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    Starting listener process APPS_PROD.
    LSNRCTL for Linux: Version 9.2.0.3.0 - Production on 20-MAY-2009 17:03:27
    Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
    Starting /u01/oradata/prodora/8.0.6/bin/tnslsnr: please wait...
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    Linux Error: 2: No such file or directory
    adalnctl.sh: exiting with status 1
    Checking status for listener process APPS_PROD.
    adalnctl.sh: exiting with status 1
    ./adalnctl.sh: line 126: lsnrctl: command not found
    Starting listener process APPS_PROD.
    ./adalnctl.sh: line 137: lsnrctl: command not found
    adalnctl.sh: exiting with status 127
    Checking status for listener process APPS_PROD.
    adalnctl.sh: exiting with status 1

    oh maybe i found it
    i have more than one listener.ora
    [root@ebstest /]# find -name listener.ora
    ./u01/oradata/prodora/iAS/hs/admin/listener.ora
    ./u01/oradata/prodora/iAS/network/admin/samples/listener.ora
    ./u01/oradata/prodora/8.0.6/network/admin/samples/listener.ora
    ./u01/oradata/prodora/8.0.6/network/admin/PROD_ebstest/listener.ora
    ./u01/oradata/proddb/9.2.0/network/admin/samples/listener.ora
    ./u01/oradata/proddb/9.2.0/network/admin/PROD_ebstest/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010106/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010108/listener.ora
    ./u01/oradata/proddb/9.2.0/appsutil/out/PROD_ebstest/01010121/listener.ora
    and the other listener.ora was about port 1626
    [root@ebstest /]# cat ./u01/oradata/prodora/8.0.6/network/admin/PROD_ebstest/listener.ora
    # $Header: admk80ln_ux.sql 115.13 2003/04/03 08:05:06 skghosh noship $
    # LISTENER.ORA For Oracle Applications
    # This file is automatically generated
    APPS_PROD =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= TCP)(Host= ebstest)(Port= 1626))
    SID_LIST_APPS_PROD =
    (SID_LIST =
    ( SID_DESC = ( SID_NAME = FNDSM_PROD )
    ( ORACLE_HOME = /u01/oradata/prodora/8.0.6 )
    ( PROGRAM = /u01/oradata/prodappl/fnd/11.5.0/bin/FNDSM )
    ( envs='MYAPPSORA=/u01/oradata/prodappl/APPSPROD_ebstest.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/u01/oradata/prodcomn/admin/scripts/PROD_ebstest/gsmstart.sh' )
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /u01/oradata/prodora/8.0.6 )
    ( PROGRAM = /u01/oradata/prodappl/fnd/11.5.0/bin/FNDFS )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1,LD_LIBRARY_PATH=/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,SHLIB_PATH=/usr/lib:/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,LIBPATH=/usr/dt/lib:/usr/openwin/lib:/u01/oradata/prodora/8.0.6/lib,APPLFSTT=PROD,APPLFSWD=/u01/oradata/prodappl/admin' )
    STARTUP_WAIT_TIME_APPS_PROD = 0
    CONNECT_TIMEOUT_APPS_PROD = 10
    TRACE_LEVEL_APPS_PROD = OFF
    LOG_DIRECTORY_APPS_PROD = /u01/oradata/prodora/8.0.6/network/admin
    LOG_FILE_APPS_PROD = APPS_PROD
    TRACE_DIRECTORY_APPS_PROD = /u01/oradata/prodora/8.0.6/network/admin
    TRACE_FILE_APPS_PROD = APPS_PROD

  • Disabling progress status window permanently

    Is it possible to permanently disable the square progress status window that appears when I convert documents to PDF files?

    I just canceled out of one yesterday afternoon running under LV 8.2 with no issue. If you are removing the old data, did you shutdown the app using the DB?
    If that doesn't help the only answer I know of sounds like I am being a wise-arse.
    Post an zip that demonstates this issue then "take two upgrades and post back next year."
    I don't mind locked VI if they work. When they don't I have no choice but to be frutstrated. The lock-down tie-up with Shared variables combined with what appears to be poor testing (historical trends recall funtion swapped start and stop times because developer did not use type defs, intermittant lock-ups of the DB on multiple machines with absolutley no tools to troubleshoot, ... ) has resulted in me NOT recomending DSC for an app for a couple of years now. The only reason I still touch it is I have apps running DSC for ten years and they have to keep running.
    Sorry to dump on you. If we ever meet we can discuss who is more disappointed.
    Ben
    (Former Top Contributor to the DSC forum)
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to invoke an application when another applications is started

      Hi All,
        Good day. I am a newbie to AppleScript and writing down this seeking your kind help here.
    Making my question detail here,
    Applcation 1 :  Consider this to be some thing kind of server stuff which is running.
    Application 2:  Consider this to be an application like Automator or any other automation tool for example Sikuli or Squish
    My actual scenario is that, When Application 1- is still running and upon its completion I want to instruct to another application to start.
    Suppose consider that Application 1 is running and when it is finished I want to invoke another application via apple script.
    So here, I want both the scripts from you people that can do this.
    > Script for -
    1. Invoke Application 1 (via Applescript itself) let it run for few minutes(as it is server kind of stuff, i want it to run) when this is complete then I want to invoke the application 2
    2.  I am manually invoking the application 1 and I am going away,  as it will run for few minutes then on Application completes its job I want Application 2 to be Invoked.
    I believe, I am pretty explanatory here, so please help with these
    Regars,
    OsmanBerg

    Does Appliction 1 quit by itself when it's done? If so a simple loop should do the trick - periodically check to see if the app is still running:
    -- start App1
    tell application "App1" to activate
    -- we know it's running
    set isRunning to true
    tell application "System Events"
      -- do this until the app is no longer running
              repeat until isRunning is false
      -- has the app quit?
                        if (exists application process "App1") = false then
      -- if so, set our flag accordingly
                                  set isRunning to false
                        end if
      delay 2 -- wait 2 seconds before checking again
              end repeat
    end tell
    -- if we get here we know the first app has quit, so:
    tell application "App2" to activate

  • Whenever i start my ipad2 the applications automatically starts to open and close automatically jumps from one screen to another

    Whenever i start my ipad2 the applications automatically starts to open and close automatically jumps from one screen to another cannot operate the ipad at all, tried switching off and back on again, also restored the ipad but of no use

    try restart
    http://support.apple.com/kb/HT1430

  • Applications have started quitting suddenly

    Over the last couple of weeks or so a number of applications have started to frequently crash for no apparent reason, the only significant (for me at least!) thing that I changed on my Mac over that period is deleting and reinstalling the 3ivx program due to the problems it was causing with the new version of iPhoto.
    The main issue I’m currently having is with Photoshop CS5 as everytime I go to save a file it quits before I can do so. I get the following crash report message
    Other programs it has effected recently are Safari, Adobe Bridge and iTunes. Could be a problem with dodgy RAM?
    Any help would be greatly appreciated.

    I’ve just had the same thing happen with Illustrator, crash report below:
    Process:         Adobe Illustrator [15657]
    Path:            /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         399 (15.0.2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2011-11-13 11:50:34.431 +0000
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          433658 sec
    Crashes Since Last Report:           44203
    Per-App Interval Since Last Report:  112479 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      0043B584-C880-46FE-A96B-E50E1D256830
    Crashed Thread:  18  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    objc[15657]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x986a3c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x986a31f6 mach_msg + 70
    2   com.apple.CoreGraphics                  0x96f03d56 _CGSReenableUpdateForConnections + 249
    3   com.apple.CoreGraphics                  0x96f03ac7 CGSReenableUpdateForConnections + 412
    4   com.apple.CoreGraphics                  0x96f03924 CGSReenableUpdate + 35
    5   com.apple.AppKit                        0x9bb5df41 NSEnableScreenUpdates + 46
    6   com.apple.AppKit                        0x9bdbff31 -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 782
    7   com.apple.AppKit                        0x9bdbf93e -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector :contextInfo:] + 918
    8   com.apple.AppKit                        0x9bdb7973 -[NSApplication beginModalSessionForWindow:] + 72
    9   com.apple.AppKit                        0x9bdc03a8 -[NSApplication runModalForWindow:] + 129
    10  com.apple.AppKit                        0x9c094c24 -[NSSavePanel runModal] + 380
    11  com.apple.AppKit                        0x9c091819 -[NSSavePanel runModalForDirectory:file:types:] + 276
    12  com.apple.AppKit                        0x9c2c05ec -[NSNavOpenPanel run] + 140
    13  com.apple.AppKit                        0x9c2c2168 _NSNavDialogRun + 201
    14  com.adobe.illustrator                   0x006d05b3 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3671171
    15  com.adobe.illustrator                   0x006ce52c AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3662844
    16  com.adobe.illustrator                   0x006ced46 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3664918
    17  com.adobe.illustrator                   0x000a4e4f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 556339
    18  com.adobe.illustrator                   0x0009a4f0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 512980
    19  com.adobe.illustrator                   0x00086382 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 430694
    20  com.adobe.illustrator                   0x00086563 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 431175
    21  com.adobe.illustrator                   0x0058880f AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 2328287
    22  com.adobe.illustrator                   0x00323f1a AWS_CUI_SaveAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 6850
    23  com.adobe.illustrator                   0x0058110f AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 2297823
    24  com.adobe.illustrator                   0x0049d831 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 1365761
    25  com.adobe.illustrator.plugins.LinkPalette          0x151bf40d LinkEntryData::ReplaceArt(AIPlaceRequestData*) + 409
    26  com.adobe.illustrator.plugins.LinkPalette          0x151be720 DoRelink(IADMHierarchyList) + 204
    27  com.adobe.illustrator.plugins.LinkPalette          0x151b830c LinkDialog::DoReplace() + 70
    28  com.adobe.illustrator.plugins.LinkPalette          0x151bae65 LinkDialog::Notify(IADMNotifier) + 379
    29  com.adobe.coretech.adm                  0x0ccdab0d ADMBase::DoNotify(ADMNotifier*) + 125
    30  com.adobe.coretech.adm                  0x0ccdab72 ADMBase::DoNotify(ADMNotifier*) + 226
    31  com.adobe.coretech.adm                  0x0cd0977f ADMItem::DoNotify(ADMNotifier*) + 37
    32  com.adobe.coretech.adm                  0x0cd09735 ADMItem::SendNotify(char const*) + 67
    33  com.adobe.coretech.adm                  0x0cd5362f MacTracker::StopUsingTracker() + 67
    34  com.adobe.coretech.adm                  0x0cd54374 MacTracker::HandleMacEvent(ADMDialog*, ADMItem*, EventRecord const*) + 248
    35  com.adobe.coretech.adm                  0x0cd3bf79 MacDialog::DoEvent(EventRecord const*) + 805
    36  com.adobe.coretech.adm                  0x0cd3cb1d MacDialog::HandleCarbonEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 2425
    37  com.apple.HIToolbox                     0x975ea920 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    38  com.apple.HIToolbox                     0x97466803 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    39  com.apple.HIToolbox                     0x97465c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    40  com.apple.HIToolbox                     0x9747aaa9 SendEventToEventTarget + 76
    41  com.apple.HIToolbox                     0x9747b229 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 1915
    42  com.apple.HIToolbox                     0x97466cbe _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    43  com.apple.HIToolbox                     0x97465c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    44  com.apple.HIToolbox                     0x9747aaa9 SendEventToEventTarget + 76
    45  com.adobe.illustrator                   0x000aadc0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 580772
    46  com.apple.HIToolbox                     0x975ea920 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    47  com.apple.HIToolbox                     0x97466803 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    48  com.apple.HIToolbox                     0x97465c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    49  com.apple.HIToolbox                     0x97465a98 SendEventToEventTargetWithOptions + 75
    50  com.apple.HIToolbox                     0x9747b6fe _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    51  com.apple.HIToolbox                     0x97466cbe _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    52  com.apple.HIToolbox                     0x97465c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    53  com.apple.HIToolbox                     0x9747aaa9 SendEventToEventTarget + 76
    54  com.apple.HIToolbox                     0x975ea76c ToolboxEventDispatcher + 82
    55  com.apple.HIToolbox                     0x975ea89b RunApplicationEventLoop + 236
    56  com.adobe.illustrator                   0x000ab0c1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 581541
    57  com.adobe.illustrator                   0x001130bc AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1007520
    58  com.adobe.illustrator                   0x000d424a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 749870
    59  com.adobe.illustrator                   0x00003436 0x1000 + 9270
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x986a690a kevent + 10
    1   libdispatch.dylib                       0x9bad5c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9bad46a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9198382a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x046b4126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x046acdb0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services                  0x046b418c AMTThread::Worker(void*) + 24
    6   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9198c42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9017ef36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x900f0579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x90152755 MPWaitOnQueue + 200
    6   AdobeACE                                0x01677579 0x163d000 + 238969
    7   AdobeACE                                0x01676f71 0x163d000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x901536b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9198382a pthread_cond_wait + 48
    3   AdobeAGM                                0x01ab159d AGMInitialize + 3243373
    4   AdobeAGM                                0x01ab21ed AGMInitialize + 3246525
    5   AdobeAGM                                0x01ab7de0 AGMInitialize + 3270064
    6   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9198382a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x135ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x13344b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x135ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x135ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x135ab426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9198382a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x135ab1af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x13344b0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x135ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x135ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x135ab426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x986a5b42 __select + 10
    1   com.apple.CoreFoundation                0x94445195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x986a3c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x90152b6c MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x28393124 ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x901536b4 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x986a5bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9198c7b9 nanosleep$UNIX2003 + 187
    2   com.adobe.illustrator.plugins.Scripting Support          0x0ece983b PluginMain + 447467
    3   com.adobe.illustrator.plugins.Scripting Support          0x0eccba13 PluginMain + 325059
    4   com.adobe.illustrator.plugins.Scripting Support          0x0ece9948 PluginMain + 447736
    5   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x986a3c5e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00678014 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006791f9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006793c9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x901536b4 PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x986a3c5e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00678014 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006791f9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006793c9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x901536b4 PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x986a5a9a __recvfrom + 10
    1   libsystem_c.dylib                       0x9198c4a2 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x152206cf Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x1521f76e Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x1521e61f Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x1521e671 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x1521e6fb Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x15218afe Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x15218ce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x152198c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x152199c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x1521cdb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x1521d059 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x1521d687 Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x1521d884 Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x1520f826 Login + 1654
    16  ServiceManager-Launcher.dylib           0x15210c71 Login + 6849
    17  ServiceManager-Launcher.dylib           0x1521ddf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x15220341 Invoke + 53977
    19  libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x919dbf7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x135ab177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x135c60ee APXGetHostAPI + 2709454
    5   com.adobe.adobeswfl                     0x135ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x135ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x135ab426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x919dbf7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x135ab177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x137224b8 APXGetHostAPI + 4135832
    5   com.adobe.adobeswfl                     0x135ab29c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x135ab307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x135ab426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x986a602e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x919d9ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x919db6fe start_wqthread + 30
    Thread 16:
    0   libsystem_c.dylib                       0x919db6e0 start_wqthread + 0
    Thread 17:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x919dbf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x900f05a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x900f0319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x900f012a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9016546c TimerThread + 292
    7   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 18 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x944cc1b7 __THE_SYSTEM_HAS_NO_PORT_SETS_AVAILABLE__ + 7
    1   com.apple.CoreFoundation                0x943f6b6c __CFRunLoopFindMode + 444
    2   com.apple.CoreFoundation                0x9441235c CFRunLoopAddTimer + 300
    3   com.apple.Foundation                    0x999b0281 -[NSRunLoop(NSRunLoop) addTimer:forMode:] + 230
    4   com.apple.AppKit                        0x9bdb553b -[NSAnimation(NSInternal) _runBlocking] + 222
    5   com.apple.AppKit                        0x9bdb5199 -[NSAnimation(NSInternal) _animationThread] + 79
    6   com.apple.AppKit                        0x9bdb5145 __-[NSAnimation(NSInternal) _runInNewThread]_block_invoke_1 + 36
    7   libdispatch.dylib                       0x9bad3e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x9bad4e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x919d9b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x919db6fe start_wqthread + 30
    Thread 19:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x986a5bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9198c7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x9198c558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9bd33be2 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99a04f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x99a04f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x986a583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x919dbe78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x919dbf7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x900f05a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x900f0319 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x900f012a TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x901347b5 AsyncFileThread(void*) + 248
    7   libsystem_c.dylib                       0x919d7ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x919db6de thread_start + 34
    Thread 18 crashed with X86 Thread State (32-bit):
      eax: 0x00000006  ebx: 0xb05afdc8  ecx: 0xb05afdd8  edx: 0x986a0101
      edi: 0x1f3c02a0  esi: 0xac93e1e0  ebp: 0xb05afd38  esp: 0xb05afd30
       ss: 0x00000023  efl: 0x00000286  eip: 0x944cc1b7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x883d5000
    Logical CPU: 1
    Binary Images:
        0x1000 -  0x10ddfe7 +com.adobe.illustrator (399 - 15.0.2) <E981EB14-E985-235C-5B50-36ECD01A3851> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 -  0x14cbfe7 +AdobeAXEDOMCore (??? - ???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
    0x153a000 -  0x154afff  com.apple.carbonframeworktemplate (1.0 - 1.0) <52191201-4C2A-FC9B-06E4-0327B5203D7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x154f000 -  0x156aff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x1584000 -  0x15c8fff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <AF5B961D-03B5-1F8F-0DE0-E7DE0863E578> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x162b000 -  0x162bfff +SPBasic (??? - ???) <574E14ED-6879-7536-E9A1-77F66D81FCBB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x162f000 -  0x1635ffb +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x163d000 -  0x1752fff +AdobeACE (??? - ???) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1775000 -  0x1c9bfff +AdobeAGM (??? - ???) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1ddc000 -  0x1e18fff +AdobeARE (??? - ???) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e21000 -  0x1e47ff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1e58000 -  0x1e73fff +AdobeBIB (??? - ???) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e7d000 -  0x1e9eff7 +AdobeBIBUtils (??? - ???) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1eaa000 -  0x219cff7 +AdobeCoolType (??? - ???) <90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x2224000 -  0x22bcfff +com.adobe.AdobeExtendScript (ExtendScript 4.1.23 - 4.1.23.7573) <F68E96A7-E657-7275-09DF-4C412554CD4A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x231b000 -  0x23fefef +AdobePDFPort (??? - ???) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2433000 -  0x2a68feb +AdobePDFL (??? - ???) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2b94000 -  0x2c21ff7 +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.7573) <6A15402A-09B2-B1F8-5ECC-D7871EC054C3> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x2c66000 -  0x2d06fef +AdobeSVGExport (??? - ???) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2d30000 -  0x2fceff2 +AdobeSVGRE (??? - ???) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30a7000 -  0x30ffff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x310e000 -  0x319afef +AdobeXMPFiles (??? - ???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x31d1000 -  0x329eff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3301000 -  0x33dbfef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x341b000 -  0x3dcbfff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3dce000 -  0x41a6ff7 +AdobeMPS (??? - ???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x42d5000 -  0x433bffb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x436b000 -  0x43fcff7 +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x441b000 -  0x4601ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x468f000 -  0x46f6fea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4735000 -  0x47b2fff +AdobeOwlCanvas (??? - ???) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x47ce000 -  0x4906fe7 +WRServices (??? - ???) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4948000 -  0x494cffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x4953000 -  0x49a6ffb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x49ee000 -  0x4a00fff +com.adobe.pip (??? - 5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a09000 -  0x575bfeb +com.adobe.psl (AdobePSL 12.0.0.11086 - 12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5a9d000 -  0x5c1afef +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <565B8F4B-EFEA-D847-91FE-17B8ED169DF2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5d95000 -  0x6085fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <7E7F77B3-0CB3-8885-915E-EDACEE27500E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x63ad000 -  0x66f3ff3 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E97C356-CEE3-9CA3-3C90-8196F560164E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c02000 -  0x6c14fef +com.adobe.dvaai.framework (dvaai version 5.0.0 - 5.0.0.0) <2D9772CA-D866-6A7F-CF74-FD7F485350B2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c25000 -  0x6c2bfef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <FB5A16A5-D6E7-71B7-78A8-A174A64EF477> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_ date_time
    0x6c3c000 -  0x6c47ff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <604EA207-EEF2-AC6E-A8B1-26737E5AB0A7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost _filesystem
    0x6c5b000 -  0x6cd9fe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <F95BC864-6CFC-EAF4-A6DF-27608A5DD30E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_rege x
    0x6d3d000 -  0x6d47fff +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <08C988D8-10F3-66EF-AE15-B086AD240942> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_si gnals
    0x6d5a000 -  0x6d5cffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <7ACBC8B3-0BEA-7B7B-04FF-95C6A93E3E7E> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_sys tem
    0x6d63000 -  0x6d6aff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <4942ACFF-5944-0F7F-8481-49CAF902D15F> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_th reads
    0x6d7a000 -  0x6dd8fe2 +com.adobe.boost_serialization.framework (boost_serialization version 5.0.0 - 5.0.0.0) <FBAA7D86-4F90-3337-4657-022BA313C894> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/bo ost_serialization
    0x6eaf000 -  0x704efe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x70b7000 -  0x7124fef +FileInfo (??? - ???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x713f000 -  0x71ecff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x7231000 -  0x726efff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x7288000 -  0x728bff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x72de000 -  0x72dfff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7758000 -  0x7758fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 15.0.0 - 15.0.0) <31807739-9A66-20D1-2D8D-1077383E76C7> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Resources/en_GB/PluginRes.aip/Contents/MacOS/PlugInRes
    0x775c000 -  0x775dfff +com.adobe.illustrator.plugins.ASLib (ASLib version 15.0.0 - 15.0.0) <E0248AB4-BFC9-A137-113D-6B7C9E9EC662> /Applications/Adobe Illustrator CS5/*/ASLib
    0x7761000 -  0x7762ffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x77b4000 -  0x77bcfff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xa873000 -  0xa8e3feb +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xa98d000 -  0xa994ffe +com.adobe.illustrator.plugins.Action (Action version 15.0.0 - 15.0.0) <142864FE-DD35-352E-D04F-3CEC42460B58> /Applications/Adobe Illustrator CS5/*/Action
    0xa998000 -  0xa9a1fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 15.0.0 - 15.0.0) <49D2AB8D-EDA1-D195-7F30-A0F43FB445BB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xa9a5000 -  0xa9a9ffb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 15.0.0 - 15.0.0) <5F46ADCB-63B5-9C82-4EC3-AADF25CCBE2F> /Applications/Adobe Illustrator CS5/*/ToolSelector
    0xa9f0000 -  0xaa19feb +com.adobe.ape (adbeapecore version 3.1.70.10055 - 3.1.70.10055) <F3239526-C171-AD3C-835E-FC9998EEFB28> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0xaa29000 -  0xaa2fff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 15.0.0 - 15.0.0) <3CBFAF3A-3B7E-3AC9-EDAF-8AA214A87EA1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xaa33000 -  0xaa36fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 15.0.0 - 15.0.0) <F8F2B1CA-D293-7192-E07E-93909A2A6828> /Applications/Adobe Illustrator CS5/*/GeometryS
    0xaa3a000 -  0xaa3bfff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 15.0.0 - 15.0.0) <D7CD8FCC-D327-056C-44F2-65D1653946A4> /Applications/Adobe Illustrator CS5/*/MPSCommon
    0xaa4a000 -  0xaa9fff0 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 15.0.0 - 15.0.0) <F760E076-0C60-0E96-47E4-EE0D4140C5BB> /Applications/Adobe Illustrator CS5/*/Photoshop Adapter
    0xaab0000 -  0xaadafff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 15.0.0 - 15.0.0) <ED8C5A7E-A1FC-B46B-B537-6E41529B2DD1> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xab15000 -  0xab23fff +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 15.0.0 - 15.0.0) <09AE83AB-98F8-3FF3-2A4C-5C6A08F1629C> /Applications/Adobe Illustrator CS5/*/ShapeTool
    0xacc8000 -  0xacddfff +PNG (??? - ???) <CD501D1F-79F3-45D4-BFD4-0D6A8C0D9C35> /Applications/Adobe Illustrator CS5/*/PNG.plugin/Contents/MacOS/PNG
    0xcccf000 -  0xcda7fff +com.adobe.coretech.adm (3.10x04 - 3.1) <8919B146-1010-690F-C369-FBA8C1F090CD> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xcf36000 -  0xcf37fff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 15.0.0 - 15.0.0) <D605DB82-C56B-3CDC-01DB-8E4492AA5621> /Applications/Adobe Illustrator CS5/*/FlattenS
    0xcf42000 -  0xcf47ffb +com.adobe.illustrator.plugins.Roughen (Roughen version 15.0.0 - 15.0.0) <902872F9-81BC-D5CB-028A-AF766F9806D2> /Applications/Adobe Illustrator CS5/*/Roughen
    0xcf75000 -  0xcf85fff +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 15.0.0 - 15.0.0) <7CAAAD9E-050B-4B94-712B-7F33C76A204C> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xcf8c000 -  0xcfa1fef +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 15.0.1 - 15.0.1) <7FB772B5-A8F9-1663-73DB-D51629DF9FC0> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xcfcf000 -  0xcfe5ffb +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 15.0.0 - 15.0.0) <F9F1ABE1-547B-38B4-F95B-704AE58B97E3> /Applications/Adobe Illustrator CS5/*/ControlPalette
    0xcfeb000 -  0xcfeffff +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 15.0.0 - 15.0.0) <70176E68-D9D8-6D0E-599F-56A0BE108A53> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xcff3000 -  0xcff9ffb +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 15.0.0 - 15.0.0) <CC1AACFA-13DB-1D99-2AF9-17370C050B1A> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xd72d000 -  0xd742fef +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 15.0.1 - 15.0.1) <A7E60C98-360A-E10B-1C17-73A2BFA23AB8> /Applications/Adobe Illustrator CS5/*/AssetMgmt
    0xd7e7000 -  0xd7f9fef +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 15.0.0 - 15.0.0) <58C626FE-3268-C256-2ABC-734D12C61F64> /Applications/Adobe Illustrator CS5/*/Mojikumi
    0xdc00000 -  0xdc4dfff +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 15.0.1 - 15.0.1) <057D64CA-7DF5-BB35-00BC-6BC9ACE97F3D> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0xe760000 -  0xe780fe2 +com.adobe.illustrator.plugins.Rasterize (Rasterize version 15.0.2 - 15.0.2) <1460C2EC-66AE-3120-F4C6-37EA9015E9DB> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe7a3000 -  0xe7dbfff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 15.0.0 - 15.0.0) <004D0CCF-80BD-8DC1-7E44-5FD113507384> /Applications/Adobe Illustrator CS5/*/BrushManager
    0xe7e4000 -  0xe7f4fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 15.0.0 - 15.0.0) <A89FFFC5-7CB4-4229-467F-B36013B66576> /Applications/Adobe Illustrator CS5/*/DocInfo
    0xea00000 -  0xeaacfea +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 15.0.0 - 15.0.0) <E52FE44A-D024-94CB-D70B-4E0EE79D2906> /Applications/Adobe Illustrator CS5/*/ColorHarmony
    0xeac8000 -  0xeae2fe2 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 15.0.1 - 15.0.1) <C7051AF4-E06C-0EE4-1B1C-43271C060CEC> /Applications/Adobe Illustrator CS5/*/KinsokuDlg
    0xeb13000 -  0xeba3feb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 15.0.0 - 15.0.0) <21DEC189-D1E8-6D28-2591-90AD613A4A7B> /Applications/Adobe Illustrator CS5/*/PaintStyle
    0xebb2000 -  0xee33fef +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 15.0.0 - 15.0.0) <D06A593F-B9A2-154A-6222-DF90FD0F836D> /Applications/Adobe Illustrator CS5/*/Scripting Support
    0xef69000 -  0xef6effd +com.adobe.illustrator.plugins.Scripts Menu (Scripts Menu version 15.0.0 - 15.0.0) <E78BB908-6C5F-9EE1-63C7-6B0BAD790001> /Applications/Adobe Illustrator CS5/*/Scripts Menu
    0xef99000 -  0xefaeff7 +com.adobe.illustrator.plugins.SpellcheckUI (SpellCheckUI version 15.0.0 - 15.0.0) <959D6068-AF36-67B2-E9B8-4A584362E474> /Applications/Adobe Illustrator CS5/*/SpellcheckUI
    0xefbe000 -  0xefc8ff3 +com.adobe.illustrator.plugins.Find (Find version 15.0.0 - 15.0.0) <A154DE76-543A-63B7-1653-4D3567FE25DB> /Applications/Adobe Illustrator CS5/*/Find
    0xefcd000 -  0xefe1fef +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 15.0.0 - 15.0.0) <6F536971-AA45-8F82-309E-F8BC4F6E4A98> /Applications/Adobe Illustrator CS5/*/EyeBucketTool
    0xf00b000 -  0xf00dfff  libCoreFSCache.dylib (??? - ???) <4D047C6F-11FF-3893-A352-5C1E259C036E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xf011000 -  0xf012ffb +cl_kernels (??? - ???) <35A4B6A5-279B-4485-9140-74E9DB1A5D9E> cl_kernels
    0xf03a000 -  0xf03fffe  libgermantok.dylib (??? - ???) <465F8E0F-0AED-3D8A-A852-22549742C6E9> /usr/lib/libgermantok.dylib
    0xf0ec000 -  0xf0ecff3 +cl_kernels (??? - ???) <E0C6945B-52D6-4AB2-95B7-5EBDAA1FADD2> cl_kernels
    0xf0f0000 -  0xf0f0ffb +cl_kernels (??? - ???) <5FF6DBB1-4E3A-49D1-80C5-19C280EDA1DC> cl_kernels
    0xf1f2000 -  0xf270fe2 +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 15.0.0 - 15.0.0) <F0AA6574-0276-E239-A888-F2F412FEF4B0> /Applications/Adobe Illustrator CS5/*/SwatchLibraries
    0xf281000 -  0xf2b1ffc +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 15.0.0 - 15.0.0) <66A518A1-A747-6EE5-0AF4-5E5B30CEB789> /Applications/Adobe Illustrator CS5/*/SymbolPalette
    0xf2ba000 -  0xf2d2ff3 +com.adobe.illustrator.plugins.Workspaces (Workspaces version 15.0.0 - 15.0.0) <AAD61C6D-603D-08A6-D432-71CFB155E25C> /Applications/Adobe Illustrator CS5/*/Workspaces
    0xf2d9000 -  0xf300ff0 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 15.0.0 - 15.0.0) <6219DB20-8CF6-C888-B841-D2CA302EA747> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xf308000 -  0xf334fff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 15.0.0 - 15.0.0) <BE233974-06C3-BFDA-BD0C-69C489BE04B6> /Applications/Adobe Illustrator CS5/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xf33d000 -  0xf37bfff +com.adobe.illustrator.plugins.Snap (Snap version 15.0.0 - 15.0.0) <50C67BFC-673E-60E5-6A83-FDF61ACB7878> /Applications/Adobe Illustrator CS5/*/Snap
    0xf38b000 -  0xf39aff0 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 15.0.0 - 15.0.0) <02FA5CA0-49AC-9A14-5EC8-3A524F82F52E> /Applications/Adobe Illustrator CS5/*/DropShadow
    0xf3a0000 -  0xf3aefff +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 15.0.0 - 15.0.0) <FCA09360-78BF-A043-F191-3D680057F439> /Applications/Adobe Illustrator CS5/*/ADMTP
    0xf3b3000 -  0xf3c4ffb +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 15.0.0 - 15.0.0) <BAA1E4D6-6108-1014-13A9-966CB55B9D69> /Applications/Adobe Illustrator CS5/*/Segment Tools
    0xf3ca000 -  0xf3e8ffa +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 15.0.0 - 15.0.0) <3C0686CB-1C0F-F4A0-369A-90E805B45C08> /Applications/Adobe Illustrator CS5/*/ScatterBrushTool
    0xf3ef000 -  0xf407fff +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 15.0.0 - 15.0.0) <3BADB03E-24CB-BD81-E23C-C1102B84FDC7> /Applications/Adobe Illustrator CS5/*/GlobalAdjust
    0xf40d000 -  0xf42bfef +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 15.0.0 - 15.0.0) <5534630E-ED3D-1122-6C57-DA7A2D830DD7> /Applications/Adobe Illustrator CS5/*/ParticlePaint
    0xf434000 -  0xf43dff7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 15.0.0 - 15.0.0) <2E7B598F-B5E0-873E-4E40-E84F537BD935> /Applications/Adobe Illustrator CS5/*/Magic Wand
    0xf442000 -  0xf459ff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 15.0.0 - 15.0.0) <9F18C32A-BE54-EBFD-4AC1-7FEA633243AE> /Applications/Adobe Illustrator CS5/*/Liquify
    0xf45e000 -  0xf465fec +com.adobe.illustrator.plugins.Lasso (Lasso version 15.0.0 - 15.0.0) <B61316E3-6BD8-4372-0196-79ACD7B2ADDC> /Applications/Adobe Illustrator CS5/*/Lasso
    0xf46b000 -  0xf46fffb +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 15.0.0 - 15.0.0) <48A118A6-14C1-26B1-9F6D-B7430F77505A> /Applications/Adobe Illustrator CS5/*/KnifeTool
    0xf474000 -  0xf4aafeb +com.adobe.illustrator.plugins.EraserTool (EraserTool version 15.0.0 - 15.0.0) <F47ACCBC-6AF5-FB7D-7D4F-F0F2C0140328> /Applications/Adobe Illustrator CS5/*/EraserTool
    0xf4b2000 -  0xf538fff +com.adobe.illustrator.plugins.dBrushTool (Bristle Brush Tool version 15.0.1 - 15.0.1) <96C468D5-73FF-DC72-EB25-BC122F4D7686> /Applications/Adobe Illustrator CS5/*/dBrushTool
    0xf62c000 -  0xf655fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 15.0.0 - 15.0.0) <E1531DB8-AEFF-8A8F-230E-D2BF98C12B96> /Applications/Adobe Illustrator CS5/*/CalligBrushTool
    0xf65c000 -  0xf670ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 15.0.0 - 15.0.0) <B1C6964F-818D-2C57-ACFB-0DA783285D67> /Applications/Adobe Illustrator CS5/*/BoundingBox
    0xf675000 -  0xf69eff2 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 15.0.0 - 15.0.0) <E73A65AA-C929-01B7-68EC-58EB2D87CB34> /Applications/Adobe Illustrator CS5/*/ArtBrushTool
    0xf6a5000 -  0xf6c9fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 15.0.0 - 15.0.0) <21FCD83B-F1CD-6EB7-1B48-91FE9022E2FE> /Applications/Adobe Illustrator CS5/*/ExpressView Support
    0xf6d1000 -  0xf6efffe +com.adobe.illustrator.plugins.MPSExport (MPSExport version 15.0.1 - 15.0.1) <249488E3-8D1F-C05E-20C0-4B9A2CC811E7> /Applications/Adobe Illustrator CS5/*/MPSExport
    0xf71e000 -  0xf729ffb +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 15.0.0 - 15.0.0) <ACC0A0E6-C4D4-6072-473A-D7E976B0D7EF> /Applications/Adobe Illustrator CS5/*/Pathfinder
    0xf72d000 -  0xf742ff0 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 15.0.0 - 15.0.0) <E19BD90F-BA6C-2383-15AD-1F843A0CD68A> /Applications/Adobe Illustrator CS5/*/WelcomeScreen
    0xf748000 -  0xf75bfff +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 15.0.0 - 15.0.0) <62E98A07-BD56-1EF2-FCFA-17F4C16ADE59> /Applications/Adobe Illustrator CS5/*/TransparencyPalette
    0xf75f000 -  0xf77cfe2 +com.adobe.illustrator.plugins.Services (Services version 15.0.0 - 15.0.0) <105A501F-C4A0-81B1-90D9-7023FE3C42D3> /Applications/Adobe Illustrator CS5/*/Services
    0xf785000 -  0xf796fe8 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 15.0.0 - 15.0.0) <01485368-267F-5BF4-6628-FC51862C93E1> /Applications/Adobe Illustrator CS5/*/SeparationPreview
    0xf79c000 -  0xf7a1fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 15.0.0 - 15.0.0) <F551B927-E001-B314-2A34-C2D3C2CE3F95> /Applications/Adobe Illustrator CS5/*/PathSuite
    0xf7a5000 -  0xf7cbfff +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 15.0.0 - 15.0.0) <0940CEDC-3D38-3603-A714-846973128528> /Applications/Adobe Illustrator CS5/*/LiveBlends
    0xf7d1000 -  0xf7ffffc +com.adobe.illustrator.plugins.Layers (Layers Palette version 15.0.0 - 15.0.0) <8F0EA34C-0884-6A5E-42AF-797BE76AF318> /Applications/Adobe Illustrator CS5/*/Layers
    0xf807000 -  0xf81dff3 +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 15.0.0 - 15.0.0) <AA3FE4E5-2E39-2BDC-29FA-2B4A80B1758B> /Applications/Adobe Illustrator CS5/*/KBSCPlugin
    0xf824000 -  0xf829fef +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 15.0.0 - 15.0.0) <D36E49AB-3A0A-20A7-BC60-9EC2D1461B4A> /Applications/Adobe Illustrator CS5/*/FileClipboardPref
    0xf82d000 -  0xf887fea +com.adobe.illustrator.plugins.ArtStyle (Art Style version 15.0.0 - 15.0.0) <3A39E0EB-0978-4867-1330-C34D3EC5C217> /Applications/Adobe Illustrator CS5/*/ArtStyle
    0xf893000 -  0xf8abff7 +com.adobe.illustrator.plugins.ArtboardPanel (Artboard Panel version 15.0.0 - 15.0.0) <7590F0B2-136E-8262-47EB-76EB405576CD> /Applications/Adobe Illustrator CS5/*/ArtboardPanel
    0xf8b2000 -  0xf8c2fff +com.adobe.illustrator.plugins.AppBarControlsPlugin (Adobe App Bar Controls Host version 15.0.0 - 15.0.0) <D1E094B3-146F-85F7-CA05-8267471B86BF> /Applications/Adobe Illustrator CS5/*/AppBarControlsPlugin
    0xf8c8000 -  0xf8d8ffc +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 15.0.0 - 15.0.0) <1779311C-23B6-09AC-173D-F204ABA34004> /Applications/Adobe Illustrator CS5/*/Align
    0xf8dc000 -  0xf8e2fe8 +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 15.0.0 - 15.0.0) <AFCFCBDC-8EA9-8150-7415-538DA59A30FB> /Applications/Adobe Illustrator CS5/*/TextWrapDlg
    0xf8e6000 -  0xf8f4fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 15.0.0 - 15.0.0) <D4C8AF84-087F-EE42-445B-D0477022645F> /Applications/Adobe Illustrator CS5/*/Advanced Select
    0xf8f9000 -  0xf8fcfff +com.adobe.illustrator.plugins.TypeCase (Change Case version 15.0.0 - 15.0.0) <53912D41-3BF1-646F-1261-134FFB516F2C> /Applications/Adobe Illustrator CS5/*/TypeCase
    0xfa00000 -  0xfa21fef +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 15.0.1 - 15.0.1) <B2AE8337-FCD0-29DC-BBFC-A55DF0751A87> /Applications/Adobe Illustrator CS5/*/AltGlyphPal
    0xfa59000 -  0xfa91fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 15.0.0 - 15.0.0) <4BB61412-8F86-9318-1298-5F33D99C3C12> /Applications/Adobe Illustrator CS5/*/ActionPalette
    0xfa9a000 -  0xfb2eff3 +com.adobe.illu

  • E61i Installing Applications on Start-up

    Everytime I switch off and then switch on my Nokia E61i, it will try and install applications on start-up and then display an error message saying that it can't install applications from the memory card and that I should use the application manager instead.
    Why is it doing this? What is happening here? Why is it trying to install apps each time?!?
    Someone mentioned that the reason is that there are some applications installed to the memory card that are not functional before installing manually - but how do I know which applications these are?!?
    What can I do to get rid of the automatic installation on start-up?!?
    Thanks!

    I had this problem on e71 and this is how I've fix it. Connect your phone via usb cable (mass storage). Go to Resource/Apps and look for applications that you have uninstalled but it felt some files and delete every one of it (I had "Nokia Sports Tracke" and it felt "rLauncher_NokiaSportsTracker_180_E66_E71_PrePR1_aif.mif" and similar files).
    After that go to Sys/Bin and again delete every file that you dont have installed (eg. "Launcher_NokiaSportsTracker_180_E66_E71_PrePR1.exe").
    Next step. Go to System/Data and delete directory that is felt after uninstallation (eg. "SportsTracker").
    I think that this will help you.

  • Application Server Starting and then Stopping

    For some reason my NSP server is starting with MMC, but then after about a minute it stops again. Please see the log files below. It seems to be a database problem but I don't know how to fix it...
    dev_w0
    trc file: "dev_w0", trc level: 1, release: "700"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ

    B Fri Jun 20 23:50:24 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "700.08", patchlevel (0.19)
    B  New connection 0 created
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    23
    M intno      20050900
    M make:      multithreaded, ASCII
    M pid        4928
    M
    M  kernel runs with dp version 202(ext=109) (@(#) DPLIB-INT-VERSION-202)
    M  length of sys_adm_ext is 360 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4928) [dpxxdisp.c   1288]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          5280     (880)
    M  DpShMCreate: sizeof(tm_adm)          3351072     (16672)
    M  DpShMCreate: sizeof(wp_ca_adm)          1200     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1076)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04C80040, size: 3950264)
    M  DpShMCreate: allocated sys_adm at 04C80040
    M  DpShMCreate: allocated wp_adm at 04C81978
    M  DpShMCreate: allocated tm_adm_list at 04C82E18
    M  DpShMCreate: allocated tm_adm at 04C82E48
    M  DpShMCreate: allocated wp_ca_adm at 04FB5068
    M  DpShMCreate: allocated appc_ca_adm at 04FB5518
    M  DpShMCreate: allocated comm_adm at 04FB59C8
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 05036878
    M  DpShMCreate: allocated gw_adm at 050368B8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 050368E8
    M  DpShMCreate: allocated wall_adm at 050368F0
    Y  *** ERROR => ztta/diag_area is 64000. [sapinit.c    325]
    Y  *** ERROR => ztta/diag_area adjusted to 128000 (minimum value). [sapinit.c    327]
    Y  *** ERROR => ztta/cua_area is 90000. [sapinit.c    963]
    Y  *** ERROR => ztta/cua_area adjusted to 250000. [sapinit.c    967]
    X  EmInit: MmSetImplementation( 2 ).
    X  MM diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Fri Jun 20 23:50:25 2008
    M  ThInit: running on host PackardBell
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.019 (Make PL 0.23)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.019) UPDSTAT optimized (note 870327)
    C    (0.010) MaxDB DBSL patch collection 1 2005 (note 850830)
    C    (0.009) New stream compression available with LVC 7.6.0 b12 (note 835809)
    C    (0.008) Support of SDBUPDEXCL (note 847616)
    C    (0.005) Switch stream compression on/off (note 835809)
    C    (0.005) ITAB stream handling optimized (note 835809)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.0    BUILD 018-123-113-357
    C  SQLDBC client runtime is MaxDB 7.6.0.018 CL 113357
    C  INFO : SQLOPT= -I 0 -t 0
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10757 (XUSER error (the USERKEY is unknown))
    [dbsdbsql.cpp 98]
    C  Try to connect (SQLOPT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:Database name is missing))
    [dbsdbsql.cpp 118]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#1 @ 1195] [dbsh    1195 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#3 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:Database name is missing) [dblink#3 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1391]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9995]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    vm = V-1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server PackardBell_NSP_00 on host PackardBell (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Fri Jun 20 23:50:25 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10180
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   720]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  260]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 4928) [dpnttool.c   327]

    Ok I eventually figured it out... The SAP Application Server starts the database using the XUSER authentication - For some reason my system lost all settings for this.
    In order to recreate, I had to use the command prompt and use the XUSER command.
    Firstly "XUSER LIST" lists all user keys - I had none.
    I then needed to set the default XUSER:
    XUSER -d NSP -u SAPNSP,<password>
    <password> is the password for the user specified
    Then I created the "c" key:
    XUSER -d NSP -U c -u SAPNSP,<password>
    The reason I set up the "c" XUSER is because I noticed that in "\usr\sap\NSP\DVEBMGS00\exe\" there is a batch file used to start the DB - "strdbs.cmd". Inside this file it uses "c" as the user key in order to set the state of the DB.
    After all of that it worked again...

  • Prevent Portal Application from starting

    Hello.
    We are having problems starting up a portal. Everytime we try to start it we have a java deadlock, and we wonder whether it is possible to prevent an application from starting.
    Specifically the application we would like not to start is:
    sap.com/cafeuodimnuacceap
    Thanks in advance for your help.

    I found it:
    Using the "Initially_Not_Started_Apps" parameter in Config Tool.
    Thanks.

  • Facing error as Not in an application scope - start Orion with the -userThr

    hi all,
    iam facing this error when an jsp which is in Oracle portal(emebedded in iframe code) is updating a flag in database through a datasource configured on portal side.
    Naming Service=Not in an application scope - start Orion with the -userThreads switch if using user-created threads
    regards,
    Ravi

    I encounter the same issues when using the TimerTask to access the JNDI tree. I have found success when I move my business logic to an EJB and call my EJB from my TimerTask. It's a bit more work, but not much. The EJB inherits it's identity based on it's configuration and has no trouble accessing the JNDI tree whenever it's called. Try this and see if your problem doesn't go away.
    Hope this helps,
    Perry Tew

Maybe you are looking for