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

Similar Messages

  • I have updated to 6.1, even read messages turns back to unread from the service provider. What to do?

    I have updated to 6.1, even read messages turns back to unread from the service provider. What to do?

    my iphone told me to connect to itune or connect to wifi

  • 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

  • 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,

  • 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

  • When downloading video to Facebook I get message "Firefox is preventing you from reloading this page" and allow button doesn't do any good.

    when I try to download a personal video to Facebook I get the message " Firefox prevented this page from automatically reloading". I click the allow button which lets it start downloading but it only stays on 3-5 seconds then gives me the message all over again. At this rate it would take an hour to download a one minute video. I also get this message in other programs and I don't have a clue how to stop it. Help me please!!!

    Website servers can redirect more than once, so you may not see anything happen and may need to click Allow more than once.
    See:
    * Firefox/Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Tools > Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    * http://kb.mozillazine.org/accessibility.blockautorefresh
    * https://support.mozilla.com/kb/Options+window+-+Advanced+panel#General_tab

  • Get HTML (Dynamic Converter) converted content from external application

    As per requirement, External (Other java application) application suppose to get dynamic converted (HTML version) content from UCM.
    I am trying to execute GET_DYNAMIC_CONVERSION service using RIDC and web service client call.
    I dont see HTML content is coming as the result of GET_DYNAMIC_CONVERSION service.
    Would you please guide me in getting HTML converted document from external application.
    Please let me know, if you need additional details.
    Thank you in advance
    Edited by: 958795 on Sep 12, 2012 3:29 PM

    Hi Srinath,
    I have tried your response. Still i am getting hda data only, not HTML content.
    GET_DYNAMIC_URL service with fileUrl attribute is returning HTML content from UCM GUI (browser) but not from RIDC.
    Code i tried is:
    DataBinder dataBinder = idcClient.createBinder();
              dataBinder.putLocal("IdcService", "GET_DYNAMIC_CONVERSION");
              //dataBinder.putLocal("dID","1832");
              dataBinder.putLocal("dDocName","ECMPS5_002024");
              dataBinder.putLocal("IsJava","0");
              dataBinder.putLocal("RevisionSelectionMethod","LatestReleased");
              dataBinder.putLocal("DCViewFormat","WebViewable");
              // execute the request
              ServiceResponse response = idcClient.sendRequest (userPasswordContext, dataBinder);
    InputStream istream=response.getResponseStream();
    InputStreamReader isr = new InputStreamReader(istream);
    BufferedReader br = new BufferedReader(isr);
    String line = null;
    while ( (line = br.readLine()) != null)
    System.out.println(line);
    }

  • My ipod 6th generation does not show in control panel on computer Windows 7.....also when I try to download from itunes, I get message network cannot make connection.  can you provide me help?

    My ipod 6th generation does not show in control panel on computer Windows 7....also when I try to download from itunes, I get message saying network cannot make connection.  Can you help me with these issues?

    Hello jrsmallwood,
    I've a couple of articles that should get you back on your way!
    iPod not recognized in 'My Computer' and in iTunes for Windows
    http://support.apple.com/kb/TS1369
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    Allen

  • How do I get iTunes songs which were downloaded from external back-up drive to play on new computer and is there a way to get my play lists back?

    When I try to play a song from my re-installed iTunes library, I get the error message:  "Song xxx could not be played because original file could not be found.  Would you like to locate it?" > "Locate" or "Cancel."  When I click on "Locate" I can't figure out how to get the song to play from any of the places that were "located."  The path is C:\users\Janet\libraries\music\iTunes
    However, iTunes songs chosen from my library will play in iTunes (current version) when I have the external back-up drive plugged in!  I recently copied my backed-up iTunes library from my external back-up drive to a new computer.
    Most of the songs, but not all, magically appear in Windows Media Player and I can play those just fine. 
    I can see my iTunes library in the newest version of iTunes, recently downloaded to new computer, but can't play songs without connecting to the external back-up drive - so maybe there is something else on that external drive that needs to be on my C: drive? 
    I am using an HP Pavillion Notebook, Windows 7, 64-bit.  My previous computer was Windows Vista.  Before Vista, I had XP. 
    Back when I had XP, I wanted to purchase some songs to download to my computer. Because iTunes had the ability, I used it to create a massive library of songs, most of which were ripped from my CDs.  I don't have an iPod and iTunes worked fine for creating playlists and then burning them to CDs. 
    Also, I'd like to know if there is a way to get back my playlists.
    And another thing - in the older version of iTunes, there was a folder in the lists on the left-hand side of the screen where I could click to see all the songs I had purchased.  I'd like to get that ability back if possible.
    In hindsight, iTunes was probably not the best choice for me to build my music library in a Windows operating system, but it seemed to be the best choice at the time.  I really wish I could convert all the songs to mp3 format.
    I have been working with computers since the days of DOS, black and white screens, and no mice.  The first computer I bought for my own use at home was a Mac and it had "Flying Toasters" as a screensaver.  (I miss that screensaver.)  It did not have a tower and I believe they called it a laptop, even though the thing was as big as a suitcase and probably weighed around 30 pounds.  However, I am by no means a computer expert.  In other words, pretend you're trying to tell your mother how to do what I am asking. =)
    Many thanks in advance to anyone who can help me.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • Get messages in MQe queue sent from MQ (MQeMQMsgObject)

    Hi there,
    I have successfully sent messages from MQ to MQe in Java and I can see the
    messages sitting on the queue using MQe_Explorer. And the message type is
    MQeMQMsgObject. How can I get these messages back and display the messages in
    Java? Is there any sample code around? Thanks.
    M.

    Oh sorry. I found my solution. I should cast the object to MQeMQMsgObject instead of new one and everything is working fine now. Thanks.
    Mandy

  • Why don't I get Messages notifications any more?

    I'm running iOS7's most recent OTA Beta and at some point my messages stopped notifying me.  I've checked my notification center and it's setup right, I've changed settings and still no love.  Verified DND is not on, rebooted repeatedly, killed the process, stood on one leg...
    I get txt/imsg/sms messages but no notifications or badge displays until I open the app THEN it shows me I have unread messages.

    If you're using the Beta version, you'll still need to ask in the developer forum.

  • How to get iMovie 11 to record sound from external mic

    I'm using iMovie 11 and have an external video camera attached (this works fine) and an external high quality USB mic.The mic shows in the Systems Preferences and is checked.  The mic also shows in the iMovie menu and is checked. However when I import video, iMovie defaults the sound track to the internal mic.  Can anyone tell me what the problem might be. I'm using OS10.6.8 on Powerbook Intel Core2

    Hi
    You must do this the right way.
    • EXTERNAL Hard disk - MUST - be Mac OS Extended formatted
    Nothing else will do - for VIDEO !
    • The Moving of Event's and Project's - Must be done within the iMovie Application
    Folders named iMovie Event's and iMovie Project's - can not be moved via Desktop/Finder - as links back to iMovie will break and can not be mended.
    My general note on this:
    Moving Event's and Project's
    Connection - Either connect one Mac in Target mode to the other via FireWire. Or use an external hard disk !
    (Target-Mode - Start one Mac e.g. laptop - BUT keep T-key down during full up-start - Now a FW-symbol is jumping around the screen and it will work as an external hard disk when connected to the other Mac)
    A. The External Hard Disk - MUST BE - Mac OS Extended (hfs) formatted to work for Video. UNIX/DOS/FAT32/Mac OS Exchange works for most other things but not for Video whatever program is used (iMovie or FinalCut)
    B. Should be a FireWire one as USB/USB2 performs badly to me and especially when filling up
    C. Do never Move or Alter any folder named
    • iMovie Event's - or -
    • iMovie Project's
    on DeskTop/Finder - as this will result in iMovie losing connections to them and repair can be anything from hard to impossibly.
    D. Moving and Copying must be done within iMovie application and Events to Events - and - Project's to Project's.
    E. Moving Project's to Event's - Do not work for me - I have to export project as a QuickTime movie then Import this into Events.
    Event's window can show two faces
    Like this
    or like this
    from one hard disk Event - You can move it to the other hard disk
    You can not (at least not me) move Event to Project or other way around only
    Event to Event and Project to Project
    Yours Bengt W

  • I am trying to get messages on ipod touch 4, from the last 6 weeks as it was lost

    my daughter lost her ipod for about 6 weeks , she now has it and we thought all the messages from this time would come up but they have not , how do we find them?

    If they are not on the iPod then they are gone.

  • What is the best way to get/change data in R/3 from external interface?

    Hi SAP gurus,
    I have a problem to know what is the best technology to access and maintenance all SAP functionality and data too in R/3 systems.
    Anyone know if connectors (.NET or JCO) are the only solution to manipulate all SAP system data or exist other way?
    One thing more, what is the best connector, with more functionality?
    E.g. The screen painter was made in C++ and is executed by user event in R/3 system, so would like to know if it's exist any way to do the same but replace the screen painter to another custom application?
    Regards

    Hello Vitor
    Not all functions and data are externally accessible. Only those business objects (e.g. like sales order, customer, material) for which BAPIs are available (transaction BAPI ) can be accessed via RFC.
    Regards,
        Uwe

  • Getting Internal Error 500 on redirect from the Identity Provider(Google)

    Hi All,
    The issue happens when my web application is trying to obtain access token from the ACS using Google as Identity Provider.
    The redirect to the Google authentication page works. It is possible to authenticate an user. However, after getting an authentication, accounts.google.com redirects the GET request to the redirect URL specified in the authentication request(mycompany.accesscontrol.windows.net/v2/openid).
    And this request fails with HTTP status 500. The error details in the response body does not point to the reason of the problem:
    An error occurred while processing your request.
    HTTP Error Code:       500                 
    Trace ID:              a1de23aa-b142-49e1-8e83-ee737ab61984                 
    Timestamp:       2015-04-02 06:26:48Z
    Could you please advice?
    Thank you,

    Hi Oleksiy,
    Thanks for posting here!
    I hope you are not using Open ID 2.0, as you might aware of Google moving to OpenID Connect, there is a requirement that you explicitly register your ACS Namespace as application with Google.
    Token request failures that return HTTP 500-series error codes typically respond to retries. In some scenarios, the client is an application or service that makes automated requests to ACS. In other scenarios, such as web-based federation that uses the WS-Federation
    protocol, the client is a web browser and the end-user must retry the operation manually.
    For more information see this link:
    https://msdn.microsoft.com/en-us/library/azure/jj878112.aspx
    Also you might want to refer this link:
    https://msdn.microsoft.com/en-us/library/azure/gg185976.aspx
    Hope this helps!
    Regards,
    Sadiqh

