J2ME SDK 3 and Siemens - preverification error: Native Methods

Dear experts,
I am working on this issue for a week, but without success.
Maybe because I am trying to combine something new and old :-(
I tried to use Siemens TC45 GSM java module with j2ME Platform SDK 3.0.
It goes well and I have results until I use standard libraries like:
Import javax.microedition.io.*;But I also need Siemens library so I included:
Import com.siemens.icm.io.*;When building (preverifying stage) I got error:
“ERROR: native methods should not appear”
If I write similar midlet in SUN ONE Studio 4 ME (with j2me1.0.4) I can preverify it and build midlet without errors. So I assume that I have problems in SDK3.0 with version of preverifier or with some other settings somewhere. Can anyone please point me to the right direction?
Thank you,
Mitja

The issue is resolved. You have to update Java ME SDK 3.0.5 to obtain the fix:
1. Ensure that you have downloaded and installed the latest Java ME SDK 3.0.5 (published on Dec 23, 2011). In the updated 3.0.5 release we have added the Japanese and simplified Chinese localizations and "Update Center" feature that is required to obtain the fix.
2. Run Update Center either from Start menu or from Netbeans "Java ME" menu (in this case you should install Netbeans integration during Java ME SDK installation).
3. Install "Java ME SDK Tools Netbeans Update Site" via Update Center.
4. Restart Netbeans IDE.
5. In Netbeans, go to Tools -> Plugins, Reload Catalog and install "Utilities" update from "Java ME SDK Tools" category.
That's it.
For more details refer to corresponding blog post at: http://blogs.oracle.com/javamesdk/entry/update_java_me_sdk_through
Alexander Burdukov, Engineering Manager for Java ME SDK product.

Similar Messages

  • ERROR: native methods should not appear

    Excuse me,when I bulid my project with java wireless toolkit 2.5 encounter a problem:
    ERROR: native methods should not appear
    Error preverifying class javax.microedition.location.LandmarkStore
    Build failed
    SmartLee

    Im too having the same problem while accessing Samsung backlight api in my code...
    Can anyone could help in this regard....
    thanks

  • Native methods in MIDlet lib

    My Midlet uses a third-party lib zip file which has native methods in it. When I built my midlet in SUN's WTK2.0, I got this error message:
    ERROR: native methods should not appear
    Error preverifying ....
    Build failed
    If you know the possible solution, pls tell me at [email protected]
    Thanks!

    Sorry I forgot to add something. WTK2.1 would not
    complain "native" but in order for your native access
    function to work, you have to implement some bridge
    between native functions and your java native access
    functions. Those implementation should be done in the
    phone code.Hi there lisaran,
    I tried to install the WTK 2.1_1 for linux, but the installation is corrupted it seems. Did you work on WTK on linux or on windows. Actually, even I am having the same problem. I have native methods declared in the java code. I use KNI to further the calls to a proprietary c code library.
    Thanks in anticipation.
    regards...

  • What is native method?

    hi.. i have the following error msg on the java wireless toolkit..
    "ERROR: native methods should not appear
    Error preverifying class com.zucotto.io.serialcomm.COMInputStream
    Build failed"
    can anyone help?
    thanks

    You can't "un-native" a native method. The class library that you are using relies upon native code. It can not be used on the target platform. You would have to ask the vendor of that class library to update it to work on your target platform without the native code.
    God bless,
    -Toby Reyelts

  • How to set up on device debuging with J2ME SDK 3.0 and window mobile 6.5?

    I got some infomation about setting up on device debuging in J2ME SDK 3.0 with real device(e.g samsung windown mobile B7330). When I start debuging on device, I got exception when open RMS
    javax.microedition.rms.RecordStoreException: error opening record store fileHere my code:
    public void saveProfile() {
            byte[] data = toByteArray();
            try {
                rs = RecordStore.openRecordStore("kunkunProfile", true);
                for (RecordEnumeration e = rs.enumerateRecords(null, null, false); e.hasNextElement();) {
                    int id = e.nextRecordId();
                    rs.deleteRecord(id);
                rs.addRecord(data, 0, data.length);
                rs.closeRecordStore();
            } catch (Exception ex) {
                System.out.println("Exception in OpenRecordStore..." + ex.getMessage());
                try {
                    rs.addRecord(data, 0, data.length);
                    rs.closeRecordStore();
                } catch (Exception e) {
                ex.printStackTrace();
        }Anybody help me? I am stuck here.

    Hi dominikg,
    At first, You can try to restart the device-manager from system tray.
    If it doesn't help, then try the following:
    - stop the device manager
    - Remove c:\Docement and Settings\<your User>\javame-sdk folder.
    - Ran the device manager from <SDK>/bin directory
    - try to debug again.
    Did you tried to change port 51307 to another.
    Early access build had some problems with device manager, I hope that final release will be better :)
    BR,
    Igor

  • Error while trying to debug on windows mobile 6.1  with j2me SDK 3.0 ea

    Hi,
    I tried to debug a simple application today. It works fine with the emulator but debug fails to connect to the device.
    I followed the steps described in the userguide of 3.0.
    host operating system: windows xp sp3
    device: htc touch pro
    device operatiing system: windows mobile 6.1 professional
    The device is listed in the device selector of the SDK as Touch_Pro
    The device is connected and active sync is running (i can explore the phone using windows explorer)
    sun-java-cldc-emu.cab has been installed on the device and is running
    When i try to debug the application from the SDK or netbeans 6.5(added 3.0ea as a platform) i get the following error:
    Starting emulator with port number 51307
    Cannot create device connection: Failed to connect to device 9!
    Result: 1
    I tried setting the loglevel to DEBUG in log4j config of the SDK, but thats it.
    Are there any other settings i can change to get more detailed output?
    Where do you report bugs/feedback for j2me SDK 3.0 ea?
    regards,
    dominikg
    Edited by: dominikg on Dec 11, 2008 8:36 AM
    -- changed topic title to 'error' instead of 'howto'
    -- added more specific questions

    Hi dominikg,
    At first, You can try to restart the device-manager from system tray.
    If it doesn't help, then try the following:
    - stop the device manager
    - Remove c:\Docement and Settings\<your User>\javame-sdk folder.
    - Ran the device manager from <SDK>/bin directory
    - try to debug again.
    Did you tried to change port 51307 to another.
    Early access build had some problems with device manager, I hope that final release will be better :)
    BR,
    Igor

  • J2ME - How to read and write contacts to native phone address book?

    I am working on application, which has to get data from the database and write contact to native phone address book (address book API)
    Can any one please let me know how to accomplice the above task? If any one worked on this kind of application please provide necessary information
    Also let me know what all the java phone that supports above feature
    Similarly is it possible to achieve the same task using J2ME in BREW phones (not through BREW language) that support Java?
    Thanks in advance
    Regards,
    Kumar.M.R

    JSR 75 might be the answer to your question. It seems that this is pretty new technology which would probably limit the number of cell phones your application can run upon.
    check:
    http://www.ddj.com/dept/java/184406463
    Please send replies regarding your progress.

  • J2ME and native methods

    is it possible to use native methods within MIDlet, working with J2ME?

    on www.jguru.com they say:"For both size and security reasons, JNI is not supported by the J2ME CLDC."

  • J2ME SDK 3.0.5 Plugin Causing Problems in IDE

    Hello,
    After I installed the new JAVA ME Plugin for 3.0.5 SDK and integrated with my Netbeans IDE, I cannot run my other projects that is not JavaME based. It gives an error saying the execution directory is wrong. It complains "work is not a valid directory". This is produced by your plugin because I ran the IDE with a new user directory and just installed your plugin. I am using JDK 1.6 update 29 on WinXP SP3 32-bit.
    Here is a produced exception of a simple Hello World application that prints a "Hello World" string which can't even execute:
    C:\Documents and Settings\User\.netbeans\6.9\var\cache\executor-snippets\run.xml:52: D:\Project\HelloWorld\work is not a valid directory
    at org.apache.tools.ant.taskdefs.Java.setupWorkingDir(Java.java:855)
    at org.apache.tools.ant.taskdefs.Java.setupExecutable(Java.java:825)
    at org.apache.tools.ant.taskdefs.Java.fork(Java.java:788)
    at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:214)
    at org.apache.tools.ant.taskdefs.Java.executeJava(Java.java:135)
    at org.apache.tools.ant.taskdefs.Java.execute(Java.java:108)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:291)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:390)
    at org.apache.tools.ant.Target.performTasks(Target.java:411)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1397)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1366)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1249)
    at org.apache.tools.ant.module.bridge.impl.BridgeImpl.run(BridgeImpl.java:281)
    at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:539)
    at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:154)
    Java Result: -1

    The issue is resolved. You have to update Java ME SDK 3.0.5 to obtain the fix:
    1. Ensure that you have downloaded and installed the latest Java ME SDK 3.0.5 (published on Dec 23, 2011). In the updated 3.0.5 release we have added the Japanese and simplified Chinese localizations and "Update Center" feature that is required to obtain the fix.
    2. Run Update Center either from Start menu or from Netbeans "Java ME" menu (in this case you should install Netbeans integration during Java ME SDK installation).
    3. Install "Java ME SDK Tools Netbeans Update Site" via Update Center.
    4. Restart Netbeans IDE.
    5. In Netbeans, go to Tools -> Plugins, Reload Catalog and install "Utilities" update from "Java ME SDK Tools" category.
    That's it.
    For more details refer to corresponding blog post at: http://blogs.oracle.com/javamesdk/entry/update_java_me_sdk_through
    Alexander Burdukov, Engineering Manager for Java ME SDK product.

  • "Run in Browser" and "Web start" errors

    Hello.
    i have a problem with JavaFX and running it outside NetBeans.
    yes, i tried googling it, tried searching this forum. i didnt find anything that could help me.
    the problem is:
    i started learning java fx with tutorials (lets say this one - http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm )
    i got it running under netbeans, double click on jar in explorer and java -jar in command line.
    i tried to run jnlp file and ended up with senseless error (link to screenshot - http://i48.tinypic.com/30lc47t.png)
    i also tried to run html file (screenshot here - http://i46.tinypic.com/2u7snl5.png)
    and i do have java installed (after all, my netbeans somehow works...).
    i tried installing java with both 32 and 64 bit versions (my system is 64)
    i even installed java from the "click here to install java" link after normal SDK installation. guess what... nothing changed :)
    edit: instead install java it sometimes is "JavaFX application could not launch due to system configuration. See java.com/javafx for troubleshooting information." )
    i can upload my rar'ed project somewhere, but its really almost unchanged tutorial. and btw - i also tried it on other tutorials (simple and CSS) and it didnt work.
    BUT it did work on "hello world" tutorial (netbeans default).
    i really have no idea what to do next, so i'll be greatful for any tips
    best regards
    RD

    Hello.
    thx for response
    here are answers for ur questions:
    the applet from ur link (clock) works. ensemble (http://download.oracle.com/otndocs/products/javafx/2.0.2/samples/Ensemble/index.html#SAMPLES) also works.
    i currently have 64 bit jdk and jre installed, version 7 update 4, with javafx version 2.1.0.
    my browser promted me to install java again, so i did it. so i have also jre ver 7 u4 32bit and javafx 2.1.0 32bit
    link to screenshot is here: http://i50.tinypic.com/11l7ml0.png
    about full trace:
    Java Plug-in 10.4.1.255
    Using JRE version 1.7.0_04-b22 Java HotSpot(TM) Client VM
    User home directory = C:\Users\radoslaw.domanski
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    preloader: Construct preloader delegate
    network: Created version ID: 1.7.0.04
    network: Created version ID: 1.7
    temp: new XMLParser with source:
    temp: <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="Tutorial2 - Login.jnlp">
      <information>
        <title>Tutorial2 - Login</title>
        <vendor>radoslaw.domanski</vendor>
        <description>Sample JavaFX 2.0 application.</description>
        <offline-allowed/>
      </information>
      <resources>
        <jfx:javafx-runtime version="2.0+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
      </resources>
      <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
      </resources>
      <applet-desc  width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback"  name="Tutorial2 - Login" >
        <param name="requiredFXVersion" value="2.0+"/>
      </applet>
      <jfx:javafx-desc  width="800" height="600" main-class="tutorial2.login.Tutorial2Login"  name="Tutorial2 - Login" />
      <update check="background"/>
    </jnlp>
    temp: <applet-desc> tag at line number 15 is not closed correctly
    temp:
    returning ROOT as follows:
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="Tutorial2 - Login.jnlp">
      <information>
        <title>Tutorial2 - Login</title>
        <vendor>radoslaw.domanski</vendor>
        <description>Sample JavaFX 2.0 application.</description>
        <offline-allowed/>
      </information>
      <resources>
        <javafx-runtime version="2.0+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
      </resources>
      <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
      </resources>
      <applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="Tutorial2 - Login">
        <param name="requiredFXVersion" value="2.0+"/>
      </applet-desc>
      <javafx-desc width="800" height="600" main-class="tutorial2.login.Tutorial2Login" name="Tutorial2 - Login"/>
      <update check="background"/>
    </jnlp>
    temp: returning LaunchDesc from XMLFormat.parse():
    <jnlp spec="1.0" codebase="file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/" href="file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp">
      <information>
        <title>Tutorial2 - Login</title>
        <vendor>radoslaw.domanski</vendor>
        <homepage href="null"/>
        <description>Sample JavaFX 2.0 application.</description>
        <offline-allowed/>
      </information>
      <update check="background" policy="always"/>
      <resources>
        <javafx-runtime version="2.0+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
        <java href="http://java.sun.com/products/autodl/j2se" version="1.6+"/>
      </resources>
      <applet-desc name="Tutorial2 - Login" main-class="com.javafx.main.NoJavaFXFallback" documentbase="file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/" width="800" height="600">
        <param name="requiredFXVersion" value="2.0+"/>
      </applet-desc>
      <javafx-desc main-class="tutorial2.login.Tutorial2Login"/>
    </jnlp>
    preloader: Added pending event 1: ConfigEvent[type=SetVisible, value=true]
    network: Created version ID: 2.0+
    network: Created version ID: 1.6+
    network: Created version ID: 1.7.0.04
    network: Created version ID: 1.7.0.04
    network: Created version ID: 1.7
    basic: LaunchDesc location: file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp
    preloader: Enter wait for preloader jars to be loaded
    security: Security check for progress jars: allSigned=true
    preloader: Using preloader class: null com.sun.deploy.uitoolkit.impl.fx.FXApplet2Adapter@1fd4a63
    preloader: Using default preloader
    preloader: Delivering: ConfigEvent[type=SetVisible, value=true]
    preloader: Skipped all (0) download events prior to null
    preloader: Preloader jars loaded. Error state=null
    preloader: Done with loading of preloader jars. Error=null
    network: Created version ID: 1.0
    network: Created version ID: 7.0
    network: Created version ID: 6.0.18
    network: Created version ID: 6.0.10
    network: Created version ID: 6.0
    network: Created version ID: 1.5
    network: Created version ID: 1.0
    network: Created version ID: 2.0+
    basic: JRESelectException: ignored - relaunch not supported
    preloader: Start progressCheck thread
    basic: passing security checks; secureArgs:true, allSigned:false
    basic: JRESelectException: ignored - relaunch not supported
    basic: continuing launch in this VM
    network: LDUpdater: started background update check
    preloader: Delivering: DownloadEvent[type=verify,loaded=1, total=1, percent=100]
    preloader: Delivering: AppletInitEvent[type=CallConstructor]
    basic: JNLP2ClassLoader.findClass: tutorial2.login.Tutorial2Login: try again ..
    basic: JNLP2ClassLoader.findClass: tutorial2.login.Tutorial2Login: try again ..
    basic: JNLP2ClassLoader.findClass: tutorial2.login.Tutorial2Login: try again ..
    basic: JNLP2ClassLoader.findClass: tutorial2.login.Tutorial2Login: try again ..
    java.lang.ClassNotFoundException: tutorial2.login.Tutorial2Login
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.JNLP2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    basic: load: class tutorial2.login.Tutorial2Login not found.
    java.lang.ClassNotFoundException: tutorial2.login.Tutorial2Login
         at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
         at sun.plugin2.applet.JNLP2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    preloader: Delivering: ErrorEvent[url=null label=tutorial2.login.Tutorial2Login cause=tutorial2.login.Tutorial2Login
    preloader: Stop progressCheck thread
    ui: Can not hide splash as Javascript handle is not avaialble
    cache: Resource file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp has expired.
    network: ResponseCode for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : 200
    network: Encoding for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : null
    CacheEntry[file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp]: updateAvailable=true,lastModified=Tue May 08 17:10:03 CEST 2012,length=934
    cache: Resource file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp has expired.
    network: ResponseCode for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : 200
    network: Encoding for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : null
    CacheEntry[file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp]: updateAvailable=true,lastModified=Tue May 08 17:10:03 CEST 2012,length=934
    cache: Resource file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp has expired.
    network: ResponseCode for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : 200
    network: Encoding for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : null
    CacheEntry[file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp]: updateAvailable=true,lastModified=Tue May 08 17:10:03 CEST 2012,length=934
    cache: Resource file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp has expired.
    network: ResponseCode for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : 200
    network: Encoding for file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp : null
    network: Sever response: (length: 934, lastModified: Wed May 09 13:29:27 CEST 2012, downloadVersion: null, mimeType: application/x-java-jnlp-file)
    network: Downloading resource: file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp
         Content-Length: 934
         Content-Encoding: null
    network: Wrote URL file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp to File C:\Users\radoslaw.domanski\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\13\266793cd-686f133a-temp
    network: Cache: Enable a new CacheEntry: file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp
    network: Downloaded file:/C:/test_workspace/NetBeans/Tutorial2 - Login/dist/Tutorial2 - Login.jnlp: C:\Users\radoslaw.domanski\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\13\266793cd-686f133a
    temp: new XMLParser with source:
    temp: <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="Tutorial2 - Login.jnlp">
      <information>
        <title>Tutorial2 - Login</title>
        <vendor>radoslaw.domanski</vendor>
        <description>Sample JavaFX 2.0 application.</description>
        <offline-allowed/>
      </information>
      <resources>
        <jfx:javafx-runtime version="2.0+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
      </resources>
      <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
      </resources>
      <applet-desc  width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback"  name="Tutorial2 - Login" >
        <param name="requiredFXVersion" value="2.0+"/>
      </applet>
      <jfx:javafx-desc  width="800" height="600" main-class="tutorial2.login.Tutorial2Login"  name="Tutorial2 - Login" />
      <update check="background"/>
    </jnlp>
    temp: <applet-desc> tag at line number 15 is not closed correctly
    temp:
    returning ROOT as follows:
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="Tutorial2 - Login.jnlp">
      <information>
        <title>Tutorial2 - Login</title>
        <vendor>radoslaw.domanski</vendor>
        <description>Sample JavaFX 2.0 application.</description>
        <offline-allowed/>
      </information>
      <resources>
        <javafx-runtime version="2.0+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
      </resources>
      <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
      </resources>
      <applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="Tutorial2 - Login">
        <param name="requiredFXVersion" value="2.0+"/>
      </applet-desc>
      <javafx-desc width="800" height="600" main-class="tutorial2.login.Tutorial2Login" name="Tutorial2 - Login"/>
      <update check="background"/>
    </jnlp>
    security: Blacklist revocation check is enabled
    security: Trusted libraries list check is enabled
    network: CleanupThread used 1359498 usi can see this:
    temp: <applet-desc> tag at line number 15 is not closed correctly
    nb did something wrong? no idea.
    and this:
    java.lang.ClassNotFoundException: tutorial2.login.Tutorial2Login
    its also strange becouse my project looks like that:
    http://i47.tinypic.com/o0a3wh.png
    and i double click the jnlp file here:
    http://i49.tinypic.com/2n8of1d.png
    this is rly confusing...
    i hope i gave u all information u need
    best regards
    EDIT:
    i downloaded LoginCSS.zip file from here:
    http://docs.oracle.com/javafx/2/get_started/basic_deployment.htm
    built it using netbeans and it worked.
    any idea what is wrong with configuration in my nb projects?
    whole project is here: http://www.filefactory.com/file/xjmov7xd77z/n/Tutorial3_-LoginCSS.rar
    Edited by: 932829 on 2012-05-09 07:05
    Edited by: 932829 on 2012-05-09 07:11

  • Coldfusion 11 Running on IIS Server and Java CreateObject Error

    I am getting the error below when trying to create an object in CF 11 using cfscript. In the CF Admin Java VM settings are the default setting. I have placed xmlsec-1.5.8.jar file under \cfusion\lib and cfusion\wwwroot\WEB-INF\lib I have also restarted the CF service.
    java.lang.NoClassDefFoundError: Could not initialize class org.apache.xml.security.signature.XMLSignature
    sun.misc.Unsafe.ensureClassInitialized(Native Method) at sun.reflect.UnsafeFieldAccessorFactory.newFieldAccessor(UnsafeFieldAccessorFactory.java:4 3) at sun.reflect.ReflectionFactory.newFieldAccessor(ReflectionFactory.java:142) at java.lang.reflect.Field.acquireFieldAccessor(Field.java:1082) at java.lang.reflect.Field.getFieldAccessor(Field.java:1063) at java.lang.reflect.Field.get(Field.java:387) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:483) at coldfusion.runtime.StructBean.invoke(StructBean.java:508) at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2553) at cfdump2ecfm2106091068$funcDUMPOBJECT.runFunction(/WEB-INF/cftags/dump.cfm:1797) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805) at cfdump2ecfm2106091068$funcRENDEROUTPUT.runFunction(/WEB-INF/cftags/dump.cfm:681) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487) at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47) at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383) at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95) at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334) at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231) at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840) at cfdump2ecfm2106091068._factor17(/WEB-INF/cftags/dump.cfm:565) at cfdump2ecfm2106091068._factor25(/WEB-INF/cftags/dump.cfm:564) at cfdump2ecfm2106091068._factor3(/WEB-INF/cftags/dump.cfm) at cfdump2ecfm2106091068._factor54(/WEB-INF/cftags/dump.cfm:493) at cfdump2ecfm2106091068.runPage(/WEB-INF/cftags/dump.cfm:1) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:246) at coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:56) at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:332) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2986) at cfjavatest2ecfm1994854383.runPage(J:\PPNPF_WEB\SAMLTEST\javatest.cfm:8) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:246) at coldfusion.tagext.lang.IncludeTag.handlePageInvoke(IncludeTag.java:736) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:572) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.IpFilter.invoke(IpFilter.java:45) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:487) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:42) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:142) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:219) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:303) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 ) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:241) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422) at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:199) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.jav a:607) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:314) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) at java.lang.Thread.run(Thread.java:745)

    Does the coldfusion administrator show that the jar file is loaded? If you go to the Settings Summary and look for the CF Server Java Class Path part, it will list all the loaded files.

  • I am trying to use apache commons fileupload and get this error

    I am using tomcat 5.5 as application server and JDK 1.6,
    does anybody have idea how to resolve this error ?
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.security.AccessControlException: access denied (java.util.PropertyPermission java.io.tmpdir read)
         java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
         java.security.AccessController.checkPermission(AccessController.java:546)
         java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1285)
         java.lang.System.getProperty(System.java:652)
         org.apache.commons.fileupload.disk.DiskFileItem.getTempFile(DiskFileItem.java:611)
         org.apache.commons.fileupload.disk.DiskFileItem.getOutputStream(DiskFileItem.java:556)
         org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:362)
         org.apache.commons.fileupload.servlet.ServletFileUpload.parseRequest(ServletFileUpload.java:126)
         project.UploadFiles.processRequest(UploadFiles.java:48)
         project.UploadFiles.doPost(UploadFiles.java:107)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:597)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)

    Make sure that the servlet has permissions to write to that directory. I've hit that snag before, and on linux I set the permissions to nobody nobody 775.
    Good luck,
    Krista

  • My iMac keeps crashing randomly and restarting with error

    I have asn iMac 2009 intel running OSX 10.8.4
    it keeps randomly crashing and restarting with error message
    "your compter crashed because of a problem"
    Process:         rapportd [222]
    Path:            /Library/Rapport/*/rapportd
    Identifier:      rapportd
    Version:         ???
    Code Type:       X86 (Native)
    Parent Process:  launchd [169]
    User ID:         501
    Date/Time:       2013-07-04 10:09:02.186 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000000013e2
    VM Regions Near 0x13e2:
        __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Rapport/*
    --> __TEXT                 0000000000001000-0000000000065000 [  400K] r-x/rwx SM=COW  /Library/Rapport/*
        __DATA                 0000000000065000-000000000006f000 [   40K] rw-/rwx SM=COW  /Library/Rapport/*
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x949f0644 strlen + 20
    1   rapportd                                0x0001ae55 dictionary_findp + 22
    2   rapportd                                0x0001bcac counters_add_get_dict + 61
    3   rapportd                                0x0001d621 pool_redel + 92
    4   rapportd                                0x0001ba31 pool_clear + 121
    5   rapportd                                0x0001beaf pool_free_impl + 52
    6   rapportd                                0x0001dbf7 dictionary_free + 79
    7   RapportUtil1.dylib                      0x001893ea CLocalSection::~CLocalSection() + 40
    8   RapportUtil1.dylib                      0x0018e17b CSimplePersistentSection::~CSimplePersistentSection() + 97
    9   RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    10  RapportUtil1.dylib                      0x00186512 SectionSynchronizer::~SectionSynchronizer() + 54
    11  RapportUtil1.dylib                      0x00186e07 counted_ptr<IConfigurationSection>::release() + 57
    12  RapportUtil1.dylib                      0x001885d8 std::pair<std::string const, counted_ptr<IConfigurationSection> >::~pair() + 26
    13  RapportUtil1.dylib                      0x00188628 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::_M_delete_node(__gnu_cxx::_Hashtable_node<std::pair<std::string const, counted_ptr<IConfigurationSection> > >*) + 44
    14  RapportUtil1.dylib                      0x00188994 __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::clear() + 62
    15  RapportUtil1.dylib                      0x001889eb __gnu_cxx::hashtable<std::pair<std::string const, counted_ptr<IConfigurationSection> >, std::string, __gnu_cxx::hash<std::string>, std::_Select1st<std::pair<std::string const, counted_ptr<IConfigurationSection> > >, std::equal_to<std::string>, std::allocator<counted_ptr<IConfigurationSection> > >::~hashtable() + 23
    16  RapportUtil1.dylib                      0x00186791 CConfigurationManager::~CConfigurationManager() + 77
    17  RapportUtil1.dylib                      0x0019a8e3 counted_ptr<CConfigurationManager>::release() + 57
    18  RapportUtil1.dylib                      0x0019b348 configuration::~configuration() + 54
    19  RapportUtil1.dylib                      0x0019a113 counted_ptr<configuration>::release() + 57
    20  libsystem_c.dylib                       0x94a3eebf __cxa_finalize + 184
    21  libsystem_c.dylib                       0x94a41db9 exit + 23
    22  rapportd                                0x00002317 start + 63
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x912099ae kevent + 10
    1   libdispatch.dylib                       0x991cfc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x991cf7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x912090ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94a070ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x94a06e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949eed2a start_wqthread + 30
    Thread 5 Crashed:
    0   rapportd                                0x000013e2 0x1000 + 994
    1   libsystem_c.dylib                       0x94a045b7 _pthread_start + 344
    2   libsystem_c.dylib                       0x949eed4e thread_start + 34
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x000013e2  ebx: 0x0002c5a7  ecx: 0xbffff864  edx: 0xbffff85c
      edi: 0xbffff868  esi: 0x00194b50  ebp: 0xb030af98  esp: 0xb030af3c
       ss: 0x00000023  efl: 0x00010206  eip: 0x000013e2   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x000013e2
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x64fef +rapportd (???) <322EF040-125E-3D79-4A2F-01BB8B1415E9> /Library/Rapport/*/rapportd
       0xaf000 -   0x147ff7 +RapportWR.dylib (1) <A50472EA-F9E8-3C45-E173-216263532AEC> /Library/Rapport/*/RapportWR.dylib
      0x16e000 -   0x2faffb +RapportUtil1.dylib (1) <087D94DE-7376-A5E6-C000-2895F7D0AA60> /Library/Rapport/*/RapportUtil1.dylib
      0x3f8000 -   0x420fef +librooksbas.dylib (1) <75079BEF-ED76-12F6-5973-3B4584AFA1E4> /Library/Rapport/*/librooksbas.dylib
      0x718000 -   0x725ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x8fe5a000 - 0x8fe8ce57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90008fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90009000 - 0x9006ffff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9008a000 - 0x901d8ff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9020a000 - 0x9022efff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9022f000 - 0x9023bff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9023c000 - 0x90246fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x90343000 - 0x90356ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x903a0000 - 0x903b9fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x903ba000 - 0x903c6ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91100000 - 0x91104fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91105000 - 0x9110efff  com.apple.CommerceCore (1.0 - 26.1) <8C28115C-6EC1-316D-9237-F4FBCBB778C5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9113f000 - 0x911f3fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x911f4000 - 0x9120effc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x9120f000 - 0x91212fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91213000 - 0x91261ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91262000 - 0x91293fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91294000 - 0x912b1ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x9132e000 - 0x9132efff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91333000 - 0x91716fff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91717000 - 0x91772fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91773000 - 0x917d4fff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9181d000 - 0x91825fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x92349000 - 0x923beff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92431000 - 0x9244dfff  libPng.dylib (850) <26AD967A-D55E-3C5A-A643-D9953136DE58> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9244e000 - 0x92459fff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x9245a000 - 0x924c2fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92524000 - 0x92548fff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x927f8000 - 0x9283afff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x9283b000 - 0x92860ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92861000 - 0x928b8ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92913000 - 0x929aaff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x929ab000 - 0x929c1fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x929c8000 - 0x929d4ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x929d5000 - 0x92a1dff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92a44000 - 0x92abeff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92abf000 - 0x92b7dff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92be4000 - 0x92ea4ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92ea5000 - 0x92fb2057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x933bf000 - 0x933c1ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x933c2000 - 0x933ebfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x933ec000 - 0x93809fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x9380a000 - 0x93821fff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x93822000 - 0x93822ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <F7638E43-F885-372E-9DAE-24D0C21AA66E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93823000 - 0x93827ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x93926000 - 0x93a31ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x942b0000 - 0x94335ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94336000 - 0x94337fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x94338000 - 0x94491ffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <8BF022FC-C38A-34AA-8469-D98294094659> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94608000 - 0x9461dfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9461e000 - 0x94796ff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94797000 - 0x947a0fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x947a1000 - 0x947a1fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x947a2000 - 0x947b7fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94814000 - 0x94820ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x94821000 - 0x94822fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x94823000 - 0x94921ff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94922000 - 0x949ccfff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x949cd000 - 0x949d0ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x949d1000 - 0x949d2ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x949d3000 - 0x949dafff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x949db000 - 0x949e5ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x949e6000 - 0x949edff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x949ee000 - 0x94aabfeb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x94aac000 - 0x94ad9ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94ada000 - 0x94dfaff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94edd000 - 0x94ee6ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94f29000 - 0x94f29fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94f2a000 - 0x94f6cffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x94f6d000 - 0x94fb1ff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94fb2000 - 0x94fb3fff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x94fb6000 - 0x950a7ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x950a8000 - 0x950b6ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x950cc000 - 0x950ccfff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x950cd000 - 0x950d4fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x950d5000 - 0x950d5fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x950d6000 - 0x95122fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x9523c000 - 0x95281ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9551d000 - 0x95822ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95823000 - 0x95c65fff  com.apple.CoreGraphics (1.600.0 - 332) <67E70F21-A0F1-356F-90B7-4B90C468EE2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95c66000 - 0x95c69ffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95c6a000 - 0x95c87fff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x95c88000 - 0x95cb5ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x95cb6000 - 0x95ecdfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95f0b000 - 0x95f0cffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x95fab000 - 0x95fb5fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95fc8000 - 0x95fc8fff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x95fc9000 - 0x95fffffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x96000000 - 0x96022fff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x9607e000 - 0x96152ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96153000 - 0x961b7ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x961de000 - 0x961ecfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x961ed000 - 0x96255ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96262000 - 0x9635aff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9635b000 - 0x9637bffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x9637c000 - 0x963b7fef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96736000 - 0x968f2ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x968f3000 - 0x96adbffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96adc000 - 0x96b1eff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x96f1c000 - 0x96f2afff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96f2b000 - 0x96f2cfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x96f2d000 - 0x96f4cff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x96f4d000 - 0x96fa7fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x97114000 - 0x97114fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x97115000 - 0x97163ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97164000 - 0x971a3ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x97229000 - 0x97de5ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97de6000 - 0x97e12ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x97eef000 - 0x97f87fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97f94000 - 0x97f9dff9  com.apple.CommonAuth (3.0 - 2.0) <34C4768C-EF8D-3DBA-AFB7-09148C8672DB> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x98698000 - 0x9869afff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x9869b000 - 0x9869fffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x986a0000 - 0x986affff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x986fd000 - 0x98798fff  com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x98799000 - 0x9879cff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9879d000 - 0x9879dfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9879e000 - 0x987f8ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x987f9000 - 0x98806ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98807000 - 0x98815ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x98816000 - 0x98816ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x98817000 - 0x98893ff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98894000 - 0x9889afff  libGFXShared.dylib (8.9.2) <F3B0E66D-5C47-3A5A-A2CD-F0C58E8322C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9889b000 - 0x9889ffff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x988a2000 - 0x988a9ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x988aa000 - 0x98959ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x989aa000 - 0x989abfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x989ac000 - 0x98ab9ff3  com.apple.ImageIO.framework (3.2.1 - 850) <C964E877-660E-3482-ACF9-EC25DFEAF307> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x98ac1000 - 0x98ad3fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x98ad4000 - 0x98ad7ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x98ae9000 - 0x98b0eff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98b1e000 - 0x98b6dff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x98b6e000 - 0x98f26ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98f27000 - 0x991caff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x991cb000 - 0x991ddff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x991de000 - 0x991e0ffd  libCVMSPluginSupport.dylib (8.9.2) <D6D0BB75-42DA-3772-AB5E-CBD59B343393> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x991e1000 - 0x99243fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x99275000 - 0x992a8ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x992f5000 - 0x99312fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x99313000 - 0x993fcff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x994f2000 - 0x9967bff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9967c000 - 0x996ebffb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99730000 - 0x9974eff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x999cc000 - 0x99a6cff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x99a6d000 - 0x99a73fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99a74000 - 0x99a84ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99a85000 - 0x99a85fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99ce3000 - 0x99d3aff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x99d3b000 - 0x99e57ffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x99e58000 - 0x99eeaffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x99eeb000 - 0x9a026ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9a08e000 - 0x9a092fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9a093000 - 0x9a097ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x9a098000 - 0x9a0fcff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9a108000 - 0x9a10afff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a434000 - 0x9a434fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 119
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=117.4M resident=68.9M(59%) swapped_out_or_unallocated=48.5M(41%)
    Writable regions: Total=32.1M written=848K(3%) resident=1084K(3%) swapped_out=0K(0%) unallocated=31.1M(97%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1600K
    MALLOC                             21.3M
    MALLOC guard page                    48K
    Memory tag=35                      7428K
    Stack                              66.5M
    VM_ALLOCATE                          56K
    __DATA                             5452K
    __DATA/__OBJC                       172K
    __IMAGE                             528K
    __LINKEDIT                         31.6M
    __OBJC                             1524K
    __OBJC/__DATA                         8K
    __PAGEZERO                            4K
    __TEXT                             85.8M
    __UNICODE                           544K
    mapped file                       101.9M
    shared memory                       308K
    ===========                      =======
    TOTAL                             324.4M

    Hi Carolyn,
    Thank you for your suggestion it seemed to do much better, and lasted the whole day but then it crashed again last night
    Interval Since Last Panic Report:  139535 sec
    Anonymous UUID:                    4964D4DE-C0B4-4BF5-739A-DA67B363A129
    Fri Jul  5 06:52:57 2013
    panic(cpu 1 caller 0xffffff8009cb8655): Kernel trap at 0xffffff7f8af16af7, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00000001044e905c, CR3: 0x000000000c9fe000, CR4: 0x0000000000000660
    RAX: 0xde531e715ebf009b, RBX: 0xffffff80220ae048, RCX: 0x7fffffffffffffff, RDX: 0x0000000000000040
    RSP: 0xffffff80890dbfa0, RBP: 0xffffff80890dbfb0, RSI: 0x0000000000000002, RDI: 0xdeadbeefdeadbeef
    R8:  0xffffff807d58d078, R9:  0x0000000000988ddc, R10: 0xffffff80890dbd20, R11: 0xffffff7f8aed61c0
    R12: 0xffffff807d58d000, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff8016105dc8
    RFL: 0x0000000000010282, RIP: 0xffffff7f8af16af7, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000001044e905c, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80890dbc40 : 0xffffff8009c1d626
    0xffffff80890dbcb0 : 0xffffff8009cb8655
    0xffffff80890dbe80 : 0xffffff8009cce17d
    0xffffff80890dbea0 : 0xffffff7f8af16af7
    0xffffff80890dbfb0 : 0xffffff8009cb3137
          Kernel Extensions in backtrace:
             com.digidesign.fwfamily.driver(9.0f4)[EA9004EA-D8CD-1CA7-6281-17C82B2AF0EF]@0xf fffff7f8af08000->0xffffff7f8af29fff
                dependency: com.apple.iokit.IOFireWireAVC(4.2.2)[F7D819BB-CD26-352B-BE6A-AB3040A06AEF]@0xff ffff7f8a8e5000
                dependency: com.apple.iokit.IOAudioFamily(1.8.9fc11)[AB8DD2DD-43BD-3B7B-95F7-26E6E0BBF339]@ 0xffffff7f8aece000
                dependency: com.apple.iokit.IOFireWireFamily(4.5.5)[A045A111-194F-3E54-A63E-E015DC69B862]@0 xffffff7f8a37b000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12E55
    Kernel version:
    Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    Kernel UUID: 896CB1E3-AB79-3DF1-B595-549DFFDF3D36
    Kernel slide:     0x0000000009a00000
    Kernel text base: 0xffffff8009c00000
    System model name: iMac10,1 (Mac-F2268CC8)
    System uptime in nanoseconds: 17432848808837
    last loaded kext at 260053975535: com.apple.filesystems.smbfs          1.8.4 (addr 0xffffff7f8bf58000, size 229376)
    last unloaded kext at 229025294943: com.apple.driver.AppleFileSystemDriver          3.0.1 (addr 0xffffff7f8be6f000, size 8192)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard          5.9.1
    com.digidesign.fwfamily.driver          9.0f4
    com.digidesign.iokit.DigiDal          10.3.6f14
    com.apple.filesystems.smbfs          1.8.4
    com.apple.driver.AppleBluetoothMultitouch          75.19
    com.apple.filesystems.ntfs          3.10
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.87
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.1.4f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleBacklight          170.2.5
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.kext.AMDFramebuffer          8.1.2
    com.apple.ATIRadeonX2000          8.1.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBCardReader          3.1.7
    com.apple.iokit.SCSITaskUserClient          3.5.5
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.1
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AirPort.Atheros40          600.72.2
    com.apple.driver.AppleAHCIPort          2.5.2
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBOHCI          5.2.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.1.4f2
    com.apple.driver.AppleMultitouchDriver          235.29
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.4f2
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOFireWireAVC          4.2.2
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.iokit.IOBluetoothFamily          4.1.4f2
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.kext.AMD4600Controller          8.1.2
    com.apple.kext.AMDSupport          8.1.2
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleUSBHIDKeyboard          170.2
    com.apple.driver.AppleHIDKeyboard          170.2
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.5
    com.apple.iokit.IOUSBMassStorageClass          3.5.1
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.5
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          530.4
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOUSBFamily          5.6.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

  • BI Publisher and TomCat JDBC error

    Hey Folks,
    I have BI Pulbisher up and running in a cluster mode on a Solaris box with a shared folder such as (/u01/app/BI_Publisher/xmlp) as the file path in WEB-INF\xmlp-server-congfig.xml. All my reports and XMLP configuration folders are stored in that directory (ie. Admin, DemoFiles, Reports, Tools etc..). BI Publisher is up and running under the tomcat user id.
    My OBIEE directory is contained in /opt/oracle/app/OracleBI....
    Now when I deployed the xmlpserver.war file and configure my connections, everything was working properly.
    Now I see the following exception being thrown in the tomcat logs. This error msgs are inserted to the logs every second and it will fill up the log file in a matter of hours which makes the BI Publisher go down.
    I have to erase the logs and re-cycle the tomcat server and everything is fine again, but these msgs keep filling up the logs.
    How can i solve this issue of "Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'"?
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin- ClusterManager: Error managing cluster: Failed to obtain DB connection from data source 'myDS': org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver
    org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'myDS': org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver]
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:570)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)

    setpath for the bijdbc.jarfor OBIEE and ojdbc.jar for Oracle DB file .
    that should resolve this library not found error.

  • OIM and OIA11g Integration(error while importing Resource metadata into OIA

    Hi,
    I followed the below link and trying to integrate OIM 11.1.1.5 and OIA 11.1.1.3.6
    And both are deployed different weblogic domains..
    http://wikis.sun.com/display/OIA11gDocs/Integrating+With+Oracle+Identity+Manager,+Preferred+Method
    I am getting error in Step 6: Import the Oracle Identity Manager (OIM) Data Into Oracle Identity Analytics (OIA) -> To Import Resource Metadata
    10:56:21,484 DEBUG [DBIAMSolution] publishing import starting event...
    10:56:21,623 DEBUG [OimUtilityFactory] ************** OIM Connection Params *************
    10:56:21,628 DEBUG [OimUtilityFactory] XL Home ---> C:\Oracle\Middleware\Oracle_IDM1
    10:56:21,630 DEBUG [OimUtilityFactory] login config ---> C:\Oracle\Middleware\Oracle_IDM1\server\config\authwl.conf
    10:56:21,631 DEBUG [OimUtilityFactory] ****************************************************
    10:56:21,636 DEBUG [OimUtilityFactory] Xellerate Discovery Settings {}
    10:56:21,638 DEBUG [OimUtilityFactory] ********** Connecting to OIM Server **********
    10:56:21,774 ERROR [IamDbNamespaceImporterHelperImpl] Error connecting to OIM
    Thor.API.Exceptions.tcAPIException: javax.security.auth.login.LoginException: java.lang.SecurityException: [Security:090304]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User xelsysadm denied
         at Thor.API.tcUtilityFactory.<init>(tcUtilityFactory.java:166)
         at com.vaau.rbacx.iam.util.oracle.oimapi.OimUtilityFactory.getUtilityFactory(OimUtilityFactory.java:67)
         at com.vaau.rbacx.iam.db.helpers.IamDbNamespaceImporterHelperImpl.readNamespaces(IamDbNamespaceImporterHelperImpl.java:87)
         at com.vaau.rbacx.iam.db.DBIAMSolution.readResourceMetadata(DBIAMSolution.java:642)
         at com.vaau.rbacx.iam.service.impl.RbacxIAMServiceImpl.importResourceMetadata(RbacxIAMServiceImpl.java:472)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy274.importResourceMetadata(Unknown Source)
         at com.vaau.rbacx.scheduling.executor.iam.IAMJobExecutor.execute(IAMJobExecutor.java:107)
         at com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.AbstractJob.execute(AbstractJob.java:72)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:534)
    10:56:21,784 ERROR [DBIAMSolution] Error Importing Namespaces : javax.security.auth.login.LoginException: java.lang.SecurityException: [Security:090304]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User xelsysadm denied
    10:56:21,836 DEBUG [DBIAMSolution] publishing import completed event...
    10:56:21,903 INFO [VaauSchedulerEventListenerImpl] Job executed: oim tst, IAM
    10:56:21,904 INFO [VaauSchedulerEventListenerImpl] Job run time: 0s
    10:56:21,904 INFO [VaauSchedulerEventListenerImpl] Next Run: null
    Thanks..
    Edited by: IDMuser19 on Aug 24, 2011 4:06 PM
    Edited by: IDMuser19 on Aug 25, 2011 10:58 PM

    Thanks rajiv for the reply..
    No i am not able to import users too..getting same error in the rbacx.log
    I tried with below details
    Xellerate Home: C:\Oracle\Middleware\Oracle_IDM1
    Login Config : C:\Oracle\Middleware\Oracle_IDM1\server\config\authwl.conf
    User Name: XELSYSADM
    Password : ●●●●●●●●
    ( in version 11.1.1.3.6 does not prompt for these two Provider URL: t3://localhost:14000 , Initial Context Factory: weblogic.jndi.WLInitialContextFactory)
    here the OIA and OIM are in different domains.. i am able loginto OIM with xelsysadm without any problem just followed the instruction in the integration doc not sure where i did a mistake..
    Please let know if have any idea..Thanks..
    Edited by: IDMuser19 on Aug 30, 2011 8:25 AM

Maybe you are looking for

  • How do I load photos and video into existing flash

    Hi, I can work with graphics and timeline keyframes but I'm generally clueless about scripting. I have a page: http://www.harmoniccycle.com/hc/swf/IMBA/pineyZ/PINEY_Z.html that I've prepared with 3 button instances in anticipation of loading either o

  • How do I delete a podcast icon from my iphone?

    I'm somewhat Mac and iphone saavy and have looked all over the Net and these forums for an answer.  No dice! Let's see what you guys got:  I have deleted some podcasts from iTunes that I don't want to see anymore and the icon has stayed on my iphone.

  • How do I scan with my MX439?

    How do i scan documents to my computer from my MX439. 

  • To conquer with ora-01033

    Hi, I've got such error, that says 'Ora-01033: Oracle Initialization or shutdown in progress'. Then I've tried to run - 'conn system/????@glpd as sysdba' in that DB server. But I just fail as it says 'Ora-01031: Insufficient privileges'. How about th

  • Getting error message: MSVCR80.dll is missing after last update...  won't launch iTunes...

    I keep getting this error message when trying to download iTunes.  Have unistalled and then tried to reinstall.  MSVCR80.dll is missing Error 7 (Windows Error 126) Please advise