Help to do log to pa

hallow experts
i doing a interface that have to send to other system that mange h.r. all the change on infotype in pa (in sap)action like hire and fire and gone to vacation and many more, i use that two function below but its complicated becuse i have to send to other system lot of action in structure that the wont. to send the fields that change in infty its easy. but action (hire,fire...) is two difculet for me .in the first function i get table with employee num and infty change and with that i go to get detail function  and in table fields i see what happen in massen fields but becuse i have lot of person & action itd defcult  what is best way to do that?
i need a genral solution .help to divide the problem.
please help
THIS TWO FUNCTION I USE
HR_INFOTYPE_LOG_GET_LIST
HR_INFOTYPE_LOG_GET_DETAIL
Best Regards

hi friends
if u need to ask question about my problem feel free to ask
Regards

Similar Messages

  • I had something called backupd-helper cancel my log out last night.  I was wondering it this is spyware?  Can anyone help?

    This morning I had a information window that read "The application backupd-helper cancled logout.  To try again, quit backupd-helper and choose log out form the Apple menu."  I look for this app on my dock, but it was not there.  I used spot light to try to find it but it did not show up.  I checked in my applications folder and utilities folder, but again no luck.  Finally I used Activity Monitor and there it was, but as soon as I "inspected" it the process terminated and disappeared.  It's parent app is Launchd.  Any information would be very helpful, thanks.

    This is part of Time Machine. It is a daemon helper, part of the backup process.
    It is not spyware.

  • Need help with log4j logging tool (org.apache.log4j.*) to log into database

    Hi,
    I need help with log4j logging tool (org.apache.log4j.*) to log into database using JDBCAppender. Have look at my logger code and corresponding log4j.properties file stated below. I'm running this program using Eclipse IDE and it's giving me the following error (highlighted in red) at the end:
    log4j: Parsing for [root] with value=[debug, stdout, Roll, CRSDBAPPENDER].
    log4j: Level token is [debug].
    log4j: Category root set to DEBUG
    log4j: Parsing appender named "stdout".
    log4j: Parsing layout options for "stdout".
    log4j: Setting property [conversionPattern] to [%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "stdout".
    log4j: Parsed "stdout" options.
    log4j: Parsing appender named "Roll".
    log4j: Parsing layout options for "Roll".
    log4j: Setting property [conversionPattern] to [%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "Roll".
    log4j: Setting property [file] to [HelloWorld.log].
    log4j: Setting property [maxBackupIndex] to [10].
    log4j: Setting property [maxFileSize] to [20KB].
    log4j: setFile called: HelloWorld.log, true
    log4j: setFile ended
    log4j: Parsed "Roll" options.
    log4j: Parsing appender named "CRSDBAPPENDER".
    {color:#ff0000}
    Can't find class HelloWorld{color}
    import org.apache.log4j.*;
    public class HelloWorld {
    static Logger log = Logger.getLogger(HelloWorld.class.getName());
    public static void main(String[] args) {
    try{
    // Now, try a few logging methods
    MDC.put("myComputerName", "Ravinder");
    MDC.put("crsServerName", "ARNDEV01");
    log.debug("Start of main()");
    log.info("Just testing a log message with priority set to INFO");
    log.warn("Just testing a log message with priority set to WARN");
    log.error("Just testing a log message with priority set to ERROR");
    log.fatal("Just testing a log message with priority set to FATAL");
    catch(Exception e){
    e.printStackTrace();
    ------------------------- log4j.properties file ------------------------------
    #### Use three appenders - log to console, file and database
    log4j.rootCategory=debug, stdout, Roll, CRSDBAPPENDER
    log4j.debug=true
    # Print only messages of priority WARN or higher for your category
    # log4j.category.your.category.name=WARN
    # Specifically inherit the priority level
    # log4j.category.your.category.name=INHERITED
    #### stdout - First appender writes to console
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern=%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### Roll - Second appender writes to a file
    log4j.appender.Roll=org.apache.log4j.RollingFileAppender
    ##log4j.appender.Roll.File=${InstanceName}.log
    log4j.appender.Roll.File=HelloWorld.log
    log4j.appender.Roll.MaxFileSize=20KB
    log4j.appender.Roll.MaxBackupIndex=10
    log4j.appender.Roll.layout=org.apache.log4j.PatternLayout
    log4j.appender.Roll.layout.ConversionPattern=%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### CRSDBAPPENDER - third appender writes to the database
    log4j.appender.CRSDBAPPENDER=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.CRSDBAPPENDER.Driver=net.sourceforge.jtds.jdbc.Driver
    log4j.appender.CRSDBAPPENDER.URL=jdbc:jtds:sqlserver:/arncorp15:1433;DatabaseName=LOG
    log4j.appender.CRSDBAPPENDER.USER=sa
    log4j.appender.CRSDBAPPENDER.PASSWORD=p8ss3doff
    log4j.appender.CRSDBAPPENDER.layout=org.apache.log4j.PatternLayout
    log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ('%X{myComputerName}', '%X{crsServerName}', '%d{dd MMM yyyy HH:mm:ss,SSS}', '%p', '%t', '%F', '%L', '%m')
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG(COMPUTERNAME,CRSSERVERNAME,LOGTIME,LOGLEVEL,THREADNAME,FILENAME,LINENUMBER,LOGTEXT) select host_name(),'${CRSServerName}${InstanceName}','%d','%5p','%t','%F','%L','%m%n'
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ("%X{myComputerName}", "%X{crsServerName}", "%d{dd MMM yyyy HH:mm:ss,SSS}", "%p", "%t", "%F", "%L", "%m")
    ------------------------------- end of log4j.properties file ------------------------------
    Here is the directory structure of my program. My log4j.properties file and HelloWorld.class file are residing in folder HelloWorld\bin.
    HelloWorld\bin
    HelloWorld\lib
    HelloWorld\src
    Please note - The same program works fine for console and file appender when I comment the database appender part in my properties file.
    Thanks
    Ravinder

    try this :
    log4j.appender.PROJECT.Append=false

  • I cant access my ymail PLEASE HELP I can log into yahoo but cant get to mail? Think the words configure & rand flash in address bar

    I cant access my ymail PLEASE HELP I can log into yahoo but cant get to mail? Think the words configure & rand flash in address bar

    Hi Acrylik,
    Welcome to the Apple Support Communities!
    For assistance resetting your Apple ID password, please use the information in the following article. I understand you have already attempted to reset via email and security questions, but the article also includes a link to contact Apple support if necessary.
    If you forgot your Apple ID password
    http://support.apple.com/kb/HT5787
    Have a great day,
    Joe

  • Help needed - automatic log in on public computer.   How to get rid of the account.

    Hi there
    Recently while on vacation, my son logged into a public computer on his ichat.  Unfortuantely, it was clicked as automatic log in.
    Now we are back home and have realized that someone has been accessing his account.
    We have tried deleting the account from our home computer, however, it does not delete it from the public computer.
    What will happen if we  change the password on our home computer?  Will the public computer be prompted to re-login with the new password, and therefore won't be able to?
    Help please

    hI,
    Yes change the Password and they will not be able to login.
    That is change the Password at the server you are using.
    Either AIM itself for AIM name or iForgot for @MAC.com or MobilMe names
    Login to your Google account and change the password there in your Account Settings
    With any other Jabber Account you will have to use the third Party app you used to get the accounst Name set up.
    Then Change it in iChat.
    10:25 PM      Sunday; June 26, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously
    Message was edited by: Ralph Johns (UK)

  • Need help with error log

    Hello folks...
    I wish I knew what I was looking at here, hopefully someone can make sense of this for me?
    Yesterday I started up Flex Builder 3 and had an error.  All I could see was java this java that...so I reinstalled java, hoping that might do something.
    now I get a little different error than I saw, but I still see a lot of java references.
    Thanks for you help!
    ===========================================
    !ENTRY org.eclipse.core.resources 2 10035 2010-08-17 09:43:30.531
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.781
    !MESSAGE An error occurred while automatically activating bundle org.eclipse.core.resources (69).
    !STACK 0
    org.osgi.framework.BundleException: Exception in org.eclipse.core.resources.ResourcesPlugin.start() of bundle org.eclipse.core.resources.
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:1018)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 74)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :111)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/EZServe/bin-release/com/dougmccune/.svn/entries' not found.
        at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
        at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
        at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
        at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
        at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
        at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1319)
        at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1949)
        at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1713)
        at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:363)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:9 99)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:993)
        ... 29 more
    Root exception:
    org.eclipse.core.internal.dtree.ObjectNotFoundException: Tree element '/EZServe/bin-release/com/dougmccune/.svn/entries' not found.
        at org.eclipse.core.internal.dtree.AbstractDataTree.handleNotFound(AbstractDataTree.java:257 )
        at org.eclipse.core.internal.dtree.DeltaDataTree.getData(DeltaDataTree.java:585)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:50)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.NoDataDeltaNode.asBackwardDelta(NoDataDeltaNode.java:59)
        at org.eclipse.core.internal.dtree.DataDeltaNode.asBackwardDelta(DataDeltaNode.java:47)
        at org.eclipse.core.internal.dtree.DeltaDataTree.asBackwardDelta(DeltaDataTree.java:88)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:816)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:815)
        at org.eclipse.core.internal.dtree.DeltaDataTree.reroot(DeltaDataTree.java:792)
        at org.eclipse.core.internal.watson.ElementTree.immutable(ElementTree.java:517)
        at org.eclipse.core.internal.resources.SaveManager.restore(SaveManager.java:670)
        at org.eclipse.core.internal.resources.SaveManager.startup(SaveManager.java:1319)
        at org.eclipse.core.internal.resources.Workspace.startup(Workspace.java:1949)
        at org.eclipse.core.internal.resources.Workspace.open(Workspace.java:1713)
        at org.eclipse.core.resources.ResourcesPlugin.start(ResourcesPlugin.java:363)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl$2.run(BundleContextImpl.java:9 99)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextIm pl.java:993)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 74)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :111)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.796
    !MESSAGE An error occurred while automatically activating bundle com.adobe.flexbuilder.project (34).
    !STACK 0
    org.osgi.framework.BundleException: The activator com.adobe.flexbuilder.project.internal.FlexProjectCore for bundle com.adobe.flexbuilder.project is invalid
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:141)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 70)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:136)
        ... 41 more
    Root exception:
    java.lang.NoClassDefFoundError: org/eclipse/core/resources/IResource
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundl e.java:136)
        at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:9 70)
        at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:346)
        at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:260)
        at org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:400)
        at org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass(EclipseLa zyStarter.java:111)
        at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java :417)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoade r.java:189)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:34 0)
        at org.eclipse.osgi.framework.internal.core.SingleSourcePackage.loadClass(SingleSourcePackag e.java:37)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClassInternal(BundleLoader.java :405)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:369)
        at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:357)
        at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.jav a:83)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClassInternal(Unknown Source)
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    !ENTRY org.eclipse.osgi 4 0 2010-08-17 09:43:30.843
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/asn/ASNBridge$ILicenseChangedListener)
        at org.eclipse.swt.SWT.error(SWT.java:3563)
        at org.eclipse.swt.SWT.error(SWT.java:3481)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126)
        at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
        at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
        at org.eclipse.swt.widgets.Display.release(Display.java:3345)
        at org.eclipse.swt.graphics.Device.dispose(Device.java:261)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication.start(FlexBuilderApplication.java :128)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:106)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:76)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
        at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
    Caused by: java.lang.NoClassDefFoundError: com/adobe/flexbuilder/project/asn/ASNBridge$ILicenseChangedListener
        at java.lang.Class.getDeclaredConstructors0(Native Method)
        at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
        at java.lang.Class.getConstructor0(Unknown Source)
        at java.lang.Class.newInstance0(Unknown Source)
        at java.lang.Class.newInstance(Unknown Source)
        at com.adobe.flexbuilder.standalone.FlexBuilderApplication$1.run(FlexBuilderApplication.java :101)
        at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
        at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
        ... 18 more
    !ENTRY org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/org.eclipse.datatools.connectivity.oda.template.ui_3.0.4.200706071.jar was not resolved.
    !SUBENTRY 2 org.eclipse.datatools.connectivity.oda.template.ui 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.pde.ui_[3.2.0,4.0.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.debug.e32_3.0.214193.jar was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.debug.e32 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,3.3.0).
    !ENTRY org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/com.adobe.flexbuilder.debug.e32_3.0.214193.jar [15] was not resolved.
    !SUBENTRY 2 com.adobe.flexbuilder.debug.e32 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.debug.ui_[3.2.0,3.3.0).
    !SUBENTRY 1 org.eclipse.osgi 2 0 2010-08-17 09:43:30.953
    !MESSAGE Bundle update@plugins/org.eclipse.datatools.connectivity.oda.template.ui_3.0.4.200706071.jar [89] was not resolved.
    !SUBENTRY 2 org.eclipse.datatools.connectivity.oda.template.ui 2 0 2010-08-17 09:43:30.953
    !MESSAGE Missing required bundle org.eclipse.pde.ui_[3.2.0,4.0.0).

    Sorry...I'm completely new to Flex.
    What do you mean by changing the workspace?
    When I try to start Flex Builder 3, I can go no further as the error message comes up.  Can I change the workspace outside of the application...if so, how?
    Thanks much!

  • Help needed in Logging

    Hi,
    I have created a custom logging Handler and configured the same in the properties file. This handler has its own Formatter and Filter. When I iterate through the LogManager and print the available Handlers I get a NullPointerException when it prints the Formatter assoicated with the Custom Handler.
    Properties File
    com.test.logging.CustomHandler.pattern = %h/java%u.log
    com.test.logging.CustomHandler.formatter = com.sabre.logging.CustomFormatter
    com.test.logging.CustomHandler.filter = com.sabre.logging.CustomFilter
    com.test.logging.CustomHandler.level = INFO
    CustomFormatter class is in the right package.
    Iterator Code..
    for (;loggerNames.hasMoreElements();) {
                   String loggerName = loggerNames.nextElement();
                   System.out.println("Logger Name is : "+ loggerName);
                   Logger logger = Logger.getLogger(loggerName);
                   Handler[] handlers = logger.getHandlers();
                   logger.setUseParentHandlers(false);
                   for(int i=0;i<handlers.length;i++){
                        System.out.println("Handler : "+handlers.toString());
                        System.out.println("Pattern :" +handlers[i].getEncoding());
                        System.out.println("Level : "+ handlers[i].getLevel().getName());
                        // Filter cannot be printed. Donno the Reason
                        if(handlers[i].getFilter()!=null)
                             System.out.println("Filter : "+ handlers[i].getFilter().toString());
                        System.out.println("Formatter : "+ handlers[i].getFormatter().toString());
                   }// End For Loop
              } // End Outer For Loop
    I donno what is wrong with this.. Help me in resolving this..
    Thanks in advance

    public static void main(String[] args) throws SecurityException, FileNotFoundException, IOException {
              LogManager logManager = LogManager.getLogManager();
              logManager.readConfiguration(new FileInputStream("logging.properties"));
              Enumeration<String> loggerNames = logManager.getLoggerNames();
              for (;loggerNames.hasMoreElements();) {
                   String loggerName = loggerNames.nextElement();
                   Logger logger = Logger.getLogger(loggerName);
                   Handler[] handlers = logger.getHandlers();
                   for(int i=0;i<handlers.length;i++){
                        System.out.println("Handler : "+handlers.toString());
                        System.out.println("Level : "+ handlers[i].getLevel().getName());
                        System.out.println("Filter : "+ handlers[i].getFilter().toString());
                        System.out.println("Formatter : "+ handlers[i].getFormatter().toString());
                   }// End For Loop
              } // End Outer For Loop
         } // End Main
    Here it is...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Help! Cant log in to BB App World -changed email and now asking for original user name associated email

    Hi
    I have a bold 9790. I have changed my BB app world email as I cant access that original email anymore, so changed email address, i registered it online in the bb website, when i go to update apps i try and log in to the appworld with my new email it says 'enter user name associated with this smartphone', and just canot log in...PLEASE HELP

    elc088 wrote:
    Hi
    I have a bold 9790. I have changed my BB app world email as I cant access that original email anymore, so changed email address, i registered it online in the bb website, when i go to update apps i try and log in to the appworld with my new email it says 'enter user name associated with this smartphone', and just canot log in...PLEASE HELP
    Hi @elc088! Welcome to the BlackBerry Support Community Forums!
    If you're referring to BlackBerry ID, then you need to perform a Security Wipe before you can login using your new credentials. Make sure you have a backup because this will delete all of your data.
    Cheers!
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • Imac has crashed twice. need help reading crash log

    Hi. I got a new imac less than a year ago and recently it has crashed twice. Can anyone tell me why this has happened. Here is the log. Thanks!
    Process:    
    CalendarAgent [169]
    Path:       
    /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAg ent
    Identifier: 
    CalendarAgent
    Version:    
    1.0 (57)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [133]
    User ID:    
    501
    Date/Time:  
    2014-04-03 17:41:19.389 -0400
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: 66D5512F-DBB7-4CCD-8E49-9DF90B7A7168
    Crashed Thread:  7  Dispatch queue: tcpConnWorkQueue
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation       
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   CalendarAgent                  
    0x000000010bc8bab3 0x10bc8b000 + 2739
    6   libdyld.dylib                  
    0x00007fff8cbac7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         
    0x00007fff8825ed16 kevent + 10
    1   libdispatch.dylib              
    0x00007fff8a2cddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib              
    0x00007fff8a2cd9ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libc++abi.dylib                
    0x00007fff8cb81eee __dynamic_cast + 4
    1   com.apple.security             
    0x00007fff84f1fecd Attachment& Security::MappingHandle<long>::find<Attachment>(long, int) + 71
    2   com.apple.security             
    0x00007fff84f1fb15 Attachment::upcallMalloc(long, unsigned long) + 19
    3   com.apple.security             
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    4   com.apple.security             
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    5   com.apple.security             
    0x00007fff84d8a642 Security::CssmAllocatorMemoryFunctions::relayMalloc(unsigned long, void*) + 22
    6   com.apple.security             
    0x00007fff84d92cdc Security::CssmMemoryFunctionsAllocator::malloc(unsigned long) + 20
    7   com.apple.security             
    0x00007fff84f1fb29 Attachment::upcallMalloc(long, unsigned long) + 39
    8   com.apple.security             
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    9   com.apple.security             
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    10  com.apple.security             
    0x00007fff84d8a77c cssm_db_unique_record* Security::Allocator::alloc<cssm_db_unique_record>() + 18
    11  com.apple.security             
    0x00007fff84d8a6b9 Security::AppleDatabase::createUniqueRecord(Security::DbContext&, unsigned int, Security::RecordId const&) + 33
    12  com.apple.security             
    0x00007fff84e85b19 Security::AppleDatabase::dataGetNext(Security::DbContext&, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 119
    13  com.apple.security             
    0x00007fff84d8abd2 Security::DatabaseSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 170
    14  com.apple.security             
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    15  com.apple.security             
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    16  com.apple.security             
    0x00007fff84d9c6e1 SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 161
    17  com.apple.security             
    0x00007fff84d9c63e non-virtual thunk to SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 13
    18  com.apple.security             
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    19  com.apple.security             
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108

    I'm sorry, Here it is... Thanks.
    Process:    
    CalendarAgent [169]
    Path:       
    /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAg ent
    Identifier: 
    CalendarAgent
    Version:    
    1.0 (57)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [133]
    User ID:    
    501
    Date/Time:  
    2014-04-03 17:41:19.389 -0400
    OS Version: 
    Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: 66D5512F-DBB7-4CCD-8E49-9DF90B7A7168
    Crashed Thread:  7  Dispatch queue: tcpConnWorkQueue
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   CalendarAgent            
    0x000000010bc8bab3 0x10bc8b000 + 2739
    6   libdyld.dylib            
    0x00007fff8cbac7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8825ed16 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8a2cddea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x00007fff8a2cd9ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libc++abi.dylib          
    0x00007fff8cb81eee __dynamic_cast + 4
    1   com.apple.security       
    0x00007fff84f1fecd Attachment& Security::MappingHandle<long>::find<Attachment>(long, int) + 71
    2   com.apple.security       
    0x00007fff84f1fb15 Attachment::upcallMalloc(long, unsigned long) + 19
    3   com.apple.security       
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    4   com.apple.security       
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    5   com.apple.security       
    0x00007fff84d8a642 Security::CssmAllocatorMemoryFunctions::relayMalloc(unsigned long, void*) + 22
    6   com.apple.security       
    0x00007fff84d92cdc Security::CssmMemoryFunctionsAllocator::malloc(unsigned long) + 20
    7   com.apple.security       
    0x00007fff84f1fb29 Attachment::upcallMalloc(long, unsigned long) + 39
    8   com.apple.security       
    0x00007fff84d92c82 Security::PluginSession::malloc(unsigned long) + 20
    9   com.apple.security       
    0x00007fff84d98b73 Security::DLPluginSession::malloc(unsigned long) + 9
    10  com.apple.security       
    0x00007fff84d8a77c cssm_db_unique_record* Security::Allocator::alloc<cssm_db_unique_record>() + 18
    11  com.apple.security       
    0x00007fff84d8a6b9 Security::AppleDatabase::createUniqueRecord(Security::DbContext&, unsigned int, Security::RecordId const&) + 33
    12  com.apple.security       
    0x00007fff84e85b19 Security::AppleDatabase::dataGetNext(Security::DbContext&, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 119
    13  com.apple.security       
    0x00007fff84d8abd2 Security::DatabaseSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 170
    14  com.apple.security       
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    15  com.apple.security       
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    16  com.apple.security       
    0x00007fff84d9c6e1 SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 161
    17  com.apple.security       
    0x00007fff84d9c63e non-virtual thunk to SSDLSession::DataGetNext(long, long, cssm_db_record_attribute_data*, Security::CssmData*, cssm_db_unique_record*&) + 13
    18  com.apple.security       
    0x00007fff84d9c593 cssm_DataGetNext(cssm_dl_db_handle, long, cssm_db_record_attribute_data*, cssm_data*, cssm_db_unique_record**) + 132
    19  com.apple.security       
    0x00007fff84d9c442 CSSM_DL_DataGetNext + 108
    20  com.apple.security       
    0x00007fff84d982f1 Security::CssmClient::DbDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&) + 475
    21  com.apple.security       
    0x00007fff84e4358e Security::CssmClient::SSDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&, cssm_access_credentials const*) + 64
    22  com.apple.security       
    0x00007fff84d9ba9c Security::CssmClient::SSDbCursorImpl::next(Security::CssmClient::DbAttributes*, Security::CssmDataContainer*, Security::CssmClient::DbUniqueRecord&) + 12
    23  com.apple.security       
    0x00007fff84d9b455 Security::KeychainCore::KeychainSchemaImpl::KeychainSchemaImpl(Security::CssmCl ient::Db const&) + 725
    24  com.apple.security       
    0x00007fff84d9b158 Security::KeychainCore::KeychainSchema::KeychainSchema(Security::CssmClient::Db const&) + 40
    25  com.apple.security       
    0x00007fff84d9b0d1 Security::KeychainCore::KeychainImpl::keychainSchema() + 63
    26  com.apple.security       
    0x00007fff84d9ab8d Security::KeychainCore::DefaultCredentials::operator()(Security::CssmClient::Db ) + 79
    27  com.apple.security       
    0x00007fff84d9a9eb Security::KeychainCore::KeychainImpl::defaultCredentials() + 157
    28  com.apple.security       
    0x00007fff84d9648b Security::CssmClient::DbImpl::open() + 221
    29  com.apple.security       
    0x00007fff84d9fcd5 Security::KeychainCore::KCCursorImpl::next(Security::KeychainCore::Item&) + 257
    30  com.apple.security       
    0x00007fff84dd970a _SecIdentityCopyPreferenceMatchingName(__CFString const*, unsigned int, __CFArray const*, OpaqueSecIdentityRef**) + 435
    31  com.apple.security       
    0x00007fff84dd9014 SecIdentityCopyPreference + 261
    32  com.apple.CFNetwork      
    0x00007fff89da0b64 HTTPProtocolSSLSupport::getSSLCertsCached(__CFString const*) + 236
    33  com.apple.CFNetwork      
    0x00007fff89da07c1 HTTPProtocol::setupSSLPropertiesOnStream(_CFURLRequest const*) + 411
    34  com.apple.CFNetwork      
    0x00007fff89da0400 HTTPProtocol::openStream() + 80
    35  com.apple.CFNetwork      
    0x00007fff89d9f964 HTTPProtocol::useNetConnectionForRequest(NetConnection*, __CFHTTPMessage*, unsigned char, unsigned char) + 910
    36  com.apple.CFNetwork      
    0x00007fff89db986f HTTPConnectionCacheEntry::connectionWasLost(NetConnection*) + 657
    37  com.apple.CFNetwork      
    0x00007fff89db9584 HTTPConnectionCacheEntry::removeUnauthConnection(NetConnection*) + 202
    38  com.apple.CoreFoundation 
    0x00007fff87186154 CFArrayApplyFunction + 68
    39  com.apple.CFNetwork      
    0x00007fff89d9d87a HTTPConnectionCacheEntry::findOrCreateEmptyUnauthenticatedNetConnection(HTTPPro tocol*, __CFHTTPMessage*, unsigned char*, __CFError**) + 754
    40  com.apple.CFNetwork      
    0x00007fff89d9cb9c HTTPConnectionCacheEntry::enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 622
    41  com.apple.CFNetwork      
    0x00007fff89d9c520 HTTPConnectionCache::_onqueue_enqueueRequestForProtocol(HTTPProtocol*, __CFHTTPMessage*) + 178
    42  com.apple.CFNetwork      
    0x00007fff89d9c445 __enqueueRequestForProtocol_block_invoke_0 + 26
    43  com.apple.CFNetwork      
    0x00007fff89e35fea __block_global_1 + 28
    44  com.apple.CoreFoundation 
    0x00007fff87186154 CFArrayApplyFunction + 68
    45  com.apple.CFNetwork      
    0x00007fff89d96374 RunloopBlockContext::perform() + 124
    46  com.apple.CFNetwork      
    0x00007fff89d9624b MultiplexerSource::perform() + 221
    47  com.apple.CoreFoundation 
    0x00007fff87167b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    48  com.apple.CoreFoundation 
    0x00007fff87167455 __CFRunLoopDoSources0 + 245
    49  com.apple.CoreFoundation 
    0x00007fff8718a7f5 __CFRunLoopRun + 789
    50  com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    51  com.apple.Foundation     
    0x00007fff8d82f546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    52  com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    53  libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    54  libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8825e322 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff871c9f46 __CFSocketManager + 1302
    2   libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    3   libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 4:: com.apple.calendar.agent.ApplePushServiceConnection
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CalendarAgent  
    0x000000010bc9c0fc -[CalAgentAPSConnectionManager _calAPSMain] + 731
    6   com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    7   libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    8   libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 7 Crashed:: Dispatch queue: tcpConnWorkQueue
    0   com.apple.security       
    0x00007fff84d7fdc5 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 21
    1   com.apple.security       
    0x00007fff84dd15a6 std::_Rb_tree<long, std::pair<long const, SSDatabase>, std::_Select1st<std::pair<long const, SSDatabase> >, std::less<long>, std::allocator<std::pair<long const, SSDatabase> > >::_M_erase(std::_Rb_tree_node<std::pair<long const, SSDatabase> >*) + 46
    2   com.apple.security       
    0x00007fff84e28f0e SSDLSession::~SSDLSession() + 590
    3   com.apple.security       
    0x00007fff84dd130a SSDLSession::~SSDLSession() + 18
    4   com.apple.security       
    0x00007fff84da4ada Security::CssmPlugin::moduleDetach(long) + 220
    5   com.apple.security       
    0x00007fff84dd126f CSSM_SPI_ModuleDetach__apple_cspdl + 35
    6   com.apple.security       
    0x00007fff84da4831 Attachment::detach(bool) + 127
    7   com.apple.security       
    0x00007fff84da461f CSSM_ModuleDetach + 33
    8   com.apple.security       
    0x00007fff84da45c8 Security::CssmClient::AttachmentImpl::deactivate() + 44
    9   com.apple.security       
    0x00007fff84da4563 Security::CssmClient::AttachmentImpl::~AttachmentImpl() + 31
    10  com.apple.security       
    0x00007fff84dd1206 Security::CssmClient::CSPDLImpl::~CSPDLImpl() + 32
    11  com.apple.security       
    0x00007fff84e42401 Security::CssmClient::SSCSPDLImpl::~SSCSPDLImpl() + 25
    12  com.apple.security       
    0x00007fff84d7fdf8 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 72
    13  com.apple.security       
    0x00007fff84d98fec Security::CssmClient::ObjectImpl::~ObjectImpl() + 54
    14  com.apple.security       
    0x00007fff84dd1083 Security::CssmClient::SSDbImpl::~SSDbImpl() + 25
    15  com.apple.security       
    0x00007fff84d7fdf8 Security::RefPointer<Security::CssmClient::ObjectImpl>::release() + 72
    16  com.apple.security       
    0x00007fff84ee7937 Security::KeychainCore::KeychainImpl::~KeychainImpl() + 239
    17  com.apple.security       
    0x00007fff84dd0f12 Security::KeychainCore::KeychainImpl::~KeychainImpl() + 18
    18  com.apple.security       
    0x00007fff84d7fefa Security::CFClass::refCountForType(long, void const*) + 190
    19  com.apple.CoreFoundation 
    0x00007fff8715e324 CFRelease + 324
    20  com.apple.security       
    0x00007fff84d9fa2f std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >::~vector() + 33
    21  com.apple.security       
    0x00007fff84ee14b2 Security::KeychainCore::Trust::~Trust() + 48
    22  com.apple.security       
    0x00007fff84dd0a66 Security::KeychainCore::Trust::~Trust() + 18
    23  com.apple.security       
    0x00007fff84d7fefa Security::CFClass::refCountForType(long, void const*) + 190
    24  com.apple.CoreFoundation 
    0x00007fff8715e324 CFRelease + 324
    25  com.apple.CFNetwork      
    0x00007fff89db67e2 HTTPProtocol::~HTTPProtocol() + 508
    26  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    27  com.apple.CoreFoundation 
    0x00007fff8716283a __CFBasicHashDrain + 442
    28  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    29  com.apple.CFNetwork      
    0x00007fff89d88d03 SocketStream::~SocketStream() + 477
    30  com.apple.CFNetwork      
    0x00007fff89d88b14 SocketStream::~SocketStream() + 24
    31  com.apple.CoreFoundation 
    0x00007fff8715e3df CFRelease + 511
    32  libdispatch.dylib        
    0x00007fff8a2cef01 _dispatch_call_block_and_release + 15
    33  libdispatch.dylib        
    0x00007fff8a2cb0b6 _dispatch_client_callout + 8
    34  libdispatch.dylib        
    0x00007fff8a2cc47f _dispatch_queue_drain + 235
    35  libdispatch.dylib        
    0x00007fff8a2cc2f1 _dispatch_queue_invoke + 52
    36  libdispatch.dylib        
    0x00007fff8a2cc1c3 _dispatch_worker_thread2 + 249
    37  libsystem_c.dylib        
    0x00007fff880c2cdb _pthread_wqthread + 404
    38  libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff8825c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8825bc42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x00007fff87185233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x00007fff8718a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x00007fff8718a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation     
    0x00007fff8d8927ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.CalendarStore  
    0x00007fff8d2d912a -[CalSingleSynchronousTask executeTask:usingTaskManager:] + 175
    7   com.apple.CalendarStore  
    0x00007fff8d2d937b -[CalPropFindSynchronousTask executePropFindTask:usingTaskManager:] + 32
    8   com.apple.CalendarStore  
    0x00007fff8d2da44f __113-[CalDAVAccountRefreshQueueableOperation(Private) rectifyPrincipalPathForPrincipal:inManagedObjectContext:error:]_block_invoke_0 + 230
    9   com.apple.CalendarStore  
    0x00007fff8d2da017 -[CalDAVAccountRefreshQueueableOperation(Private) rectifyPrincipalPathForPrincipal:inManagedObjectContext:error:] + 788
    10  com.apple.CalendarStore  
    0x00007fff8d1bc2bf -[CalDAVAccountRefreshQueueableOperation(Private) refresh] + 1061
    11  com.apple.CalendarStore  
    0x00007fff8d1bbd2b -[CalDAVAccountRefreshQueueableOperation refreshWithExceptionHandling] + 108
    12  com.apple.Foundation     
    0x00007fff8d88d562 __NSThread__main__ + 1345
    13  libsystem_c.dylib        
    0x00007fff880c0772 _pthread_start + 327
    14  libsystem_c.dylib        
    0x00007fff880ad1a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff8825e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff880c2f1c _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x00007fff880c2ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x00007fff880ad191 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x5000000000000000  rbx: 0x00007ffeec357d00  rcx: 0x0000000000018b00  rdx: 0x0000000000002060
      rdi: 0x00007ffeec32ce20  rsi: 0x00007ffeec32ce10  rbp: 0x000000010bf5b570  rsp: 0x000000010bf5b560
       r8: 0x00007ffeec35fda8   r9: 0x000000000ddee39d  r10: 0x00007ffeec3119c0  r11: 0x00000000e1adcb20
      r12: 0x00007ffeec35fd30  r13: 0x00007ffeec35fc60  r14: 0x00007ffeec32ce20  r15: 0x0000000000000000
      rip: 0x00007fff84d7fdc5  rfl: 0x0000000000010206  cr2: 0x000000010c95b000
    Logical CPU: 0
    Binary Images:
    0x10bc8b000 -   
    0x10bc8bfff  CalendarAgent (1.0 - 57) <D7916728-291A-3B77-B1A8-53FD7017C4A0> /System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarA gent
    0x10bc97000 -   
    0x10bcadff7  com.apple.CalendarAgent (1.0 - 57) <762A246C-65FC-339D-A0F2-8ED9C907A9C2> /System/Library/PrivateFrameworks/CalendarAgent.framework/Versions/A/CalendarAg ent
    0x10c043000 -   
    0x10c046ff7  com.apple.yahoo.iaplugin (2.1 - 210) <A76EFC19-AD8D-3F24-8801-1A5FCA471232> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
    0x10c04e000 -   
    0x10c052ff7  com.apple.google.iaplugin (2.1 - 210) <5CE22781-4FE8-37D6-8BDF-0048331595CA> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
    0x10c05e000 -   
    0x10c05ffff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1170) <F902B042-3BD2-3FD5-98E5-8F0563D687D1> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x10da17000 -   
    0x10da1afff  com.apple.DirectoryServicesSource (2.1 - 1170) <F0560AC5-BBF4-3AB2-88CF-466B45F79341> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x10da21000 -   
    0x10da74fff  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <14C01B09-7E73-30C2-9882-AF4223A1A4F0> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x10daa0000 -   
    0x10dab1ff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <D2C056B1-CE25-32B2-9FDA-33569F512A48> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x7fff6b88b000 -
    0x7fff6b8bf93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    0x7fff82f90000 -
    0x7fff83247ff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff83260000 -
    0x7fff832dfff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff832f7000 -
    0x7fff833d1fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff833d2000 -
    0x7fff83439fff  com.apple.coredav (1.0.1 - 179.7) <EEFBD7EA-82F4-32AB-8D2B-541D74FB764A> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x7fff8343a000 -
    0x7fff8345bfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff83587000 -
    0x7fff835ceff7  com.apple.CalDAV (6.0 - 112.6) <BEE75B4F-A36E-3753-BDAF-1F766849960B> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x7fff845e0000 -
    0x7fff845e0fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff845e1000 -
    0x7fff845f8fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff845f9000 -
    0x7fff84600fff  com.apple.phonenumbers (1.1 - 47) <0EB01ED6-F8DD-3A72-89C6-BA3E7AD805C8> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff84601000 -
    0x7fff84882fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x7fff84883000 -
    0x7fff848ddfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff848de000 -
    0x7fff84a8cfff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff84a8d000 -
    0x7fff84d3cfff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff84d3d000 -
    0x7fff84d45fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x7fff84d46000 -
    0x7fff84d6ffff  libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
    0x7fff84d70000 -
    0x7fff84d7cff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <4F3284A9-EFD4-3A77-8B7F-D3D611D656A0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff84d7d000 -
    0x7fff8504eff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8504f000 -
    0x7fff85088ff7  libssl.0.9.8.dylib (47.2) <46DF85DC-18FB-3108-91F6-52AE3EBF2347> /usr/lib/libssl.0.9.8.dylib
    0x7fff85089000 -
    0x7fff850e6fff  com.apple.ExchangeWebServices (3.0.1 - 158) <6E3D5786-394F-3400-8331-425F8E45CF12> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x7fff850e7000 -
    0x7fff851e4fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x7fff851e5000 -
    0x7fff85219fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff85275000 -
    0x7fff852cfff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff852d0000 -
    0x7fff852d1fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff85317000 -
    0x7fff85325ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
    0x7fff856df000 -
    0x7fff856eafff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff856eb000 -
    0x7fff856ebfff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff856ec000 -
    0x7fff856f3fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x7fff856f4000 -
    0x7fff8580dfff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8585b000 -
    0x7fff858c8ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff858c9000 -
    0x7fff858e3fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff858eb000 -
    0x7fff858f7fff  libCSync.A.dylib (333.1) <319D3E83-8086-3990-8773-872F2E7C6EB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff858f8000 -
    0x7fff85978ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff85979000 -
    0x7fff859afff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
    0x7fff859b0000 -
    0x7fff85a0cfff  com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff85a0d000 -
    0x7fff85c0dfff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
    0x7fff85c3c000 -
    0x7fff85c44fff  com.apple.AppSandbox (2.1 - 1) <79F5851B-C5B4-3D6F-8F99-AAF20F3DE9C2> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff85c76000 -
    0x7fff85c7cfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff85efb000 -
    0x7fff85efcff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
    0x7fff85efd000 -
    0x7fff85f10ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff85f11000 -
    0x7fff85f74fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff85f75000 -
    0x7fff85f87ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x7fff85f88000 -
    0x7fff85ff7fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <5CF63349-06EE-379D-9B75-3B73E475F0FD> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x7fff8604c000 -
    0x7fff8614efff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff86160000 -
    0x7fff8616bff7  com.apple.ProtocolBuffer (2 - 104) <5BA49EB9-1361-3BFF-856C-C5F1D0486072> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff86197000 -
    0x7fff8623dff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8623e000 -
    0x7fff8665bfff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x7fff8665c000 -
    0x7fff8665dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
    0x7fff8665e000 -
    0x7fff8675cfff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8675d000 -
    0x7fff86762fff  com.apple.OpenDirectory (10.8 - 151.10) <1F47EC96-7403-3690-8D8D-C31D3B6FDA0A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff86763000 -
    0x7fff86785ff7  com.apple.Kerberos (2.0 - 1) <416543F5-E7AF-3269-843F-C8CDA8DD0FFA> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff86797000 -
    0x7fff867a8ff7  com.apple.CalendarFoundation (1.0 - 29) <FA5851BE-B592-3E9A-B5A6-7B40BE5A0991> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x7fff867a9000 -
    0x7fff867faff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff867fb000 -
    0x7fff86802fff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff86803000 -
    0x7fff86a5eff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff86a5f000 -
    0x7fff86a6aff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff86a86000 -
    0x7fff86ab2fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <CCF2C41D-93D0-3547-A2B1-D6A69932CADF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff86aec000 -
    0x7fff86aecfff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff86aed000 -
    0x7fff86af3fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x7fff86b3e000 -
    0x7fff86b6cfff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff86b6d000 -
    0x7fff86b8eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
    0x7fff86c0a000 -
    0x7fff87046fff  com.apple.VideoToolbox (1.0 - 926.106) <B1185D9D-02AC-3D27-B894-21B1179F2AEF> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff87047000 -
    0x7fff87048ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff87049000 -
    0x7fff8704bfff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff87054000 -
    0x7fff87082ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
    0x7fff87083000 -
    0x7fff87134fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff87135000 -
    0x7fff87154ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x7fff87155000 -
    0x7fff8733fff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff87340000 -
    0x7fff87657ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff87b60000 -
    0x7fff87bb7ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff87bb8000 -
    0x7fff87bbbfff  com.apple.help (1.3.2 - 42) <418A9A41-BCB4-32A2-97ED-3A388F69CA9D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff87bbc000 -
    0x7fff87bc7fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x7fff87bc8000 -
    0x7fff87ef8fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff880ab000 -
    0x7fff880abffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff880ac000 -
    0x7fff88178ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
    0x7fff8818d000 -
    0x7fff8818efff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x7fff8818f000 -
    0x7fff881c9ff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff881ca000 -
    0x7fff88219fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8821a000 -
    0x7fff88228fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
    0x7fff88229000 -
    0x7fff8822bff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
    0x7fff8822c000 -
    0x7fff8824bff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8824c000 -
    0x7fff88267ff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff88268000 -
    0x7fff88275fff  com.apple.AppleFSCompression (49 - 1.0) <E616053D-D3C2-3600-B8DF-A5E0D9665634> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff88276000 -
    0x7fff88283ff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff88284000 -
    0x7fff88285ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
    0x7fff88286000 -
    0x7fff88289fff  com.apple.AppleSystemInfo (2.0 - 2) <C9D7F3A6-F926-39F3-8F55-A3A137DDAE50> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff882f0000 -
    0x7fff8835eff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8835f000 -
    0x7fff88361fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff88362000 -
    0x7fff8838cff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8838d000 -
    0x7fff883b4fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff883b5000 -
    0x7fff883f9fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
    0x7fff883fa000 -
    0x7fff88553ff7  com.apple.syncservices (7.1 - 713.1) <1B20AF09-C1E5-3B70-A57F-177A4D92E403> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff88554000 -
    0x7fff885c4fff  com.apple.ISSupport (1.9.8 - 56) <19436666-D781-3C6A-B091-85BE7316E4B2> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff885c7000 -
    0x7fff8862ffff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff88e16000 -
    0x7fff88ee8ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff88f12000 -
    0x7fff88f5cff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff88f5d000 -
    0x7fff88fa0ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff88fa1000 -
    0x7fff88fb8fff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff88fb9000 -
    0x7fff88fb9fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff88fba000 -
    0x7fff8903cff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff891e6000 -
    0x7fff891eafff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
    0x7fff891ed000 -
    0x7fff89200ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x7fff892a1000 -
    0x7fff892f0ff7  libFontRegistry.dylib (100) <F7EC0287-58E4-3ABE-A45E-B105A68EA76E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff89446000 -
    0x7fff89448fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff89449000 -
    0x7fff8944dfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8944e000 -
    0x7fff89469ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff8946a000 -
    0x7fff8946afff  com.apple.AOSMigrate (1.0 - 1) <9E7A92DC-649D-3908-BB36-B7F445261F14> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x7fff8946b000 -
    0x7fff8947aff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
    0x7fff8947b000 -
    0x7fff894c6fff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff894c7000 -
    0x7fff894c7fff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff894c8000 -
    0x7fff89514fff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff89515000 -
    0x7fff89518fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff89519000 -
    0x7fff89521fff  com.apple.AOSNotification (1.7.0 - 636.5) <15EFB097-C811-3F4A-9085-1FBC3EBFA457> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x7fff89522000 -
    0x7fff89a92ff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff89a93000 -
    0x7fff89c2efef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff89c99000 -
    0x7fff89ce5ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
    0x7fff89ce6000 -
    0x7fff89ce8ff7  com.apple.print.framework.Print (8.0 - 258) <8F243E49-021F-3892-B555-3010A7F450A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff89cf6000 -
    0x7fff89d18ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
    0x7fff89d19000 -
    0x7fff89e8eff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff89e9a000 -
    0x7fff89e9afff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x7fff89e9b000 -
    0x7fff89ea4ff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8a0ee000 -
    0x7fff8a0f2fff  com.apple.SecCodeWrapper (2.1 - 1) <D25DD827-7F03-35AA-AD37-8E8D49AAD765> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff8a12c000 -
    0x7fff8a137fff  com.apple.CalendarAgentLink (1.0 - 38) <975BA2F1-5EA9-3173-831A-75143B45B262> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x7fff8a138000 -
    0x7fff8a177ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8a178000 -
    0x7fff8a178fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8a179000 -
    0x7fff8a1caff7  com.apple.iCalendar (6.0 - 126.5) <3C743E01-70DB-341C-89EC-13B5EA70EEE2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff8a219000 -
    0x7fff8a278fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8a279000 -
    0x7fff8a2c8ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/

  • JNI Hotspot Error: Access Violation, need help interpreting the log.

    Hello. I'm a relatively new developer (previously an engineer), and so to start me off I was given the task of providing a JNI-enabled interface to some legacy licensing software (it's C++, we want Java). Now the functionality of JNI is not the problem I have. I HAD those types of problems but now I'm having a far more obscure problem that is absolutely stumping me.
    It's a Hotspot error that I cannot get rid off... and I cannot find a clear bit of info on how to interpret them.
    About the problem...first off this does not happen on my development machine, where it is isolated from other components in the end-product. The integration machine with the rest of the software runs fine with a "Dummy" version of my component, but we get errors when the real version is in use. I'd really appreciate any help in understanding these things, even if it is just some general pointers.
    First off here is the log
    # An unexpected error has been detected by HotSpot Virtual Machine:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c82caa4, pid=5516, tid=4420
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_14-b03 mixed mode)
    # Problematic frame:
    # C  [ntdll.dll+0x2caa4]
    ---------------  T H R E A D  ---------------
    Current thread (0x0aa1eaa0):  JavaThread "btpool0-5" [_thread_in_native, id=4420]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000004
    Registers:
    EAX=0x0b1a9a40, EBX=0x00030000, ECX=0x00001448, EDX=0x00000000
    ESP=0x0c90e774, EBP=0x0c90e780, ESI=0x0b1a9a38, EDI=0x0b1aa000
    EIP=0x7c82caa4, EFLAGS=0x00010246
    Top of Stack: (sp=0x0c90e774)
    0x0c90e774:   00030000 00000003 00030005 0c90e7b8
    0x0c90e784:   7c833a2a 0b1a9a4c 0b1aa000 0c90e7ac
    0x0c90e794:   00000000 00000477 00030178 00030000
    0x0c90e7a4:   0ab2de05 0003015c 00000600 0afd0000
    0x0c90e7b4:   00030178 0c90e9e4 7c82b5fb 04030000
    0x0c90e7c4:   000023b8 000023ac 00000000 7c829fd6
    0x0c90e7d4:   7c82a124 00031138 0c90ea04 7c82a0b8
    0x0c90e7e4:   7c82a0fc 000001ba 00000000 7c829fd6
    Instructions: (pc=0x7c82caa4)
    0x7c82ca94:   63 02 00 8b 4e 0c 8d 46 08 8b 10 89 4d 08 8b 09
    0x7c82caa4:   3b 4a 04 89 55 0c 0f 85 ae 4f 01 00 3b c8 0f 85
    Stack: [0x0c8d0000,0x0c910000),  sp=0x0c90e774,  free space=249k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [ntdll.dll+0x2caa4]
    C  [ntdll.dll+0x33a2a]
    C  [ntdll.dll+0x2b5fb]
    C  [MSVCRT.dll+0x1d08c]
    C  [verify.dll+0x4897]
    C  [verify.dll+0x19c6]
    C  [verify.dll+0x126b]
    C  [java.dll+0x3fb7]
    V  [jvm.dll+0x11d86a]
    V  [jvm.dll+0x78acb]
    V  [jvm.dll+0x78deb]
    V  [jvm.dll+0x78aaa]
    V  [jvm.dll+0xcb029]
    V  [jvm.dll+0xcbcc6]
    V  [jvm.dll+0xcbbac]
    V  [jvm.dll+0x82c7b]
    j  com.a.b.c.lmv.Factoralproducer.MeanManagerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;
    Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;Ljava/lang/Boolean;
    Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lcom/a/b/c/lmv/Factoralproducer/MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;
    Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+231
    j  com.a.b.c.lmv.Factoralproducer.FactoralProducerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;
    Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/
    wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv
    /Factoralproducer/MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+20
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x875dd]
    V  [jvm.dll+0xdfd96]
    V  [jvm.dll+0x874ae]
    V  [jvm.dll+0xf3f82]
    V  [jvm.dll+0xa5752]
    C  [java.dll+0x6d4f]
    j  sun.reflect.NativeMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    J  sun.reflect.DelegatingMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+57
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;
    Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+26
    j  org.apache.cxf.jaxws.JAXWSMethodInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object
    ;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+179
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;)
    Ljava/lang/Object;+114
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run()V+26
    j  org.apache.cxf.workqueue.SynchronousExecutor.execute(Ljava/lang/Runnable;)V+1
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(Lorg/apache/cxf/message/Message;)V+94
    j  org.apache.cxf.phase.PhaseInterceptorChain.dcntercept(Lorg/apache/cxf/message/Message;)Z+76
    j  org.apache.cxf.transport.ChainInitiationObserver.onMessage(Lorg/apache/cxf/message/Message;)V+137
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.serviceRequest(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+334
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+341
    j  org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+47
    j  org.mortbay.jetty.handler.ContextHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+700
    j  org.mortbay.jetty.handler.ContextHandlerCollection.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+272
    j  org.mortbay.jetty.handler.HandlerWrapper.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+23
    j  org.mortbay.jetty.Server.handle(Lorg/mortbay/jetty/HttpConnection;)V+110
    j  org.mortbay.jetty.HttpConnection.handleRequest()V+131
    J  org.mortbay.jetty.HttpParser.parseNext()J
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.mortbay.jetty.HttpParser.parseAvailable()J+1
    j  org.mortbay.jetty.HttpConnection.handle()V+122
    j  org.mortbay.jetty.bio.SocketConnector$Connection.run()V+130
    j  org.mortbay.jetty.security.SslSocketConnector$SslConnection.run()V+51
    j  org.mortbay.thread.BoundedThreadPool$PoolThread.run()V+45
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x875dd]
    V  [jvm.dll+0xdfd96]
    V  [jvm.dll+0x874ae]
    V  [jvm.dll+0x8720b]
    V  [jvm.dll+0xa2089]
    V  [jvm.dll+0x1112e8]
    V  [jvm.dll+0x1112b6]
    C  [MSVCRT.dll+0x2b530]
    C  [kernel32.dll+0x24829]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.a.b.c.lmv.Factoralproducer.MeanManagerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;
    Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv/Factoralproducer/MeanPolicyType;
    Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+231
    j  com.a.b.c.lmv.Factoralproducer.FactoralProducerImpl.subscribe
    (Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;Lcom/a/b/c/lmv/baseFactoral/TopicExpressionType;
    Ljava/lang/Boolean;Lorg/oasis_open/docs/wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;
    Lorg/oasis_open/docs/
    wsrf/_2004/_06/wsrf_ws_resourceproperties_1_2_draft_01/QueryExpressionType;Lcom/a/b/c/lmv/Factoralproducer
    /MeanPolicyType;Ljavax/xml/datatype/XMLGregorianCalendar;Lcom/a/b/c/lmv/types/ppoToken;)
    Lorg/xmlbp/schemas/ws/_2003/_03/addressing/EndpcntReferenceType;+20
    v  ~StubRoutines::call_stub
    j  sun.reflect.NativeMethodAccepporImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)
    Ljava/lang/Object;+0
    j  sun.reflect.NativeMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
    J  sun.reflect.DelegatingMethodAccepporImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    J  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.apache.cxf.service.invoker.AbstractInvoker.performInvocation(Lorg/apache/cxf/message/
    Exchange;Ljava/lang/Object;Ljava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;+57
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+26
    j  org.apache.cxf.jaxws.JAXWSMethodInvoker.invoke(Lorg/apache/cxf/message/Exchange;
    Ljava/lang/Object;Ljava/lang/reflect/Method;Ljava/util/List;)Ljava/lang/Object;+179
    j  org.apache.cxf.service.invoker.AbstractInvoker.invoke(Lorg/apache/cxf/message/Exchange;Ljava/lang/Object;)
    Ljava/lang/Object;+114
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor$1.run()V+26
    j  org.apache.cxf.workqueue.SynchronousExecutor.execute(Ljava/lang/Runnable;)V+1
    j  org.apache.cxf.interceptor.ServiceInvokerInterceptor.handleMessage(Lorg/apache/cxf/message/Message;)V+94
    j  org.apache.cxf.phase.PhaseInterceptorChain.dcntercept(Lorg/apache/cxf/message/Message;)Z+76
    j  org.apache.cxf.transport.ChainInitiationObserver.onMessage(Lorg/apache/cxf/message/Message;)V+137
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.serviceRequest(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+334
    j  org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;)V+341
    j  org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+47
    j  org.mortbay.jetty.handler.ContextHandler.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+700
    j  org.mortbay.jetty.handler.ContextHandlerCollection.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+272
    j  org.mortbay.jetty.handler.HandlerWrapper.handle(Ljava/lang/String;Ljavax/servlet/http/HttpServletRequest;
    Ljavax/servlet/http/HttpServletResponse;I)V+23
    j  org.mortbay.jetty.Server.handle(Lorg/mortbay/jetty/HttpConnection;)V+110
    j  org.mortbay.jetty.HttpConnection.handleRequest()V+131
    J  org.mortbay.jetty.HttpParser.parseNext()J
    v  ~RuntimeStub::alignment_frame_return Runtime1 stub
    j  org.mortbay.jetty.HttpParser.parseAvailable()J+1
    j  org.mortbay.jetty.HttpConnection.handle()V+122
    j  org.mortbay.jetty.bio.SocketConnector$Connection.run()V+130
    j  org.mortbay.jetty.security.SslSocketConnector$SslConnection.run()V+51
    j  org.mortbay.thread.BoundedThreadPool$PoolThread.run()V+45
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x0aa2d9f8 JavaThread "RMI RenewClean-[47.166.94.29:3617]" daemon [_thread_in_native, id=4792]
    =>0x0aa1eaa0 JavaThread "btpool0-5" [_thread_in_native, id=4420]
      0x0aa1c450 JavaThread "btpool0-4" [_thread_in_native, id=4600]
      0x0aa574d0 JavaThread "btpool0-3" [_thread_in_native, id=3456]
      0x0aa61c60 JavaThread "RMI ConnectionExpiration-[localhost:8099]" daemon [_thread_blocked, id=5060]
      0x0aa44988 JavaThread "btpool0-2" [_thread_in_native, id=3956]
      0x0aa2f270 JavaThread "RMI LeaseChecker" daemon [_thread_blocked, id=4640]
      0x0aa2e668 JavaThread "RMI TCP Connection(1)-47.166.94.29" daemon [_thread_in_native, id=1600]
      0x0aa40d48 JavaThread "RMI Reaper" [_thread_blocked, id=4696]
      0x0b20ae68 JavaThread "Timer-0" daemon [_thread_blocked, id=4688]
      0x0aa294f8 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=4884]
      0x0aa29680 JavaThread "RMI ConnectionExpiration-[47.166.94.29:4375]" daemon [_thread_blocked, id=4860]
      0x0abfe318 JavaThread "btpool0-1" [_thread_in_native, id=716]
      0x0ac2b1f0 JavaThread "GC Daemon" daemon [_thread_blocked, id=3588]
      0x0ac26730 JavaThread "RMI RenewClean-[47.166.94.29:4375]" daemon [_thread_blocked, id=1820]
      0x0ab92d70 JavaThread "btpool1-0 - Acceptor0 [email protected]:9082" [_thread_in_native, id=3168]
      0x0b162be0 JavaThread "btpool0-0 - Acceptor0 [email protected]:9080" [_thread_in_native, id=5856]
      0x0b0e7a18 JavaThread "RMManager-Timer-12388840" daemon [_thread_blocked, id=4328]
      0x00035088 JavaThread "DestroyJavaVM" [_thread_blocked, id=4780]
      0x0afc6460 JavaThread "Thread-1" [_thread_blocked, id=440]
      0x0afd6768 JavaThread "Thread-0" daemon [_thread_blocked, id=4840]
      0x00814cc8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3076]
      0x00813950 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3248]
      0x00812cc8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5140]
      0x00809bf8 JavaThread "Finalizer" daemon [_thread_blocked, id=3704]
      0x00808780 JavaThread "Reference Handler" daemon [_thread_blocked, id=5196]
    Other Threads:
      0x00804530 VMThread [id=736]
      0x00816058 WatcherThread [id=4436]
    VM state:not at safepcnt (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 1984K, used 1897K [0x02850000, 0x02a70000, 0x02d30000)
    *eden space 1792K,  95% used [0x02850000, 0x029fa418, 0x02a10000)*
    * from space 192K, 100% used [0x02a40000, 0x02a70000, 0x02a70000)*
      to   space 192K,   0% used [0x02a10000, 0x02a10000, 0x02a40000)
    tenured generation   total 25896K, used 18178K [0x02d30000, 0x0467a000, 0x06850000)
       the space 25896K,  70% used [0x02d30000, 0x03ef0b60, 0x03ef0c00, 0x0467a000)
    compacting perm gen  total 22784K, used 22721K [0x06850000, 0x07e90000, 0x0a850000)
      * the space 22784K,  99% used [0x06850000, 0x07e806c8, 0x07e80800, 0x07e90000)*
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      D:\apps\Java\jre1.5.0_14\bin\java.exe
    0x7c800000 - 0x7c8c0000      C:\WINDOWS\system32\ntdll.dll
    0x77e40000 - 0x77f42000      C:\WINDOWS\system32\kernel32.dll
    0x77f50000 - 0x77feb000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000 - 0x77cef000      C:\WINDOWS\system32\RPCRT4.dll
    0x76f50000 - 0x76f63000      C:\WINDOWS\system32\Secur32.dll
    0x77ba0000 - 0x77bfa000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d640000 - 0x6d7de000      D:\apps\Java\jre1.5.0_14\bin\client\jvm.dll
    0x77380000 - 0x77411000      C:\WINDOWS\system32\USER32.dll
    0x77c00000 - 0x77c48000      C:\WINDOWS\system32\GDI32.dll
    0x76aa0000 - 0x76acd000      C:\WINDOWS\system32\WINMM.dll
    0x71bc0000 - 0x71bc8000      C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000 - 0x77201000      C:\WINDOWS\system32\WINSTA.dll
    0x71c40000 - 0x71c97000      C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000 - 0x76b7b000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d290000 - 0x6d298000      D:\apps\Java\jre1.5.0_14\bin\hpi.dll
    0x6d610000 - 0x6d61c000      D:\apps\Java\jre1.5.0_14\bin\verify.dll
    0x6d310000 - 0x6d32d000      D:\apps\Java\jre1.5.0_14\bin\java.dll
    0x6d630000 - 0x6d63f000      D:\apps\Java\jre1.5.0_14\bin\zip.dll
    0x68000000 - 0x68035000      C:\WINDOWS\system32\rsaenh.dll
    0x7c8d0000 - 0x7d0cf000      C:\WINDOWS\system32\SHELL32.dll
    0x77da0000 - 0x77df2000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77420000 - 0x77523000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls
                                           _6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll
    0x6d4d0000 - 0x6d4e3000      D:\apps\Java\jre1.5.0_14\bin\net.dll
    0x71c00000 - 0x71c17000      C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000 - 0x71bf8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71b20000 - 0x71b61000      C:\WINDOWS\System32\mswsock.dll
    0x76ed0000 - 0x76efa000      C:\WINDOWS\system32\DNSAPI.dll
    0x76f70000 - 0x76f77000      C:\WINDOWS\System32\winrnr.dll
    0x76f10000 - 0x76f3e000      C:\WINDOWS\system32\WLDAP32.dll
    0x76f80000 - 0x76f85000      C:\WINDOWS\system32\rasadhlp.dll
    0x5f270000 - 0x5f2ca000      C:\WINDOWS\system32\hnetcfg.dll
    0x71ae0000 - 0x71ae8000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d4f0000 - 0x6d4f9000      D:\apps\Java\jre1.5.0_14\bin\nio.dll
    0x6d5f0000 - 0x6d5f6000      D:\apps\Java\jre1.5.0_14\bin\rmi.dll
    0x10000000 - 0x10006000      C:\Program Files\a\lmv\punix.dll
    0x71f50000 - 0x71f58000      C:\WINDOWS\system32\snmpapi.dll
    0x0bb90000 - 0x0bb98000      C:\Program Files\a\lmv\periwin.dll
    0x0bba0000 - 0x0bbab000      C:\Program Files\a\lmv\vas.dll
    0x0bbb0000 - 0x0bbd0000      C:\Program Files\a\lmv\nilm.dll
    0x48890000 - 0x488cd000      C:\WINDOWS\system32\ODBC32.dll
    0x77530000 - 0x775c7000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls
                                            _6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll
    0x762b0000 - 0x762f9000      C:\WINDOWS\system32\comdlg32.dll
    0x76cf0000 - 0x76d0a000      C:\WINDOWS\system32\iphlpapi.dll
    0x7f010000 - 0x7f134000      C:\WINDOWS\system32\MFC42u.DLL
    0x77670000 - 0x777a9000      C:\WINDOWS\system32\ole32.dll
    0x77d00000 - 0x77d8b000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77210000 - 0x772bb000      C:\WINDOWS\system32\WININET.dll
    0x761b0000 - 0x76243000      C:\WINDOWS\system32\CRYPT32.dll
    0x76190000 - 0x761a2000      C:\WINDOWS\system32\MSASN1.dll
    0x71bb0000 - 0x71bb9000      C:\WINDOWS\system32\WSOCK32.dll
    0x0bda0000 - 0x0bdb7000      C:\WINDOWS\system32\odbcint.dll
    0x0bf20000 - 0x0bf61000      C:\Program Files\a\lmv\JniLib.dll
    0x76cd0000 - 0x76ce9000      C:\WINDOWS\system32\MPRAPI.dll
    0x76df0000 - 0x76e24000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76dc0000 - 0x76de8000      C:\WINDOWS\system32\adsldpc.dll
    0x76b80000 - 0x76bae000      C:\WINDOWS\system32\credui.dll
    0x76a80000 - 0x76a98000      C:\WINDOWS\system32\ATL.DLL
    0x76e30000 - 0x76e3c000      C:\WINDOWS\system32\rtutils.dll
    0x7e020000 - 0x7e02f000      C:\WINDOWS\system32\SAMLIB.dll
    0x770e0000 - 0x771e8000      C:\WINDOWS\system32\SETUPAPI.dll
    0x77840000 - 0x77882000      C:\WINDOWS\system32\netman.dll
    0x76300000 - 0x764c0000      C:\WINDOWS\system32\netshell.dll
    0x74de0000 - 0x74df2000      C:\WINDOWS\system32\CLUSAPI.dll
    0x76e90000 - 0x76ecf000      C:\WINDOWS\system32\RASAPI32.dll
    0x76e40000 - 0x76e52000      C:\WINDOWS\system32\rasman.dll
    0x76e60000 - 0x76e8f000      C:\WINDOWS\system32\TAPI32.dll
    0x7fcf0000 - 0x7fd7e000      C:\WINDOWS\system32\WZCSvc.DLL
    0x76cc0000 - 0x76cc5000      C:\WINDOWS\system32\WMI.dll
    0x76d10000 - 0x76d2f000      C:\WINDOWS\system32\DHCPCSVC.DLL
    0x76f00000 - 0x76f08000      C:\WINDOWS\system32\WTSAPI32.dll
    0x4b180000 - 0x4b284000      C:\WINDOWS\system32\ESENT.dll
    0x730a0000 - 0x730ae000      C:\WINDOWS\system32\WZCSAPI.DLL
    VM Arguments:
    java_command: C:\Program Files\a\lmv\CDF\b_c_lmv.jar C:\Program Files\a\lmv\CDF
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=D:\a\Contact Center\Common Components\Cache\lib
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;
    C:\Program Files\Rational\ClearCase\bin;C:\Program Files\Rational\common;
    C:\a\Cache\CacheSys\Mgr\a\DLL;C:\Program Files\a\lmv\TAPI;C:\Program Files\a\lmv\
    OS=Windows_NT
    PROCEppoR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows Server 2003 family Build 3790 Service Pack 2
    CPU:total 4 (cores per cpu 4, threads per core 1) family 6 model 15 stepping 11, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2097151k(2097151k free), swap 4194303k(3537076k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_14-b03) for windows-x86, built on Oct  5 2007 01:21:52 by "java_re" with MS VC++ 6.0
    {code}
    Sorry it's so long.
    Anyways my dll is Jni_interface.dll. It loads legacy.dll, and its dependents. Other code also uses these libraries.
    *So question 1* :
    I load the jni_interface.dll (and also the legacy.dll and its dependents) library at the start of execution in a static class and so it is never unloaded. I do this because the legacy.dll will be calling functions in my Jni_Interface.dll, which are propagated into the Java class on top of it all. Does this stop other code from loading the legacy.dll or from using its functionality?
    *On to question 2*:
    Here is the logged output from my library, immediately before the crash:
    {code:java}
          ***     JNI INTERFACE LIB - LOG 21 Jul 08 19:11:35.682     *** Log Level = DEBUG
    21 Jul 08 19:11:35.698 - Level[ info ] -          Thread[ 716 ]     :: initRegistry     Registry initialisation ok
    21 Jul 08 19:11:35.760 - Level[ info ] -          Thread[ 716 ]     :: vPersistData     vPersistData() called
    21 Jul 08 19:11:35.823 - Level[ debug ] -     Thread[ 716 ]     :: doVoidCallback() [ persistDataHandler ]       Signature  = (I)V
    21 Jul 08 19:11:35.823 - Level[ debug ] -     Thread[ 716 ]     :: doVoidCallback() [ setMaxUsageHandler ]       Signature  = (I)V
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: Constructor     _instance is instantiated
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: initiateLegacy()     JniManager initialisation successful
    21 Jul 08 19:11:35.838 - Level[ info ] -          Thread[ 716 ]     :: initiateLegacy()     Initial state is NORMAL
    21 Jul 08 19:11:35.838 - Level[ debug ] -     Thread[ 716 ]     :: getLicense()     Get request
    21 Jul 08 19:11:36.010 - Level[ debug ] -     Thread[ 716 ]     :: getLicense()     Get request
    {code}
    Now notice that the current thread in the Hotspot output is NOT the thread in my library. Thread 716 is a java thread by the way. This log appears absolutely fine according to me. Also note that in the hotspot log there is no mention of my java component  (the "boss" class), which is called LegacyLM. So does that mean that is in not to do with my code even though the problem only occurs when my component is included? Or is this just the cryptic nature of these problems?
    *Question 3*:
    If you see the heap section of the report, there are 3 items that I have highlighted that seem like very high values. Is this a possible cause of a crash? Or would I have received an "Out of space" error instead?
    In terms of actual code, I cannot post much, but I can tell you what I have done to try to solve the problem:
    (i) I have added mutex synchronisation to most of my shared variables.
    (ii) I have used monitorEnter and MonitorExit to control callback access to my java class.
    (iii) I have re-organised my code and replaced nearly every occurance of non-string character arrays with string equivalents.
    (iv) I changed how I attach and detach my threads so that I only attach/detach ones that previously were not (i.e. I leave java threads alone)
    As I said at the start, I am utterly confused and I don't have much of an idea about how to proceed. I'd really really appreciate a pointer or two.
    Thanks in advance.
    D
    Edited by: Diom1982 on Jul 21, 2008 12:35 PM
    Edited by: Diom1982 on Jul 21, 2008 12:40 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                

    For those of you who might be interested, I found a solution to this problem (my version, at least). In my situation, this was caused by attempting to access the fields of a ActionEvent object in VC++ by casting a variant to a BSTR. While the cast "worked", it somehow caused the state of the Java plugin or the AxBridge DLL to get flummoxed, causing the VM dump far downstream.
    The takehome message?
    When seeing problems like this in the plugin / ActiveX bridge, do not assume that the causative error is occuring in the location noted in the stack trace. Visual C++, in all of its gory unprotected glory, gives full memory access to the DLL interface and you can do a serious fandango on the VM core. that won't necessarily bite you until later.
    PS -- Sun gurus ... does this present a security violation in the Java paradigm?

  • Help needed to log into an Open Directory account which has the same username as the local account

    Hello,
    I have successfully setup a Mac OS X Lion Server and it is an Open Directory Master. On the server Ihave created an account with the name 'Connor'. I have numerous Macs (allrunning OS X 10.7 Lion) connected to this server but on one of the Macs thereis a local account with the name 'Connor' too (the local and networked accountshave different passwords). I want to log into the Open Directory account onthat mac. So, I have done an authenticated bind to the server, but when I go tolog in the password box shakes. I think the computer thinks I am trying to loginto the local account and not the Open Directory account. On Windows, I canlog into either the local accounts or the networked accounts by typing\LOCAL-COMPUTER-NAME\Connor. So, I was wondering if there was a similar commandto do this on Mac.
    I don't think I haveworded this very well, so if someone doesn't understand please ask me somequestion about the problem and I will try and explain it better.
    Any help would be greatlyappreciated,
    Connor

    Maybe I didn't make myself clear. I have used directory utility to do an authenticated bind to my server. I also have no problem logging into other accounts in the Open Directory. But, I just can't log into the account which has the same name both in the Open Directory and locally.
    Was there something I missed in Directory Utility? Could you please help me if this is so.
    Thanks for replying so quickly

  • HELP WITH ONLINE LOG IN

    Hi  I have recently split with my husband who was the named person on my orange mobile account. We have gone through the process of changing the account and direct debit details over to my name but i am now having trouble logging into my account online and on the app because when i log in it is still brings up my husbands details. I have tried re registering with my new account number but because the mobile number is already registered online this isnt working.  I hope I've explained things properly and i hope you can help. Thanks for your time.  

    This should be simple to fix. Sometimes the link between your Orange account and your online account becomes broken or takes a while to update itself.
    In order to get this resolved, you'll need to speak to Orange customer services and ask them to delete your online account profile.
    Once they've done this, you'll be able to register with your mobile number and this should now display your details.

  • Help to create log message for the failure of procedure

    Hi,
    I want to create a log message ,if my stored procedure stops executing or gets hanged due to some reasons.
    Can any one guide me how can i include this log message in some external file so as each time my stored procedure fails a message will be logged in the file that the procedure has failed or hanged.
    pls help
    regds
    debashis

    I'm afraid I don't understand what you're trying to accomplish here. What is "command is successfully executed" intended to represent in your CREATE statement and in the anonymous PL/SQL block.
    What do you mean "it should occur in row by row order" and "success message of execution should be displayed in the log file"?
    Why are you trying to log to an external file rather than a table in the database? When you start talking about "row by row" and "success message", that starts to imply that you're going to be logging a lot of stuff. Logging a lot of data to an external file is going to be a substantial performance burden. Are you sure that is what you want to accomplish?
    Justin

  • Help!! Log on & off email - Nokia N8

    Hi
    I have successfully opened my Hotmail account on my Nokia N8 and it now shows on one of my homescreens.  However, I don't know how to log in and out of my account so that I choose when to read my emails as they are currently visible at all times which is I not what I want.  I need to be able to log in and out as I am able to do with my Facebook account, so that Hotamil is not always running.  Please help!  Thanks  

    Hello Ashanth,
    Thank you for using Apple Support Communities.
    If you are unable to reset your password password from the website, I would recommend reaching out to our iTunes Account Security team directly with this article:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699?viewlocale=en_US
    Cheers,
    Sterling

  • Help to buield log (pa)intrface in write way

    Hallow
    I doing an inteface to other system that log the pa in the first time and I wont to now if im in the write way?
    If not please give me ideas how to do it in better way.
    regards
    CALL FUNCTION 'HREIC_GET_LOGGED_INFTY_CHANGES'
    EXPORTING
    is_log_key = is_log_key
    IMPORTING
    et_infty_modif = et_infty_modif.
    *Perform check external employee
    *---FM THAT BRING ALL THE DATA WAS CHANGE--
    *---- Split in this loop & Fm to all infotypes----
    SORT et_infty_modif BY pernr bdate btime infty.
    LOOP AT et_infty_modif INTO wa_et_infty_modif.
    ON CHANGE OF wa_et_infty_modif-pernr.
    ASSIGN wa_et_infty_modif-pernr TO <fs_pernr> CASTING.
    ASSIGN wa_et_infty_modif-infty TO <fs_infty> CASTING.
    CALL FUNCTION 'HR_INFOTYPE_LOG_GET_DETAIL'
    EXPORTING
    logged_infotype = wa_et_infty_modif
    auth_check = 'X'
    use_archive = ' '
    TABLES
    infty_tab_before = infty_tab_before
    infty_tab_after = infty_tab_after
    fields = fields.
    *--- Check Action Hire/Fire/Change---
    PERFORM action_type.
    *---Take care on change infotype-----
    IF <fs_action> = '1'.
    PERFORM change_infotype.
    ENDIF.
    *---Take care on hire employee--
    IF <fs_action> = '0'.
    APPEND LINES OF et_infty_modif TO hire_tab.
    DELETE hire_tab WHERE pernr NE <fs_pernr>.
    SORT hire_tab BY infty.
    READ TABLE hire_tab ASSIGNING <wa_hire_tab> WITH KEY infty = '0000'. "subrc = 0 its action
    IF sy-subrc = 0.
    PERFORM action.
    ENDIF.
    ENDIF.
    *---Take care on delete records--
    IF <fs_action> = '8'.
    PERFORM delete_record.
    ENDIF.
    ENDON.
    ENDLOOP.
    FORM action_type .
    IF infty_tab_after[] IS NOT INITIAL AND infty_tab_before[] IS INITIAL. "Create infotype
    ASSIGN '0' TO <fs_action> CASTING.
    ELSEIF infty_tab_before[] IS NOT INITIAL AND infty_tab_after[] IS NOT INITIAL." Update infpotype
    ASSIGN '1' TO <fs_action> CASTING.
    ELSEIF infty_tab_before[] IS NOT INITIAL AND infty_tab_after[] IS INITIAL."Delete infotype
    ASSIGN '8' TO <fs_action> CASTING.
    ENDIF.
    ENDFORM.

    hi all
    Maybe field symbol can help but i dont now how to use it?
    Regards

  • Need help on Error Logging in ODI

    Hi All,
    We have the following requirement to be achieve on the ODI 11g:
    Error Logging: After execution of every package or interface we are supposed to write the data from the E$ error table to a common log table. We need to identify a mechanism to get the E$ tables of each package and read the data from the same table and finally write into a common log table. Please help us out to implement this requirement.
    Note: We can have multiple interfaces in a package and each interfaces error log table should be tracked.
    Any help on this will be appreciated.
    Thanks,
    Pavan Sharma K

    You can try using the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/

Maybe you are looking for