Maybe you are looking for

  • Pressing the button "Shift b" doesn't work

    it been less then a week since i brought my macbook pro and i realize that pressing the button "shift b" doesnt capitalize the letter "b" i have to press "caps lock b" in order to get the capital 'B". Doesnt seem like a big deal but i just bought com

  • Can Mac mini boot into 64-bit kernel

    http://macperformanceguide.com/SnowLeopard-64bit.html says: To determine if your Mac has 32-bit or 64-bit firmware, copy/paste the following command into Terminal: ioreg -l -p IODeviceTree | grep firmware-abi ...output: | | "firmware-abi" = <EFI64> A

  • Problem executing RMI Methods Netbeans

    Hi everyone! I�m using a system Servlet+applet that communicate by RMI with Netbeans. The remote object, the stub and the binding are correctly created at the servlet. At the applet the reference to the remote object is ok too. The problem appears wh

  • Adobe Air Download Help

    All attempts to download produce the following message: ' could not find mmdladmin.corp.adobe.com'. How do i circumvent this block please?

  • Safari and Traditional Chinese Fonts

    Quick question...Why isn't Safari 3.0.4 rendering Traditional Chinese text on some websites anymore? The older Tiger version rendered everything beautifully. Specifically having problems with pull down tabs with hyperlinked text within. Having no pro