Connect to an external JMS

Hi,
How can I configure a business process/jcd to receive(also send) messages from an external queue/topic?
Thanks
Kaanu
PS: I am able to use queues/topics used in other SunSeeBeyond Projects.

Hi,
I was trying connect to the SeeBeyond JMS IQ Manager. I wanted to connect to a pre existing queue rather than creating a new one. I figured out a way of doing that. The CMap Queue/Topic icon's name needs to be the same as the queue/topic name on the JMS server.
I am not sure if this is the right way....
Please correct me if I am wrong.
Kaanu

Similar Messages

  • How to use external JMS server.

    Hi,
    I am working with JMS adapter. we have installed BPEL 10.1.3 .1 in one system and in another system we have installed Oracle Application server. Please provide the configuration steps to connect to this external JMS server.

    Hi,
    take a look at
    http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/adptr_jms.htm#BABJCCHI
    You have to specify ormi://remotehost.domain.com:23795

  • Get Message Notification in BPM 10G from External JMS Provider

    Hello,
    Can anyone provide me the steps how to get a message from the queue (external JMS provider) in BPM 10G.
    I have been looking into this for couple of days now and I'm not able to figure it out. Any input on this would be greatly appreciated.
    Thanks
    NC

    Hi,
    Please find the steps below and change the necessary parameter according to your requirement.
    JMS Configuration and read the message from queue a
    1) Configure a J2EE Configuration in External Resources with the following details.
    Where
    Name: J2EEConfiguration
    Initial Context Factory: weblogic.jndi.WLInitialContextFactory
    URL: t3://localhost:7001
    Principal: weblogic
    Credentials: weblogic
    2) Configure a JMS Configuration in External Resources with the following details
    Where
    Name: JMSConfiguration
    J2EE: J2EEConfiguration
    Destination Type: Queue
    Lookup Name: com.bibhu.queue – Refer to JMS configuration in Weblogic Server
    Connection Factory Lookup Name: com.bibhu.cf – Refer to JMS configuration
    3) Configure a Java Configuration in External Resources with the following details
    Add weblogic.jar, wsclient.jar, and jms.jar files
    4) Create a process and add a Global automatic Activity with the following configuration
    5) Add the following code for different purpose
    // The below code is meant for reading a message/messages from Queue
    logMessage("JMS message retrieved from queue: \n" + message.textValue);
    // The below code is meant for sending message to the Queue Where,
    // JMSConfiguration: is the External Resource Configuration for JMS
    // Bibhu: is the message body
    String externalResourceId = "JMSConfiguration";
    String msgBody = "Bibhu";
    JmsMessage jmsMsg = JmsMessage(type : JmsMessageType.TEXT);
    jmsMsg.textValue = msgBody;
    jmsMsg.expiration = 'now' + '5m'; // expires in 5 minutes
    sendMessage(DynamicJMS, configuration : externalResourceId, message : jmsMsg);
    hope the above will help you.
    Bibhu

  • How to integrate Websphere MQ as an external JMS Provider?

    Hello to all!
    I'm trying to integrate Websphere MQ in SAP Web AS 6.40 as an external JMS provider and I'm having some problems. As the use of SAP XI is impossible for me, I started using the built-in JMS Connector.
    I've already read (and tried to follow) the documentation in http://help.sap.com/saphelp_nw04/helpdata/en/cd/4d4941abbb4c0de10000000a1550b0/frameset.htm, but unfortunately, it didn't help me that much.
    It told me that the JMS Connector is the right place to start, and I already managed to deploy and define the Websphere MQ JMS implementation as a library. And from various examples I'm quite sure that Websphere MQ is an JNDI based JMS provider. But now the problems start.
    According to the SAP library mentioned above, I have to enter the JNDI name to the ConnectionFactory in the "New ConnectionFactory" dialogue in the "Provider" tab. As an example there is the (existing) JNDI name "jmsfactory/default/TopicConnection". For doing the same with my Websphere MQ, I expect to need something alike.
    Hoping that I'm getting the SAP library right at this point, I'm expecting to need a JNDI entry, like, let's say, "jmsfactory/WebsphereMQ/QueueConnection" connected to the class "com.ibm.mq.jms.MQConnectionFactory" (MQConnectionFactory is the class in the MQ JMS implementation that implements the JMS interface "Connection Factory"). How can I put those Websphere MQ classes, that are implementing the JMS interfaces like Connection Factory, QueueConnectionFactory and so on
    in my JNDI tree? The point is, obviously, no JNDI entry was made during deploying Websphere MQ as a library.
    Or am I totally wrong an misunderstood the SAP library completely? Any help on this topic would be highly appreciated.
    Best greetings!
    Bärbel

    Integrating WebSphereMQ with SAP Web Application Server
    Prerequisites
    The native libraries of WebSphereMQ must be added to the environment variables of the host or hosts where the SAP Web AS is running. Typically, if MQ is installed on the same host, the required entries are added to the environment at installation. However, we recommend that you check the MQ documentation for details about the directory where the libraries are located, and make sure it is added to the environment on all hosts with SAP Web AS.
    For example, for Windows OS the following libraries are required:
    -     amqmtmgr.dll
    -     amqvwaa2.dll
    -     amqxcs2.dll
    -     amqxcsn.dll
    -     amqzc.dll
    -     amqzsai.dll
    -     amqzst.dll
    -     amqztm.dll
    -     mqjbdf02.dll
    -     mqjbnd05.dll
    -     mqm.dll
    -     mqmvxd.dll
    -     mqmxa.dll
    -     MQXAi02.dll
    Procedure
    1)     If the version of the SAP Web AS is SP 7 or lower, you must apply a patch for the JMS Connector Service. The required SDA is attached to this e-mail (jmsconnector.sda). To apply it:
    a.     Run the SDM Remote GUI tool. It is located in <SAP_install_dir>\SAPSID\<Instance_ID>\SDM\program.
    b.     In the Deployment tab, add the jmsconnector.sda to the deployment list. Choose   Show Deployment Configuration. Select Update deployed SDAs/SCAs that have any version (this ensures that you will have the SDA deployed even if for some reason its timestamp is older than the one of the SP7 SDA that you already have deployed.)
    c.     Deploy the SDA following the standard deployment procedure. If prompted to choose if you want to delegate the control to the SDM server, choose Yes. The SDM shuts down the cluster, deploys the SDA, and then restarts the cluster.
    2)     Create the IBM MQ library. You can do it using either Visual Administrator or SAP NetWeaver Developer Studio.
    a.     Visual Administrator:
    i.     Go to Services -> JMS Connector.
    ii.     Select JMS Libraries, and choose New.
    iii.     Enter a name for the library, such as MQJMSLIB.
    iv.     Browse to select the following JAR files:
    - com.ibm.mq.jar
    - com.ibm.mqbind.jar
    - com.ibm.mqjms.jar
    - fscontext.jar
    - ldap.jar
    - postcard.jar
    - provider.xml
    - providerutil.jar
    v.     Deploy the library.
    vi.     Go to Services -> Configuration Adapter. In the configuration tree on the right-hand side of the screen browse to cluster_data -> server -> cfg -> ext -> MQJMSLIB-provider.xml. Switch to edit mode using  . Open the XML for editing using  . Add the following entry (after the reference entry for jms):
    <reference type="library" strength="weak">j2eeca</reference>
    Choose OK and restart the cluster to apply the changes.
    b.     SAP NetWeaver Developer Studio:
    i.     Create a J2EE Library project.
    ii.     Select the project and choose File -> Import -> File System. Browse to the MQ folder, which contains the JAR files listed above, and select to import them.
    iii.     Extend the tree of your library project and open server/provider.xml. Go to the Jars tab.
    iv.     Select Jars, and choose Add. Choose to add the JAR files that you have imported in the previous step.
    v.     Go to the References tab. Select References, and choose Add. Choose Select library/interface/service. In the list select jms and j2eeca.
    vi.     Save and close provider.xml. From the context menu of the library project choose Build Library Archive.
    vii.     Select the SDA in the project tree, open its context menu, and choose Deploy to J2EE Engine.
    3)     Create a JMS Connector Factory in Visual Administrator.
    You can either enter the required values directly in the Visual Administrator (Services -> JMS Connector), or you can edit the following sample deployment descriptors and import them in Visual Administrator using  .
    a.     Using JNDI:
    This is example of factories.xml using JNDI based JMS provider.
    <?xml version="1.0" encoding="UTF-8" ?>
      <jms-factories>
        <application-name>
          IBM_Test_App
        </application-name>
        <connection-factory>
          <library-name>
            MQJMSLIB
          </library-name>
          <factory-name>
            IBM_Queue_Factory
          </factory-name>
          <context-factory-type>
    <!—This factory should already exist on WebSphereMQ.-->
            <link-factory-name>
              QCF_1
            </link-factory-name>
            <initial-context-factory>
              com.sun.jndi.fscontext.RefFSContextFactory
            </initial-context-factory>
            <provider-url>
              file:/C:/JNDI-Directory
            </provider-url>
            <security-principal>
            </security-principal>
            <security-credentials>
            </security-credentials>
          </context-factory-type>
        </connection-factory>
      </jms-factories>
    b.     Using object factory JMS provider
    <?xml version="1.0" encoding="UTF-8" ?>
      <jms-factories>
        <application-name>
          IBM_Test_App
        </application-name>
        <connection-factory>
          <library-name>
            MQJMSLIB
          </library-name>
          <factory-name>
            IBM_Queue_Factory
          </factory-name>
          <object-factory-type>
            <object-factory-name>
              com.ibm.mq.jms.MQXAQueueConnectionFactoryFactory
            </object-factory-name>
            <class-name>
              com.ibm.mq.jms.MQXAQueueConnectionFactory
            </class-name>
            <properties>
              <property>
                <property-name>
                  HOST
                </property-name>
    <!-- JMS Provider host name -->
                <property-value>
                  localhost
                </property-value>
              </property>
              <property>
                <property-name>
                  QMGR
                </property-name>
    <!-- Queue Manager -->
                <property-value>
                  MQ_default
                </property-value>
              </property>
              <property>
                <property-name>
                  PORT
                </property-name>
    <!-- JMS Provider port number -->
                <property-value>
                  1414               
                </property-value>
              </property>
              <property>
                <property-name>
                  TRAN
                </property-name>
    <!-- Transport type -->
                <property-value>
                  1                    
                </property-value>
              </property>
            </properties>
          </object-factory-type>
        </connection-factory>
      </jms-factories>
    4)     Use the connection factory in an application:
    Code:
    Context ctx = new InitialContext();
    Object ref = ctx.lookup("java:comp/env/IBM_Queue_Factory");
    QueueConnectionFactory f = (QueueConnectionFactory)ref;
    QueueConnection connection = f.createQueueConnection();
    Resource references:
                     <resource-ref>
              <res-ref-name>
                IBM_Queue_Factory
              </res-ref-name>
              <res-type>
                javax.jms.QueueConnectionFactory
              </res-type>
              <res-auth>
                Container
              </res-auth>
            </resource-ref>
    If you are using 6.40 SP7 or below let me know to send you a patch.
    Regards Nikola

  • Getting events into WLI from  External JMS Queue

    Hi,
    I can't figure out how to get an event into WLI from an external JMS queue.
    I can send an XML message to an external queue but can't figure out how to get
    a message from an external queue into WLI. I have created the MDB using the generator
    program provided and have deployed. How does this MDB now send these messages
    into WLI?
    I have also posted this same question in weblogic.interest.jms newsgroup.
    -- Bill

    Hi Bill.
    Actually this is really simple. Here are the steps:
    Connect your MDB to the external JMS queue by modifying the weblogic-ejb-jar.xml
    The MDB onMessage(Message m) method will receive a message from the external JMS
    queue. It will then use JNDI to bind to the EventQueue of WLI and submit the event
    as XML into that queue.
    Obvously the onMessage() operation must be transacted using container managed
    transactions so the scope will spawn both de-queuing from the external JMS queue
    and enqueing into the WLI Evnet Queue.
    "Bill Ozeroff" <[email protected]> wrote:
    >
    Hi,
    I can't figure out how to get an event into WLI from an external JMS
    queue.
    I can send an XML message to an external queue but can't figure out how
    to get
    a message from an external queue into WLI. I have created the MDB using
    the generator
    program provided and have deployed. How does this MDB now send these
    messages
    into WLI?
    I have also posted this same question in weblogic.interest.jms newsgroup.
    -- Bill

  • Using external JMS  provider

    I am trying to use Tibco EMS as an external jms provider.
    I created new factory (named TibcoFN) in JMSConnector service using visual administrator
    Then I deployed and started it without any visible problem.
    Then I created reference in a web.xml file of web application.
    When I am calling lookup of initial context I always get naming exception.
    What steps am I missing?
    Piya

    I am trying to use ActiveMQ as my external JMS provider and having a hard time doing so.  I've deployed the activemq jar file in the JMS Connector service > library, and defined jms-factories.xml like:
    <?xml version="1.0" encoding="UTF-8" ?>
    <jms-factories>
      <connection-factory>
        <factory-name>jms/ConnectionFactory</factory-name>
        <library-name>activemq</library-name>
        <context-factory-type>
          <link-factory-name>jmsfactory/default/QueueConnectionFactory</link-factory-name>
          <initial-context-factory>com.sap.engine.services.jndi.InitialContextFactoryImpl</initial-context-factory>
          <provider-url>sapvm-vc:61616</provider-url>
          <security-principal></security-principal>
          <security-credentials></security-credentials>
        </context-factory-type>
      </connection-factory>
    </jms-factories>
    But I am getting the following error:
      Application error occurred during request processing.
      Details:   org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'exampleManagerContainer' defined in class path resource [integrationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: javax.jms.ConnectionFactory.createConnection()Ljavax/jms/Connection;
    Exception id: [005056AB07A0005B0000004100000614000449BF8461CFBE]
    Any ideas, please???
    thanks,

  • Excel SSAS Tabular error: An error occurred during an attempt to establish a connection to the external data source

    Hello there,
    I have an Excel report I created which works perfectly fine on my dev environment, but fails on my test environment when I try to do a data refresh.
    The key difference between both dev and test environments is that in dev, everything is installed in one server:
    SharePoint 2013
    SQL 2012: Database Instance, SSAS Instance, SSRS for SharePoint, SSAS POWERPIVOT instance (Powerpivot for SharePoint).
    In my test and production environments, the architecture is different:
    SQL DB Servers in High Availability (irrelevant for this report since it is connecting to the tabular model, just FYI)
    SQL SSAS Tabular server (contains a tabular model that processes data from the SQL DBs).
    2x SharePoint Application Servers (we installed both SSRS and PowerPivot for SharePoint on these servers)
    2x SharePoint FrontEnd Servers (contain the SSRS and PowerPivot add-ins).
    Now in dev, test and production, I can run PowerPivot reports that have been created in SharePoint without any issues. Those reports can access the SSAS Tabular model without any issues, and perform data refresh and OLAP functions (slicing, dicing, etc).
    The problem is with Excel reports (i.e. .xlsx files) uploaded to SharePoint. While I can open them, I am having a hard time performing a data refresh. The error I get is:
    "An error occurred during an attempt to establish a connection to the external data source [...]"
    I ran SQL Profiler on my SSAS Server where the Tabular instance is and I noticed that every time I try to perform a data refresh, I get the following entries:
    Every time I try to perform a data refresh, two entries under the user name ANONYMOUS LOGON.
    Since things work without any issues on my single-server dev environment, I tried running SQL Server Profiler there as well to see what I get.
    As you can see from the above, in the dev environment the query runs without any issues and the user name logged is in fact my username from the dev environment domain. I also have a separated user for the test domain, and another for the production domain.
    Now upon some preliminary investigation I believe this has something to do with the data connection settings in Excel and the usage (or no usage) of secure store. This is what I can vouch for so far:
    Library containing reports is configured as trusted in SharePoint Central Admin.
    Library containing data connections is configured as trusted in SharePoint Central Admin.
    The Data Provider referenced in the Excel report (MSOLAP.5) is configured as trusted in SharePoint Central Admin.
    In the Excel report, the Excel Services authentication settings is set as "use authenticated user's account". This wortks fine in the DEV environment.
    Concerning SecureStore, PowerPivot Configurator has configured it the PowerPivotUnnattendedAccount application ID in all the environments. There is
    NO configuration of an Application ID for Excel Services in any of the environments (Dev, test or production). Altough I reckon this is where the solution lies, I am not 100% sure as to why it fails in test and prod. But as I read what I am
    writing, I reckon this is because of the authentication "hops" through servers. Am I right in my assumption?
    Could someone please advise what am I doing wrong in this case? If it is the fact that I am missing an Secure Store entry for Excel Services, I am wondering if someone could advise me on how to set ip up? My confusion is around the "Target Application
    Type" setting.
    Thank you for your time.
    Regards,
    P.

    Hi Rameshwar,
    PowerPivot workbooks contain embedded data connections. To support workbook interaction through slicers and filters, Excel Services must be configured to allow external data access through embedded connection information. External data access is required
    for retrieving PowerPivot data that is loaded on PowerPivot servers in the farm. Please refer to the steps below to solve this issue:
    In Central Administration, in Application Management, click Manage service applications.
    Click Excel Services Application.
    Click Trusted File Location.
    Click http:// or the location you want to configure.
    In External Data, in Allow External Data, click Trusted data connection libraries and embedded.
    Click OK.
    For more information, please see:
    Create a trusted location for PowerPivot sites in Central Administration:
    http://msdn.microsoft.com/en-us/library/ee637428.aspx
    Another reason is Excel Services returns this error when you query PowerPivot data in an Excel workbook that is published to SharePoint, and the SharePoint environment does not have a PowerPivot for SharePoint server, or the SQL Server Analysis
    Services (PowerPivot) service is stopped. Please check this document:
    http://technet.microsoft.com/en-us/library/ff487858(v=sql.110).aspx
    Finally, here is a good article regarding how to troubleshoot PowerPivot data refresh for your reference. Please see:
    Troubleshooting PowerPivot Data Refresh:
    http://social.technet.microsoft.com/wiki/contents/articles/3870.troubleshooting-powerpivot-data-refresh.aspx
    Hope this helps.
    Elvis Long
    TechNet Community Support

  • Connecting to an external display using the setting optimised for built in screen?

    i am having trouble connecting to an external display with the lid closed and the settings is optimised for built in display.
    it was working nicely until yesterday when i changed the resolution.
    and now i cant take it to optimised for built in display, only if the lid is opened and i want it closed.
    can i know how to return it to the setting (optimised for built in display) with the lid closed?

    Hello there, hasan.
    The following Knowledge Base article offers some great information for troubleshooting usig and external display with your Mac:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I am trying to connect to an external projector

    I have a 15" Macbook pro running Windows XP Pro bootcamp, I am trying to connect to an external projector using the Mac mini dvi to vga adaptor, I have now tried two different adaptors but still I cannot get the display to work.
    Does anyone know if there is an update that needs to be installed or additional drivers that may need to be installed for this to work?
    Anyone out there have any ideas?
    Thanks
    Simon

    Thanks to the suggestion of downloading XP Service Pack 3, the problem seems to be resolved!
    Jen

  • How can I connect an old external FDD Model# M0130 ?

    I have an original Macintosh 128k with an external FDD DB-19 connection. Now I have 400k diskettes and I would like to get the files from these diskettes. Is there a way to connect this old External FDD that has an db-19 connection to a Quadra 650 or Powerpc 7600 so that I can get the files from the diskettes.
    Or is there another way to be able to access these 400k diskettes from a Quadra 650 or PowerPc 7600.

    400 KB diskettes are physically readable in any Apple 800 KB or combination 800KB/1.44 MB diskette drive. 400 KB diskettes are double density (2D or 2DD) media, but are written one one side only.
    Support for 400 KB MFS diskettes was removed from the System Software at System 8.0, when HFS+ Extended was first introduced (but not made active until 8.1).
    So you need an older Mac, like your Quadra 650, running Mac OS before Mac OS 8.
    Do not try to fool the drive by using HD media -- the oxide is different, and the data will decay and become unreadable in a matter of a few minutes. Both types of diskettes are still available from the catalogs of major office supply retailers.

  • Hi - my 2011 Mac Pro no longer recognizes devices in the usb ports, I've been told it's the logic board.  is there a way I can connect the iomega external hard drive to it through the firewire or thunderbolt ports?

    Hi - my 2011 Mac Pro no longer recognizes devices in the usb ports, I've been told it's the logic board.  is there a way I can connect the iomega external hard drive to it through the firewire or thunderbolt ports?

    jrburrows wrote:
    Ok, fair enough.  But since Job's death - Apple's control on leaks has been terrible.  I got the new iPhone, and I like it - but it hasn't made nearly as big as an impression as previous ones.  Because of the vast ammount of leaks.  With the iPad mini leaks, it's 99% sure to come out next week.
    Apple uses many manufacturers and it's massive also websites prefer to report on Apple whether true or false because it brings more hits.
    Amd by "others" I meant other people on iPads - not other devices/manufacturers.  It's possible to do so, I just want to know how.  I honestly don't think we'll ever be in a Post-PC era until all tablets allow us to use USB in the way computers do.
    No, USB is not the future, you missed the memo about cloud and wireless computing?

  • PC can't connect to AEB external drive, but Mac can.

    Until recently I was able to connect to the external hard drive I have attached to my 1 generation Airport Extreme base station, version 5.6.1, running firmware version 7.6.4. It just stopped showing up one day and it gives me errors when I try to connect saying credentials are wrong, but they're not. I've tried everything I could find, including changing some Windows settings, reverting firmware, resets and a lot more. It used to automatically connect at start up, and showed up as a 'Z' drive, and worked great. The drive is fine as well, that was my first concern. I just connected to it from the File Browser app from the app store, and my other Apple devices, MPB, Apple TV, both see it. Just not my Windows 7 pc. This was my last resort after many hours of troubleshooting. Any help would be greatly appreciated, thanks in advance.

    Standard network troubleshooting.
    1. If you are using wireless plug in by ethernet.. never trust wireless.
    2. If the computer gets an IP from the Extreme.. ping the extreme in a command window.. does it respond? It must respond before worrying about all the rest.. Windows can auto decide it is now in a public location and ram up the firewall. Make sure your network location is home.. and if necessary turn off the firewall.. the TC must respond at least by IP.. name as well would be good.
    3. Open the Control Panel admin tools and make sure bonjour is running as a service. If it has failed stop and restart it.
    4. Try mounting the hard disk directly by IP in windows explorer.
    \\10.0.1.1 (replace with the actual IP address).
    5. If it is only wireless that is the problem.. you probably had some sneaky windows security patch install and that ruined everything.. windows patches are often 2 steps forward.. 3 backwards.. you can no longer be attacked because you no longer have internet connection!!

  • I want to use the Thunderbolt connection for an external hard drive

    I want to use the Thunderbolt connection for an external hard drive - so what port would I use on the MacBook Pro 13" for the display monitor.  Thank you!

    This is not the forum for MacBook Pro owners.
    You just need to reformat the drive in Disk Utility and erase the drive and have  Mac HFS.
    If you did need to use NTFS then you would not want -3G but Paragon NTFS for OS X x. 10.0
    Or buy something that isn't pre-formatted to Windows NT file system.
    First though make sure you have backups of your system. TimeMachine being used now?
    http://macperformanceguide.com/Mac-TimeMachine-drive.html
    http://www.apple.com/support/timemachine/
    Maybe cleanout some files you don't need.
    Install a larger notebook hard drive even.
    http://www.macsales.com/firewire has a lot of choice in Mac compatible drives and enclosures so you don't need to worry about Fantom not working at some point.
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.6_snow_leopard

  • I have an apple macbook pro late 2013 15" retina display crashing on me when i am connected to an external display?

    I got the following message after the crash, it happens a few times a day, my system is the base with 16gb ram late 2013 15" macbook pro retina.  it only happens when i am connected to an external display, I do have a converter from vga to displayport.  also, i run 4 different browsers in incognito mode as i do web testing and also have about 30 tabs open and excel and a few other apps open, not sure if this is what makes it happen or if it is the external display?  it is under warranty, so if you see anything below that may relate to the hardware i can bring it in and get it fixed.
    Anonymous UUID:       AA4AEC5A-B8ED-31D9-CF66-7F2AC3593105
    Wed May 28 09:37:14 2014
    panic(cpu 4 caller 0xffffff800acdbf5e): Kernel trap at 0xffffff800ac93f39, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000000030, CR3: 0x0000000007f08013, CR4: 0x00000000001606e0
    RAX: 0x0000000000000000, RBX: 0x0000000000000000, RCX: 0x0000000000023000, RDX: 0x0000000000000023
    RSP: 0xffffff81f8fe39d0, RBP: 0xffffff81f8fe3a10, RSI: 0x0000000000000040, RDI: 0x0000000000146d55
    R8:  0xffffff81f8fe3a68, R9:  0x0000000000000000, R10: 0x0000000000000000, R11: 0x0000000000000206
    R12: 0xffffff8030309920, R13: 0x0000000000000003, R14: 0x0000000000000000, R15: 0x0000000000000004
    RFL: 0x0000000000010282, RIP: 0xffffff800ac93f39, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000030, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff81f8fe3660 : 0xffffff800ac22fa9
    0xffffff81f8fe36e0 : 0xffffff800acdbf5e
    0xffffff81f8fe38b0 : 0xffffff800acf3456
    0xffffff81f8fe38d0 : 0xffffff800ac93f39
    0xffffff81f8fe3a10 : 0xffffff800acafdfe
    0xffffff81f8fe3a50 : 0xffffff800b0bb851
    0xffffff81f8fe3a90 : 0xffffff7f8c6e608d
    0xffffff81f8fe3af0 : 0xffffff7f8c70e24c
    0xffffff81f8fe3b30 : 0xffffff7f8c715fb2
    0xffffff81f8fe3b70 : 0xffffff7f8c715ddc
    0xffffff81f8fe3b90 : 0xffffff800b0cff0d
    0xffffff81f8fe3bf0 : 0xffffff800b0cdabf
    0xffffff81f8fe3d40 : 0xffffff800acb66a8
    0xffffff81f8fe3e50 : 0xffffff800ac26bf1
    0xffffff81f8fe3e80 : 0xffffff800ac139f5
    0xffffff81f8fe3ef0 : 0xffffff800ac1e043
    0xffffff81f8fe3f70 : 0xffffff800acc989d
    0xffffff81f8fe3fb0 : 0xffffff800acf3c76
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.20)[990E3F01-63C7-301C-83B2-40F786CA8F2 6]@0xffffff7f8c6e4000->0xffffff7f8c748fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[244D4E48-78E6-3369-8D76-285C66EF9BF4]@0xffffff 7f8b2be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[B889D3AB-CCC0-3FCD-A83E-D2E3E4CB537B]@0 xffffff7f8bac1000
    BSD process name corresponding to current thread: UserEventAgent
    Mac OS version:
    13D65
    Kernel version:
    Darwin Kernel Version 13.2.0: Thu Apr 17 23:03:13 PDT 2014; root:xnu-2422.100.13~1/RELEASE_X86_64
    Kernel UUID: ADD73AE6-88B0-32FB-A8BB-4F7C8BE4092E
    Kernel slide:     0x000000000aa00000
    Kernel text base: 0xffffff800ac00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 603272572446
    last loaded kext at 245583784123: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f8cc49000, size 65536)
    last unloaded kext at 427763147270: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f8cc49000, size 57344)
    loaded kexts:
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy          3.5.26
    com.apple.driver.AppleHDA          2.6.1f2
    com.apple.iokit.IOBluetoothSerialManager          4.2.4f1
    com.apple.driver.AGPM          100.14.15
    com.apple.driver.ApplePlatformEnabler          2.0.9d1
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.AppleIntelHD5000Graphics          8.2.6
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleThunderboltIP          1.1.2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.4f1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleCameraInterface          4.26.0
    com.apple.driver.AppleIntelFramebufferAzul          8.2.6
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleUSBCardReader          3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBHub          666.4.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.5.1
    com.apple.driver.AppleAHCIPort          3.0.0
    com.apple.driver.AirPort.Brcm4360          831.21.63
    com.apple.driver.AppleUSBXHCI          677.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.1
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.6.1f2
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.7fc2
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOSurface          91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.4f1
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.7.0d11
    com.apple.AppleGraphicsDeviceControl          3.5.26
    com.apple.iokit.IOAcceleratorFamily2          98.20
    com.apple.driver.AppleHDAController          2.6.1f2
    com.apple.iokit.IOHDAFamily          2.6.1f2
    com.apple.iokit.IOBluetoothFamily          4.2.4f1
    com.apple.driver.AppleSMC          3.1.8
    com.apple.driver.AppleGraphicsControl          3.5.26
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.4.1
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOGraphicsFamily          2.4.1
    com.apple.driver.AppleUSBMultitouch          240.9
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.6
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.6
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.iokit.IOUSBHIDDriver          660.4.0
    com.apple.driver.AppleUSBComposite          656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter          3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily          3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.4.5
    com.apple.iokit.IOUSBUserClient          660.4.2
    com.apple.iokit.IOAHCIFamily          2.6.5
    com.apple.driver.AppleThunderboltNHI          2.0.1
    com.apple.iokit.IOThunderboltFamily          3.2.7
    com.apple.iokit.IO80211Family          630.35
    com.apple.driver.mDNSOffloadUserClient          1.0.1b5
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBFamily          677.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          23
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.9
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2 GHz, 16 GB, SMC 2.18f10
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.63)
    Bluetooth: Version 4.2.4f1 13674, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1

    Hey SreeHarsha Vardhan,
    Thanks for using Apple Support Communities.
    Sounds like you are having trouble with the screen on your Macbook. If you are not getting anything on the screen, take a look at this article.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573
    Have a nice day,
    Mario

  • I upgraded to Maverick and now Time Machine will not connect to the external hard drive to back up files.  The external hard drive is a Western Digital "My Book Live" 2 TB.  How do I solve problem?

    I upgraded to Maverick and now Time Machine will not connect to the external hard drive to back up files.  The external hard drive is a Western Digital "My Book Live" 2 TB.  How do I solve problem?

    I also had problem accessing my WD MyBookLive after upgrading to Maverick.
    To resolve the problem, I used  Connect To Server (Cmd K) to specify the IP address.
    Then I enter a user id and password I created in the MyBookLive.
    You can also verify that you have admin access to the MyBookLive using Safari or Chrome.
    Just enter the MyBookLive IP address as the URL.

Maybe you are looking for

  • How to use Swing in a Web applicatrion

    Can you suggest me some good PDF or some good site for reading about using SWING in a Web Application. In our web application we plan to use JSP/Struts for the presentation layer. However there are a few screens that require some advanced UI like col

  • Why can't I log into Facebook on my iPad?

    Whenever I log into Facebook none of the post appear on the screen.

  • Firefox Flash crashes

    I've been having multiple FF crashes for more than 6 months - sometimes a week goes smooth, sometimes there's several crashes a day (I'm in QA and use browsers heavily). In some cases only Flash Player crashes but sometimes it's a whole browser sessi

  • No suitable driver when using MySQL in J2EE server

    Hi everyone I use MySQL's mm driver version 2.0.11 in conjuction with j2ee server. I added it thru deploytool->Tools->Server configuration->Data source->Standard following the instuctions in the help document, either un-jared or not, setting the clas

  • How to delete a random set of indizes from an array as fast as possible?

    Hello, My question sounds a bit like this thread but it isn't...    :-( http://forums.ni.com/ni/board/message?board.id=170​&message.id=129888&query.id=10689#M129888 When sampling position/force/resistance data I use a time triggered sampling approach