Peer disconnecting immediately after EJB lookup - timing issue?

I'm getting a timing problem with the Oracle EJB server, version
8.1.6.
I've deployed an EJB successfully, so I want to write the client-
side Java code to use it. The code calls the lookup() method on
the InitialContext, and gets back an EJBHome object like this:
Object ejb = new Object();
Hashtable env = new Hashtable();
env.put(Context.URL_PKG_PREFIXES, "oracle.aurora.jndi");
env.put(Context.SECURITY_PRINCIPAL, "username");
env.put(Context.SECURITY_CREDENTIALS, "password");
env.put(Context.SECURITY_AUTHENTICATION,
ServiceCtx.NON_SSL_LOGIN);
Context ic = new InitialContext(env);
ejb = (EJBHome)ic.lookup(serviceURL + objectName); // service
URL is the URL of the server, and objectName is the name of the
EJBRemote.
This works fine. The problem is that if I try to call create()
on the EJB home interface IMMEDIATELY after this block of code
finishes, it peer disconnects. If I wait for a second or two,
there's no problem.
// Bad code?! Have to wait 1-2 seconds before calling this
code, otherwise, we peer disconnect.
MyObjectEJBRemote myEJBremote = ejb.create();
The peer disconnect looks like the following:
org.omg.CORBA.COMM_FAILURE: java.io.IOException: Peer
disconnected socket minor code: 0 completed: No
at com.visigenic.vbroker.orb.TcpConnection.read
(TcpConnection.java, Compiled Code)
at
com.visigenic.vbroker.orb.GiopConnectionImpl.receive_message
(GiopConnectionImpl.java, Compiled Code)
at
com.visigenic.vbroker.orb.GiopConnectionImpl.receive_reply
(GiopConnectionImpl.java, Compiled Code)
at com.visigenic.vbroker.orb.GiopStubDelegate.invoke
(GiopStubDelegate.java, Compiled Code)
at com.visigenic.vbroker.orb.GiopStubDelegate.invoke
(GiopStubDelegate.java, Compiled Code)
at com.inprise.vbroker.CORBA.portable.ObjectImpl._invoke
(ObjectImpl.java, Compiled Code)
at MyObjectEJBRemote.myEJBmethod
(_st_MyObjectEJBRemote.java:1103)
at MyClient.callEJBMethod(MyClient.java, Compiled Code)
at javax.swing.AbstractButton.fireActionPerformed
(Unknown Source)
at
javax.swing.AbstractButton$ForwardActionEvents.actionPerformed
(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed
(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown
Source)
at
javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown
Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent
(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent
(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown
Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForComponent
(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForComponent
(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown
Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Do I have to put a delay in my code in between calling the lookup
() and calling the create()? Is there something simple that I'm
missing? All I know is that if I wait for a just a moment
before I call create(), then the code works fine.
- rjms
NOTE: Please note that my email address is now:
[email protected]. Thanks.

I'm getting a timing problem with the Oracle EJB server, version
8.1.6.
I've deployed an EJB successfully, so I want to write the client-
side Java code to use it. The code calls the lookup() method on
the InitialContext, and gets back an EJBHome object like this:
Object ejb = new Object();
Hashtable env = new Hashtable();
env.put(Context.URL_PKG_PREFIXES, "oracle.aurora.jndi");
env.put(Context.SECURITY_PRINCIPAL, "username");
env.put(Context.SECURITY_CREDENTIALS, "password");
env.put(Context.SECURITY_AUTHENTICATION,
ServiceCtx.NON_SSL_LOGIN);
Context ic = new InitialContext(env);
ejb = (EJBHome)ic.lookup(serviceURL + objectName); // service
URL is the URL of the server, and objectName is the name of the
EJBRemote.
This works fine. The problem is that if I try to call create()
on the EJB home interface IMMEDIATELY after this block of code
finishes, it peer disconnects. If I wait for a second or two,
there's no problem.
// Bad code?! Have to wait 1-2 seconds before calling this
code, otherwise, we peer disconnect.
MyObjectEJBRemote myEJBremote = ejb.create();
The peer disconnect looks like the following:
org.omg.CORBA.COMM_FAILURE: java.io.IOException: Peer
disconnected socket minor code: 0 completed: No
at com.visigenic.vbroker.orb.TcpConnection.read
(TcpConnection.java, Compiled Code)
at
com.visigenic.vbroker.orb.GiopConnectionImpl.receive_message
(GiopConnectionImpl.java, Compiled Code)
at
com.visigenic.vbroker.orb.GiopConnectionImpl.receive_reply
(GiopConnectionImpl.java, Compiled Code)
at com.visigenic.vbroker.orb.GiopStubDelegate.invoke
(GiopStubDelegate.java, Compiled Code)
at com.visigenic.vbroker.orb.GiopStubDelegate.invoke
(GiopStubDelegate.java, Compiled Code)
at com.inprise.vbroker.CORBA.portable.ObjectImpl._invoke
(ObjectImpl.java, Compiled Code)
at MyObjectEJBRemote.myEJBmethod
(_st_MyObjectEJBRemote.java:1103)
at MyClient.callEJBMethod(MyClient.java, Compiled Code)
at javax.swing.AbstractButton.fireActionPerformed
(Unknown Source)
at
javax.swing.AbstractButton$ForwardActionEvents.actionPerformed
(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed
(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown
Source)
at
javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown
Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.LightweightDispatcher.retargetMouseEvent
(Unknown Source)
at java.awt.LightweightDispatcher.processMouseEvent
(Unknown Source)
at java.awt.LightweightDispatcher.dispatchEvent(Unknown
Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Window.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForComponent
(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForComponent
(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown
Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Do I have to put a delay in my code in between calling the lookup
() and calling the create()? Is there something simple that I'm
missing? All I know is that if I wait for a just a moment
before I call create(), then the code works fine.
- rjms
NOTE: Please note that my email address is now:
[email protected]. Thanks.

Similar Messages

  • I am a proud owner of iphone5, iOS6.1.4, recently I am facing prob to connect it with Ford Figo. Its not that iphone is not connecting, its getting disconnecting immediately after connected. I hv tired other ph with car, its working fine, how 2 resolve ?

    I am a proud owner of iphone5, iOS6.1.4, recently I am facing prob to connect it with Ford Figo. Its not that iphone is not connecting, its getting disconnecting immediately after connected. I hv tired other ph with same car, its working fine, how 2 resolve ?

    Morning Indrajit Chatterjee,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iOS: Troubleshooting car stereo connections
    http://support.apple.com/kb/TS3581
    Best of luck,
    Mario

  • Ipod disconnects immediately after being connected to computer

    Every time I plug my iPod into my computer it says "Connecting" then it says "Ejecting" and then "OK to disconnect"! WHY????? It does not show up in the sidebar in iTunes, and it does not show up in My Computer.
    I have plugged it into every USB port on my computer, none of them worked
    I have already updated iTunes.
    I have already put the iPod in disk mode.. that did NOTHING.
    I know it's not a problem with my USB ports, because other devices work JUST FINE in them
    I know it's not an issue with the USB cable because I plugged my iPod into another computer and my iPod did not disconnect right after being connected
    PLEASE help me get my iPod to work on this computer. And I don't want answers telling me to use the other computer. My Library is on THIS computer. Not only that, iTunes doesn't even work on the other computer.

    Reset the Bose device
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • How to close ORMI connections after EJB lookup?

    I am using an InitialContext to look up my EJBs, like this:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "oracle.j2ee.rmi.RMIInitialContextFactory");
    env.put(Context.PROVIDER_URL, "ormi://localhost:23891/current-workspace-app");
    env.put(Context.SECURITY_PRINCIPAL, username);
    env.put(Context.SECURITY_CREDENTIALS, password);
    ic = new InitialContext(env);
    beanHome = (EJBHome)ic.lookup(beanHomeName);
    ic.close();I have been testing this on JDeveloper 10.1.3 and the embedded OC4J.
    This code gave me the problem that the user's credentials were only retireved once while the OC4J instance was alive. So if a user's permissions were changed, they would not be updated for EJB access.
    I then found this document: Excessive ORMI Connections Created, which gave me a clue to use env.put("oracle.j2ee.rmi.loadBalance", "context");
    However, I am concerned with the other part of that release note which states:
    "Closing the context does not cause the connection to be closed. Doing this repeatedly will result in performance degredation."
    Does anyone know how to forcibly close the ORMI connection that is created, or whether it will be released automatically?

    the sample shows how to clear RAS and Enterprise resources after viewing report.
    1. If you use unmanaged RAS - as I can see you using setReportAppServer, then remove the enterprise related stuff : instantiating and cleaning code.
    The sample code is meant to give you an idea on how you can release the resources after done with viewing report. In your case all you need to do for cleaning is call close() on ReportDocumentObject. The sample will need to be modified for your requirements.

  • IPod is automatically disconnecting immediately after initially connecting

    iPod Classic with 160GB memory
    currently has about 105GB loaded
    While it generally seems to be working well to play music etc, when I open iTunes on my computer and then try to connect the iPod to the computer so that I can add new music etc., it first goes through the normal process of synching but, as soon as that process is complete, it immediately starts the ejecting process all by itself. After the iPod indicates that it is has completed the ejecting process and that it is okay to disconnect, however, the iTunes on the computer still shows the iPod as connected and lists all of the songs, etc., but you cannot play any of them.
    This happens on both my home computer and on my office laptop computer this morning. (Both are PC's and both have iTunes set to manually manage my music.)
    Any thoughts or suggestions?

    Hmm. Well, since the problem happens on both computers, the problem more than likely lies with the iPod itself. The iPod's software may have become corrupt in some way and may need to be restore via iTunes. Keep in mind that restoring will erase all the music and files from your iPod so make sure they are backed up on at least one of your computers. However, that is not a guaranteed fix and I don't think you really feel like reloading all 105 GB of music on it.
    Maybe try manually putting the iPod into Disk Mode while connected and see if that helps the iPod stay connected and mounted properly.
    http://support.apple.com/kb/HT1363
    Other than that, I don't know of any other way to handle this situation and am out of ideas or potential solutions. Maybe try completely uninstalling iTunes and then re-installing. (There is a link right that the beginning of the document if you have Vista)
    [Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP|http://support.apple.com/kb/HT1925]
    B-rock

  • Need Help! Ipod disconnects immediately after I connect it.

    When I plug my 80 GB Ipod classic into my Windows PC it will connect and then immediately eject my ipod. I have tried multiple ports and Ipod usb cords and it still has this problem can someone please help me solve this?

    Have you tried to reset the ipod by pressing the menu and select buttons at the same time until the apple logo shows then connecting it?
    You could also try putting it into disk mode first, instructions are in this article http://support.apple.com/kb/TS1372

  • HT5316 I've been working with Mainstage 2.1.3 and have experienced concerts crashing immediately after loading.  I'm not installing Mainstage 2.2.2 to see if that helps alleviate the issue.  My question is: should I uninstall Mainstage 2.1.3 now?

    Hi all,
    I've been working with Mainstage 2.1.3 and have experienced concerts crashing immediately after loading.  In an attempt to solve crash issue, I've installed Mainstage 2.2.2 to see if that helps alleviate the issue.  My question is: should I uninstall Mainstage 2.1.3 now in order to save memory?
    thanks,
    korriefromca

    Hi
    korriefromca wrote:
    My question is: should I uninstall Mainstage 2.1.3 now in order to save memory?
    You would only save about 500MB by deleting MS 2.1.3. You may find it useful to keep the application, or perhaps to make a zip and then delete the original
    CCT

  • My iPad mini adapter shorted...I bought a new one but since it charges very slowly and when charged to 100% it falls to 95% immediately after being unplugged...what might be the issue????

    my iPad mini adapter shorted...I bought a new one but since it charges very slowly and when charged to 100% it falls to 95% immediately after being unplugged...what might be the issue????

    When it does that. Replug the charger and charge to 100%. Now does is stay charged when you unplug the charger.
    You may need to recalibrate your battery.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
     Cheers, Tom

  • My imac turns it self back on almost immediately after putting it to sleep.  Why and how do I fix it?

    This is new as of a few days ago.  I can't find anything in preferences to make it better nor did I change any setting.  Not sure what's going on.  The computer seems to be working fine except for that.

    It's not supposed to do that, so there is no setting for it.  Be sure you have shut down (powered off) the Mac and started it back up, if you have not since this problem occurred. 
    If you are manually putting it to sleep, make sure you are not "bumping" the mouse immediately after giving the Sleep command.  Also, does this happen when the Mac goes to sleep due to timed inactivity?
    Resetting the PRAM may help
    http://support.apple.com/kb/ht1379
    It may also help to reset "power management," which is called PMU, SMU, SMC, and other things depending on Mac model.  The reset procedure depends on iMac model.  If you can post back with the specific iMac model, I can link to the correct procedure.  This is a list of all iMac models
    http://www.everymac.com/systems/apple/imac/index-imac.html
    A faulty USB device can cause this behavior.  You can try disconnecting all USB devices including hubs, except for standard mouse and keyboard (if used).  See if the problem recurs.

  • Why is getLineMetrics inaccurate when using device fonts* or immediately after resizing a TextField?

    1.  We need getLineMetrics to return correct values immediately after changing a TextField's width/height or any property that would affect the layout metrics, withouth having to alter other properties like setting the text to itself (p1.text = p1.text).  Currently, if you change the width of a text field to match the stage width for example, getLineMetrics will not return correct values until the next frame.... UNLESS you set the text property.
    2.  We also need some kind of "stage scaled" event in addition to the "stage resize" event (which only fires when stage scale mode is no_scale), because stage scaling affects the rendered size of device fonts so dramatically that we must call getLineMetrics again.  This is not the case for fonts antialiased for readability, since their size is relatively stable with scaling, as demonstrated by drawing a box around the first line once and then scaling the stage.
    So those are the problems.  The asterisk in the title of this post is there because it seem that TextField.getLineMetrics is accurate with device fonts, but I cannot take advantage of that accuracy without a way to detect when the player is scaled.  I can only confirm its accuracy at a 1:1 scale, since there is no way to recalculate the size of the line rectangle once the player is scaled, aside from setting a timer of some sort which is a real hack not to mention horribly inefficient with no way to detect when the stage has actually be scaled.
    I use device fonts because embedded fonts look terrible and blurred compared to device font rendering.  The "use device font" setting matches the appearance of text in web browsers exactly.  The only way to get embedded/advanced antialiased text in flash to approximate that of the device font look is to primarily set gridFitType to PIXEL instead of SUBPIXEL, and secondly set autokerning to true to fix problems caused by the PIXEL grid fit type.  That ensure strokes are fitted solidly to the nearest pixel, however it still lacks the "ClearType" rendering that device fonts use, which has notable color offset to improve appearance on LCD monitors, rather than the purely grayscale text that flash uses in its subpixel rendering.  Frankly, failure to use device fonts because of API issues, is the only reason why Flash sometimes doesn't look as good as HTML text and why people say text in Flash "looks blurry".  I'm tired of hearing it.  If the player simply dispatched an event when scaled and updated the metrics immediately when any property of the text field that would affect the metrics is changed, then we could all happily use device fonts and Flash text would look great.  As is stands, because of the two problems I mentioned in the opening paragraph, we're stuck dealing with these problems.
    If you create two text fields named "p1" and "p2" for paragraph 1 and 2, populate them with an identical line of text and set one to "use device fonts" and the other to "antialias for readability", then use this code to draw boxes around the first line of text in each of them:
    import flash.text.TextField;import flash.text.TextLineMetrics;graphics.clear();drawBoxAroundLine( p1, 0 );drawBoxAroundLine( p2, 0 );function drawBoxAroundLine( tf:TextField, line_index:int ):void{          var gutter:Number = 2;          var tlm:TextLineMetrics = tf.getLineMetrics( line_index );          graphics.lineStyle( 0, 0x0000ff );          graphics.drawRect( tf.x + gutter, tf.y + gutter, tlm.width, tlm.height );}
    The box surrounding the line of text in the "use device fonts" box is way off at first.  Scaling the player demonstrates that the text width of the device font field fluctuates wildly, while the "antialias for readability" field scales with the originally drawn rectangle perfectly.  That much is fine, but again to clarify the problems I mentioned at the top of this post:
    Since the text width fluctuates wildly upon player resize, assuming that getLineMetrics actually works on device fonts (and that's an assumption at this point), you'd have to detect the player resize and redraw the text.  Unfortunately, Flash does not fire the player resize event unless the stage scale mode is set to NO_SCALE.  That's problem #1.  And if that's by design, then they should definitely add a SCALE event, because changes in player scale dramatically affect device font layout, which requires recalculation of text metrics.  It's a real issue for fluid layouts.
    The second problem is that even when handling the resize event, and for example setting the text field width's to match the Stage.stageWidth property, when the text line wraps, it's not updated until the next frame.  In other words, at the exact resize event that causes a word to wrap, calling getLineMetrics in this handler reports the previous line length before the last word on the line wrapped.  So it's delayed a frame.  The only way to get the correct metrics immediately is basically to set the text property to itself like "p1.text = p1.text".  That seems to force an update of the metrics.  Otherwise, it's delayed, and useles.  I wrote about this in an answer over a year ago, showing how sensitive the text field property order is: http://stackoverflow.com/a/9558597/88409

    As I've noted several times, setting the text property to its own current value should not be necessary to update the metrics, and in some subclasses of text field, setting a property to its own value is ignored as the property is not actually changing and processing such a change would cause unnecessary work which could impact application performance.  Metrics should be current upon calling getLineMetrics.  They are not.  That's the problem.
    From a programming perspective, having to set the text property (really "htmlText" to preserve formatting) to itself to update metrics is almost unmanagable, and doesn't even make sense considering "htmlText" is just one of a dozen properties and methods on a TextField that could invalidate the layout metrics (alignment, setTextFormat, width, height, antiAliasMode, type, etc.), and I would have to override every one of those properties so that I could set htmlText = htmlText.  Using such a subclass isn't even possible if I want to use the Flash IDE to add text fields to the stage.  I would have to iterate over the display list and replace all existing fields with my subclass, which also isn't a good workaround because there's no way to update any and all variable references that may have been made to those instances.
    Frome what I've read, the invalide+render event system is unreliable.  My layout framework is similar to that of Windows Forms, and performs layout immediately, with dozens of docking modes and uses suspend and resume layout calls for efficiently resizing multiple child objects in a component.  Certain calculations cannot be aggregated for a render event, because some containers are semi-reflexive, meaning they can expand to fit the child contents while also contraining the child size, depending on whether the contain was resized or the child component was resized, so as a matter of correctness the resizing calcultation must occur immediately when the child resizes, otherwise a top-down pass on the display hierarchy for resizing will not be sufficient.
    As far as waiting until the next frame, no that is not possible, as it will cause one frame to be completely wrong.  If I was dragging the browser window to resize it, it would look terrible as virtually every single frame during the resizing operation would be incorrect.  Also, in the case where a user clicks the maximize or restore button of the web browser, the resizing event will occur exactly once, so if the metrics are not correct when that occurs, there is no recalculation occuring on the next frame, it will just be wrong and sit there looking wrong indefinitely.
    In case it's not obvious by now, this is a web application.  It uses the NO_SCALE stage scaling option, so notification of the event is not actually an issue for me personally.  I was just pointing out that for anyone not using the NO_SCALE option, there is no event in Flash to detect player scale.  What you're suggesting is using a JavaScript event and using the ExternalInterface bridge to send a message, which there is no guarantee whether it will be processed in a timely matter by the player and introduces possible platform inconsistancies, depending on whether the browser has actually resized the Flash interface at that point or what state Flash is in when it tries to recalculate the size of the text.  The browser may send that event to flash before the player is actually resized, so it will be processing incorrect sizes and then resized after the fact.  That's not a good solution.  Flash needs a scale event in addition to a resize event.  I'm really surprised it doesn't have one.  At the very least, the existing resize event should be dispatched reguardless of the stage scale mode, rather than occuring exclusively in the NO_SCALE mode.
    Bottom line is that getLineMetrics needs to return correct values every time it is called, without having to set the "text" property immediately before calling it.  If such a requirement exists, which seems to be the case, then that needs documented in the getLineMetrics method.

  • ClassCastException when castin to a SessionEJBHome after successful lookup

    Situation
    Two EARs, say X.ear and Y.ear. Both of them deployed in the same OC4J instance (NOT STANDALONE); OAS 10.1.2
    X.ear has a JAR (say XA.jar) which looksup and uses the Stateless Session bean in Y.ear. We have a yClient.jar that contains all the necessary classes for use by X.ear, so XA.jar. This yClient.jar is available in X.ear.
    In one of the classes in XA.jar, when I lookup the EJB, I am succesful in getting the Home class. If I try to narrow down to the specific Home class instead of EJBHome.class, then I get the ClassCastException at that moment. If I cast it to EJBHome.class and postpone casting until after creation of the real remote bean, then I get the ClassCastException here.
    I have included the code also.
    Possible doubts that I am having:
    1)
    I am doubting like OAS is doing something that I am not aware of. Like the remote object it sends back and when I am casting it to the class of the object it throws ClassCastException.
    Y.ear does not contain any info like a Jar in X.ear is going to lookup this bean or so.
    Do I need to mention anything in Y.ear.
    2)
    Is there any possiblility that the same class in X.ear and Y.ear are compiled with different JDK or timing
    3) Or is the OAS Stub creation or persistence or passivation is messing up in this.
    I am kind of stuck in here. Thanks for your help
    If you notice the following exception, I have printed the SessionBean narrowed down class. It is a wrapper class from OC4J I believe.
    [u]SessionControllerSLHome_StatelessSessionHomeWrapper61
    This is what is in the orion-ejb-jar.xml
    <session-deployment name="SessionControllerSL" max-tx-retries="0" location="com/dsc/uniarch/cr/ejb/SessionControllerSL" wrapper="SessionControllerSLHome_StatelessSessionHomeWrapper61" persistence-filename="com/dsc/uniarch/cr/ejb/SessionControllerSL.home_default_island_1" />
    It seems like the looked up object when I cast it to the corresponding class, it is giving ClassCastException
    Exception
    06/10/27 11:40:13 Tutalii: /home/oracle/OracleAS/j2ee/home/applications/mlo/mloWeb/WEB-INF/classes
    06/10/27 11:40:29 Oracle Application Server Containers for J2EE 10g (10.1.2.0.0) initialized
    06/10/27 11:41:03 EL xPressionConnection Begin start session...
    06/10/27 11:41:03 EL xPressionResponseConnection - getInitialContext ()
    06/10/27 11:41:03 EL xPressionConnection PROVIDER_URL =ormi://localhost:3201/xPression
    06/10/27 11:41:03 EL xPressionConnection INITIAL_CONTEXT_FACTORY =com.evermind.server.rmi.RMIInitialContextFactory
    06/10/27 11:41:03 EL xPressionConnection SECURITY_PRINCIPAL =xpression
    06/10/27 11:41:03 EL xPressionConnection SECURITY_CREDENTIALS =xpression
    06/10/27 11:41:03 2011: After successful JNDI lookup for SessionControllerSL on the Initial Context: [SessionControllerSLHome_StatelessSessionHomeWrapper61]
    06/10/27 11:41:03 2012: After narrowing down the homeObject to EJB Home Object: SessionControllerSLHome_StatelessSessionHomeWrapper61
    06/10/27 11:41:03 2013: Used reflection to invoke the Create method on EJBHome Object: SessionControllerSL_StatelessSessionBeanWrapper60
    06/10/27 11:41:03 java.lang.ClassCastException
    06/10/27 11:41:03 at com.dsc.uniarch.ejbController.xPressionConnection.lookupTargetHome1(xPressionConnection.java:152)
    06/10/27 11:41:03 at com.dsc.uniarch.ejbController.xPressionConnection.Start(xPressionConnection.java:250)
    06/10/27 11:41:03 at com.dsc.uniarch.ecor.bean.xResponseFrameWork.startSession(xResponseFrameWork.java:5381)
    06/10/27 11:41:03 at com.dsc.uniarch.ecor.bean.xResponseFrameWork.processRequest(xResponseFrameWork.java:154)
    06/10/27 11:41:03 at html.index._jspService(_index.java:69)
    06/10/27 11:41:03 at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    06/10/27 11:41:03 at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
    06/10/27 11:41:03 at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    06/10/27 11:41:03 at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    06/10/27 11:41:03 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    06/10/27 11:41:03 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
    06/10/27 11:41:03 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    06/10/27 11:41:03 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    06/10/27 11:41:03 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
    06/10/27 11:41:03 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
    06/10/27 11:41:03 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    06/10/27 11:41:03 at java.lang.Thread.run(Thread.java:534)
    Code that is used
    try {
    //Third EJB Lookup: CRContentSF
    if (initContext == null)
    getInitialContext();
    homeObject = initContext.lookup("com/dsc/uniarch/cr/ejb/SessionControllerSL");
    System.out.println("2011: After successful JNDI lookup for SessionControllerSL on the Initial Context: ["
    + homeObject.getClass().getName() + "]");
    obHome = (EJBHome) javax.rmi.PortableRemoteObject.narrow(homeObject,
    EJBHome.class);
    System.out.println("2012: After narrowing down the homeObject to EJB Home Object: " + obHome.getClass().getName());
    m = obHome.getClass().getDeclaredMethod("create", new Class[0]);
    obj = m.invoke(obHome, new Object[0]);
    System.out.println("2013: Used reflection to invoke the Create method on EJBHome Object: " + obj.getClass().getName());
    sessionControllerSL = (com.dsc.uniarch.cr.ejb.SessionControllerSL) obj;
    System.out.println("2014: getClass " + sessionControllerSL.getClass().getName());
    System.out.println("3014: getClass " + SessionControllerSL.getClass().getName());
    } catch (Exception e) {
    e.printStackTrace();
    Thanks

    I redeployed the target j2ee application, it does not seem to help. However, after redeploying, I had to stop/start the OC4J instance couple of times. I dont think it matters. Or I dont know if you guys meant this only when you say 'server bounce'.
    What is this SessionBeanWrapper anyways? If it is a EJB-Remote-Stub, then it should be able to cast into its original interface. I dont know what else to do at this point. I will keep working on this.
    EXCEPTION
    06/10/30 13:40:14 EL xPressionConnection Begin start session...
    06/10/30 13:40:14 EL xPressionResponseConnection - getInitialContext ()
    06/10/30 13:40:14 EL xPressionConnection PROVIDER_URL =ormi://localhost:3201/xPression
    06/10/30 13:40:14 EL xPressionConnection INITIAL_CONTEXT_FACTORY =com.evermind.server.rmi.RMIInitialContextFactory
    06/10/30 13:40:14 EL xPressionConnection SECURITY_PRINCIPAL =user
    06/10/30 13:40:14 EL xPressionConnection SECURITY_CREDENTIALS =password
    06/10/30 13:40:14 EL xPressionConnection lookup beanName :com/dsc/uniarch/cr/ejb/SessionControllerSL
    06/10/30 13:40:14 EL xPressionConnection tmpObject : SessionControllerSLHome_StatelessSessionHomeWrapper61
    06/10/30 13:40:14 EL objHome name : SessionControllerSLHome_StatelessSessionHomeWrapper61
    06/10/30 13:40:14 EL xPressionConnection start typecast exception
    06/10/30 13:40:14 java.lang.ClassCastException
    06/10/30 13:40:14 at com.dsc.uniarch.ejbController.xPressionConnection.Start(xPressionConnection.java:235)
    06/10/30 13:40:14 at com.dsc.uniarch.ecor.bean.xResponseFrameWork.startSession(xResponseFrameWork.java:5381)
    06/10/30 13:40:14 at com.dsc.uniarch.ecor.bean.xResponseFrameWork.processRequest(xResponseFrameWork.java:154)
    06/10/30 13:40:14 at html.index._jspService(_index.java:69)
    CODE BEGIN
    System.out.println ("EL xPressionConnection Begin start session...");
    LogManager.logInfo("Begin start session...");
    setServerURL(serverURL);
    initInitContext();
    SessionControllerSLHome scHome = null;
    try {
    scHome = (SessionControllerSLHome)
    lookupTargetHome(ConfigManager.getInstance().getValue("SESSIONCONTROLLER_JNDI"));
    System.out.println ("EL xPressionConnection - scHome className : " + scHome.getClass().getName());
    catch (Exception exc) {
    System.out.println ("EL xPressionConnection start typecast exception ");
    exc.printStackTrace ();
    try{
    //sessionControllerSL = lookupTargetHome1();
    sessionControllerSL = scHome.create();
    } catch (Exception e) {
    System.out.println ("EL xPressionConnection scHome.create Exception ");
    e.printStackTrace();
    String[] param = new String[1];
    param[0] = ConfigManager.getInstance().getValue("SESSIONCONTROLLER_JNDI");
    throw new JNDINamingException(9110, e, param);
    CODE END
    Thanks

  • Mac Pro switches itself off immediately after power button is pressed on

    Hi there,
    I would like to share with you an ongoing problem of my Mac Pro (about on and off 11 month I think). Since its HD changed at the beginning of this year I've been having the problem of "switching itself off immediately after the power button is pressed on." I took it to Milton Keynes Apple Shop and apparently they couldn't replicate the problem I received it after they reset it's PRAM. Meanwhile I read the related posts and discussions about the problem and my assumption was as suggested in the scenarios of similar cause – Power Supply unit. I had a technical chat with ex-Solutions staff from Brighton, he also said it might have been caused by it.
    I really don't know what to do because, sometimes attempting 10 or over times of pressing the button I hear the chime and literally 10 or 20 seconds later it switches itself off. And it happened this Sunday morning again, 8 times I've encountered the failure. And the most confusing thing is sometimes I leave it about an hour or two and then it just works and runs fine as it has never have happened.
    By the way I left my computer on for a very long time I suspect maybe more than a month it was on sleep most of time when i am not using it. But yesterday I made the mistake of logging off and shutting it down. Now I can't turn my computer on. Highly frustrating and amazingly bizarre technical challenge.
    Mind you I am fairly capable of carrying DIY operations on it. Previously I baked my graphics card as suggested in the forum – it works fine at the moment I am waiting until it completely brakes. But this power problem really really puzzles me.
    Any opinions, how to solve this cause is highly appreciated.
    Many thanks!
    Specs:
    Mac Pro 8 core
    Xeon 5400 2nd Generation Early 2008
    10 GB RAM
    1 TB HD

    The SMC especially on the very first 2-3 months of Early 2008.
    Use to suffer from a "restart on wake from sleep" issue.
    Some one told me that is not what "inrush current issue" is but that is what I (and couple others) called it.
    Best to always have a workstation on 1500VA UPS.
    Not share the outlet or cirucit even with anything major.
    Yes it could I guess, poor phrase, but put more stress on PSU over time as a result also.
    Methods to reset SMC have varied and changed over time. Thanks to web not all the revisions and older versions are kept online though to compare to.
    Stories of people going on vacation etc for two weeks to come back to a "dead" Mac Pro started showing up in 2007.
    If it had an actual SMC button, use that to reset.
    If not, leaving it totally disconnected, and all external cables and such over-night, not for the mere 5-10 minutes.
    Unplug but then press and hold power button for 8-10 seconds. And only once. And not to be done repeatedly. That was SMC Reset #3.
    I know the 2007 8-core 3GHz had a different PSU than the smaller models.
    2008 high end was 8-core 3.2GHz 5400 (stock was 2.8GHz 4 or 8-core)
    FBDIMMs draw between 10W up to 15W each, so possible to have 8 DIMMs drawing 120W when maxed out. And heat. I always recommend Mac Pro use fan control to boost the fans a small 400 rpm to expel heat better and keep FBDIMM temps down. Heat, and temperature fluxuations stress and weaken components.
    Other than AHT and the tools that a Apple Certified center should have, not much other than to swap out parts, monitor - iStatPro or Hardware Monitor -
    And because of all this, I would setup a test system so you have a freshly formatted and installed OS and take it from there, with a better chance.
    ATI 2600XT still? or upgraded?

  • Skydrive for Mac crashes immediately after launch

    Skydrive for Mac crashes immediately after launch
    Hi and thanks in advance for your help.
    Recently when I launch Skydrive on Mac 10.8.3 it quits 2 seconds after launch. If I disconnect the internet connection Skydrive won't quit but the icon remains greyed out and the app waits for internet connection. If I switch to Guest user Skydrive launches properly. 
    Below are the things I have done but none have solved the problem:
    Deleted and reinstalled Skydrive (deleted using Cleanapp)
    Cleaned up the Mac using Onyx
    Reset PRAM
    Repaired permissions
    Checked Disk for errors
    Removed the Skydrive folder that syncs
    Removed all Login Items under Users and Groups
    Disabled firewall
    Added Skydrive in Firewall Options
    Installed the previous version of Skydrive
    Temporarily changed all the privileges of the app to Read and Write.
    And here is the error log: 
    Process:         SkyDrive [604] 
    Path:            /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
    Identifier:      com.microsoft.skydrive-mac
    Version:         17.0 (2004.1119)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    User ID:         501
    Date/Time:       2013-04-17 13:25:52.741 +0100
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Crashed Thread:  6  Heartbeat
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox           0x00007fff8454deb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox           0x00007fff8454dc52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox           0x00007fff8454dae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit               0x00007fff899d6563 _DPSNextEvent + 685
    9   com.apple.AppKit               0x00007fff899d5e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit               0x00007fff899cd1d3 -[NSApplication run] + 517
    11  com.apple.AppKit               0x00007fff89971c06 NSApplicationMain + 869
    12  com.microsoft.skydrive-mac     0x00000001064dd197 main + 207
    13  com.microsoft.skydrive-mac     0x00000001064d5a34 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff83f4cd16 kevent + 10
    1   libdispatch.dylib             0x00007fff85049dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib             0x00007fff850499ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff83f4c6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib             0x00007fff8c242f4c _pthread_workq_return + 25
    2   libsystem_c.dylib             0x00007fff8c242d13 _pthread_wqthread + 412
    3   libsystem_c.dylib             0x00007fff8c22d1d1 start_wqthread + 13
    Thread 5:: BiciExperienceQueueTimer
    0   libsystem_kernel.dylib         0x00007fff83f4a686 mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff83f49c42 mach_msg + 70
    2   com.apple.CoreFoundation       0x00007fff8bda0233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation       0x00007fff8bda5916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation       0x00007fff8bda50e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation           0x00007fff8d991f5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.microsoft.MSCommon         0x000000010657fa6f -[MSTimerThread main:] + 286
    7   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    8   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    9   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 Crashed:: Heartbeat
    0   com.microsoft.MSSyncEngine     0x0000000106a128a2 AssertWorker(bool, wchar_t const*, unsigned int, char const*, wchar_t const*, wchar_t const*, ...) + 785
    1   com.microsoft.MSSyncEngine     0x00000001069fe1f7 getStrConfigVal(_ConfigFile*, wchar_t const*, wchar_t const*) + 208
    2   com.microsoft.MSSyncEngine     0x0000000106a2974a loadGlobalSettings() + 277
    3   com.microsoft.MSSyncEngine     0x0000000106a2a163 initClientCore(wchar_t const*) + 118
    4   com.microsoft.skydrive-mac     0x00000001064db96c -[coreController heartBeatThread:] + 323
    5   com.apple.Foundation           0x00007fff8d98ccd2 __NSThread__main__ + 1345
    6   libsystem_c.dylib             0x00007fff8c2407a2 _pthread_start + 327
    7   libsystem_c.dylib             0x00007fff8c22d1e1 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000015a  rcx: 0x00000000000fc080  rdx: 0x00000000000c62c0
      rdi: 0x0000000106e69e00  rsi: 0x0000000000000002  rbp: 0x000000010885a6e0  rsp: 0x0000000108859f70
       r8: 0x000000000000000a   r9: 0x000000001898ea5b  r10: 0x00007fd4f4930f90  r11: 0x00000000ed07f0fe
      r12: 0x0000000106b7fa70  r13: 0x0000000000000001  r14: 0x0000000106b73e04  r15: 0x0000000000000001
      rip: 0x0000000106a128a2  rfl: 0x0000000000010246  cr2: 0x000000010684b0e9
    Logical CPU: 2
    Binary Images:
           0x1064d4000 -        0x106535ff7 +com.microsoft.skydrive-mac (17.0 - 2004.1119) <03A9549D-5B5E-3FAE-9E99-BB73112934E4> /Applications/SkyDrive.app/Contents/MacOS/SkyDrive
           0x106574000 -        0x1065d0fff +com.microsoft.MSCommon (17.0 - 2004.1119) <A172952E-42F1-3BB6-A208-28EB3C3DC60C> /Applications/SkyDrive.app/Contents/Frameworks/MSCommon.framework/Versions/A/MS Common
           0x106615000 -        0x1068baff7 +com.microsoft.MSP2P (17.0 - 2004.1119) <42208214-0648-3110-A4F5-AB5296E9A880> /Applications/SkyDrive.app/Contents/Frameworks/MSP2P.framework/Versions/A/MSP2P
           0x1069f7000 -        0x106cdeff7 +com.microsoft.MSSyncEngine (17.0 - 2004.1119) <863C4A42-FD0A-3880-B1C2-F530FF5982E7> /Applications/SkyDrive.app/Contents/Frameworks/MSSyncEngine.framework/Versions/ A/MSSyncEngine
           0x108422000 -        0x108446ff7  com.apple.security.csparser (3.0 - 55179.11) <5C818B75-2844-3BDC-B8FA-79CE48C19931> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
        0x7fff660d4000 -     0x7fff6610893f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8113b000 -     0x7fff812d6fef  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
        0x7fff812d7000 -     0x7fff816f4fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff817ef000 -     0x7fff81a24ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81a25000 -     0x7fff81a82ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff81a83000 -     0x7fff81a8afff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff81a8b000 -     0x7fff81ad5ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81c21000 -     0x7fff81ec5ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff81f0b000 -     0x7fff81f0bfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81f0c000 -     0x7fff81f2dff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff828ff000 -     0x7fff829bcff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff829bd000 -     0x7fff829bdffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82a16000 -     0x7fff82a17ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff82a18000 -     0x7fff82a27fff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff82af7000 -     0x7fff82b19ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff82b54000 -     0x7fff82f4bfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff82f4c000 -     0x7fff82f4cfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff82f4d000 -     0x7fff82f77ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff82fad000 -     0x7fff8303aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff832f6000 -     0x7fff8332cfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8332d000 -     0x7fff83334fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff836c1000 -     0x7fff836d3ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff837ee000 -     0x7fff83815ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83816000 -     0x7fff83872ff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff838c4000 -     0x7fff838c9fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8390e000 -     0x7fff83948ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83949000 -     0x7fff8396bff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8396c000 -     0x7fff8396efff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8396f000 -     0x7fff83972fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff83973000 -     0x7fff839dcfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff83c8c000 -     0x7fff83c90fff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83cce000 -     0x7fff83cdafff  libCSync.A.dylib (331.0.4) <C7043BB7-284D-3B9F-A5CB-78ADE691B2D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff83cdb000 -     0x7fff83edbfff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff83f3a000 -     0x7fff83f55ff7  libsystem_kernel.dylib (2050.22.13) <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
        0x7fff83f56000 -     0x7fff83f76fff  libPng.dylib (849) <F4C23A55-F17B-3E4F-9E80-BC97F778BA49> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83f77000 -     0x7fff83fb4fef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff83ffd000 -     0x7fff84003ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff84004000 -     0x7fff84011fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8409d000 -     0x7fff840abff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff844ee000 -     0x7fff8481efff  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
        0x7fff8481f000 -     0x7fff84820ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff848cc000 -     0x7fff848f8ff7  libRIP.A.dylib (331.0.4) <4B261CE2-524E-3FA9-9437-B70DAC1EAB95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84905000 -     0x7fff84905fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84906000 -     0x7fff84927fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff84928000 -     0x7fff84933fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff84934000 -     0x7fff84983ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff84a76000 -     0x7fff84adefff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff84adf000 -     0x7fff84ae0fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff84e08000 -     0x7fff84e5dff7  libTIFF.dylib (849) <C4D0E196-9319-319B-AF72-8B63FB5AF71B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff84e5e000 -     0x7fff84e6cfff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff84e6d000 -     0x7fff84fbefff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84fbf000 -     0x7fff8503eff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8503f000 -     0x7fff85044fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff85045000 -     0x7fff8505aff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8519f000 -     0x7fff85245ff7  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
        0x7fff85246000 -     0x7fff85249ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8524a000 -     0x7fff85278fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff85279000 -     0x7fff852a1fff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff852b7000 -     0x7fff852fbfff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff852fc000 -     0x7fff8530afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8530b000 -     0x7fff85480fff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff856ec000 -     0x7fff856edff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff85736000 -     0x7fff85738fff  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
        0x7fff85739000 -     0x7fff859d4fff  com.apple.JavaScriptCore (8536 - 8536.28.10) <BC911515-D051-3E2E-8E57-D36878407C60> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff859d5000 -     0x7fff85a70fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff85a71000 -     0x7fff85af2fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff85af3000 -     0x7fff85be8fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff85be9000 -     0x7fff85d02fff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85d03000 -     0x7fff85d5dff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff85d5e000 -     0x7fff85dafff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85db2000 -     0x7fff85db6fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff85db7000 -     0x7fff85dcefff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85dcf000 -     0x7fff85e3dfff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85e8a000 -     0x7fff85e90fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85e91000 -     0x7fff86116ff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff861e0000 -     0x7fff86223ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff86224000 -     0x7fff86226ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff86227000 -     0x7fff86329fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8632a000 -     0x7fff86332ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86333000 -     0x7fff86333fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff86338000 -     0x7fff86392fff  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
        0x7fff86393000 -     0x7fff863befff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff863c4000 -     0x7fff863c5fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff863c6000 -     0x7fff863d4ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff868fa000 -     0x7fff8690dff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8690e000 -     0x7fff86912ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86913000 -     0x7fff869edfff  com.apple.backup.framework (1.4.2 - 1.4.2) <0B557393-CD2A-3076-BED2-F28D02E1EC1D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff869ee000 -     0x7fff879abfff  com.apple.WebCore (8536 - 8536.28.10) <89CDA119-0FC8-3D0E-87B8-AB96BE6D1A36> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff879ac000 -     0x7fff87ab7fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87b8e000 -     0x7fff87d14fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff87d1a000 -     0x7fff87e3292f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff87e33000 -     0x7fff87e3afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87e3b000 -     0x7fff87e4eff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff87f86000 -     0x7fff88111ff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88112000 -     0x7fff8811dfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8811e000 -     0x7fff8812dff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8812e000 -     0x7fff8813bfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff881ca000 -     0x7fff881d5ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff881d6000 -     0x7fff8820cfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff88290000 -     0x7fff88290fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff88291000 -     0x7fff882f0fff  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
        0x7fff88338000 -     0x7fff88369ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8842d000 -     0x7fff88433fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff88446000 -     0x7fff88446fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88447000 -     0x7fff8845dfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8845e000 -     0x7fff884c6ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff88760000 -     0x7fff88762fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff88763000 -     0x7fff88a7aff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88a7b000 -     0x7fff88a90fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff88c8c000 -     0x7fff88c8cfff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88f9c000 -     0x7fff88fa0fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff89859000 -     0x7fff89876ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff89881000 -     0x7fff8a4aeff7  com.apple.AppKit (6.8 - 1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a4af000 -     0x7fff8a5cffff  com.apple.desktopservices (1.7.3 - 1.7.3) <707F77D2-EC0E-3431-840F-B984BD7ABDD6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8adb6000 -     0x7fff8af64fff  com.apple.QuartzCore (1.8 - 304.2) <234EABE1-067C-3DAE-BEAC-674526E232C2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8af65000 -     0x7fff8afbcff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8afbe000 -     0x7fff8afc0ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b019000 -     0x7fff8b040fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b07c000 -     0x7fff8b07cfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8b0cf000 -     0x7fff8b1a1ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8b1a2000 -     0x7fff8b1c1ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8b406000 -     0x7fff8b45cfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b4b7000 -     0x7fff8b539ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b595000 -     0x7fff8b5a9fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b5f5000 -     0x7fff8b60cfff  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
        0x7fff8b60d000 -     0x7fff8b610fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8b770000 -     0x7fff8b79eff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8b79f000 -     0x7fff8b7abfff  com.apple.CrashReporterSupport (10.8.3 - 417) <48EDDDF3-5720-39D6-B51F-D9AFB93327B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b7ac000 -     0x7fff8b7cbff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8b7cc000 -     0x7fff8b7f1ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8ba49000 -     0x7fff8ba95ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8bae6000 -     0x7fff8bbe3ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8bbf0000 -     0x7fff8bca1fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bd5c000 -     0x7fff8bd69ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bd70000 -     0x7fff8bf5aff7  com.apple.CoreFoundation (6.8 - 744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8bf5d000 -     0x7fff8bfacff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8c074000 -     0x7fff8c139ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c1ab000 -     0x7fff8c22bff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c22c000 -     0x7fff8c2f8ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c2f9000 -     0x7fff8c338ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c37e000 -     0x7fff8c480fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c52c000 -     0x7fff8c52efff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c60f000 -     0x7fff8c613ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8c614000 -     0x7fff8c615ff7  libsystem_sandbox.dylib (220.2) <6838A6FD-8626-3356-BB4F-BB4787216207> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8c656000 -     0x7fff8c927ff7  com.apple.security (7.0 - 55179.11) <73958084-5BBC-3597-A751-7370B0C247E5> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c928000 -     0x7fff8c931ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8c939000 -     0x7fff8c943fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c945000 -     0x7fff8c945fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c95d000 -     0x7fff8d2ed6ff  com.apple.CoreGraphics (1.600.0 - 331.0.4) <4953961C-96DC-39D7-ADF5-B767F2A7E4E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d2ee000 -     0x7fff8d2effff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d2f0000 -     0x7fff8d2f8fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8d2f9000 -     0x7fff8d3f6fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8d653000 -     0x7fff8d696ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8d6f0000 -     0x7fff8d707fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d708000 -     0x7fff8d70dfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8d70e000 -     0x7fff8d712fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d713000 -     0x7fff8d7adfff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d7ae000 -     0x7fff8d81bff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d81c000 -     0x7fff8d8baff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8d8f7000 -     0x7fff8dc54ff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 644
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.1M resident=153.8M(88%) swapped_out_or_unallocated=21.3M(12%)
    Writable regions: Total=69.7M written=3652K(5%) resident=4224K(6%) swapped_out=0K(0%) unallocated=65.5M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                     8K
    CG shared images                    128K
    CoreServices                       1904K
    MALLOC                             41.7M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.1M
    __DATA                             13.6M
    __IMAGE                             528K
    __LINKEDIT                         54.6M
    __TEXT                            120.5M
    __UNICODE                           544K
    mapped file                        28.2M
    shared memory                       308K
    ===========                      =======
    TOTAL                             345.2M

    Back up all data.
    Quit the application, if it's running.
    Triple-click the line below to select it:
    ~/Library/Containers/com.microsoft.skydrive-mac.
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu. A Finder window should open with a folder selected. If it does, move the selected folder — not just its contents — to the Desktop.
    The folder you're moving has a name that begins with "com." It is not the subfolder named "Data" or anything else.
    Relaunch the problem application and test. If it works now, delete the folder you moved. Otherwise, quit again, and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.microsoft.SkyDriveLauncher
    Caution: If you delete some or all of the contents of the selected folder, but leave the folder itself in place, the application may not launch. Deleting the folder will cause it to be rebuilt automatically.

  • On my MacBook with Lion Safari does start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library did not help. Where can I find and remove all components (LastSession ...)?

    How can I reset Safari with all components? On my MacBook with Lion, Safari does not start, does not react immediately after trying to open it. Installing a new Safari does not help. Removing parts of Safari in the Library does not help. Where can I find and remove all components as LastSession and TopSites?

    The only way to reinstall Safari on a Mac running v10.7 Lion is to restore OS X using OS X Recovery
    Instead of restoring OS X in order to reinstall Safari, try troubleshooting extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.
    If it's not an extension or plug-in issue, delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • My iPod classis is not recognized by my Macbook and self-ejects immediately after being plugged in?

    Hello,
    I have an iPod classic and I am using a Macbook Pro running Mavericks. Since the last iTunes update i have not been able to connect my iPod to iTunes. I have tried both USB ports and it still won't work. The iPod ejects itself immediately after being plugged in. The usb ports are working, I've tried an iPod touch and an iPhone 4s, so that doesn't seem to be the issue either. Appreciate any help!

    Hi luisxjim,
    Thanks for using Apple Support Communities.  This article has some steps that may help if your iPod classic isn't being recognized by your computer:
    iPod not recognized in iTunes and Mac desktop
    http://support.apple.com/kb/TS1410
    Cheers,
    - Ari

Maybe you are looking for