How to check the update number for OpenMQ

Hi,
I have recently installed glassfish 2.1.1, which also comes with OpenMQ 4.4 .
But how do I find out what is the update number of OpenMQ ?
Currenlty, it shows me following
com.sun.messaging.jmq Version Information
     Product Compatibility Version:          4.4
     Protocol Version:               4.4
     Target JMS API Version:               1.1
I want to find out if bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6961586 has been fixed in this version or not. I still see the same behavior as OpenMQ 4.3.
According to the bug, it is fixed in OpenMQ 4.4u2p1(b01)
Bug ID:      6961586
Votes      0
Synopsis      msgs left in queue not delivered to any consumer after MT consumers consume 1 msg then close repeatl
Category      jmq:broker
Reported Against      
Release Fixed      4.5(b_11), 4.4u2p1(b01) (Bug ID:2195892)
State      10-Fix Delivered, Verified, bug
Priority:      3-Medium
Related Bugs      6870832 , 6965092 , 2195900
Submit Date      16-JUN-2010
Thanks
Vineet

Since this is not a supported procedure I can't point you at you at detailed documentation and don't want to get drawn into writing any. But basically you need to
replace the files in imq/bin (under your GlassFish 2.1.1 installation) with the ones in mq/bin (under your GlassFish 3.1 installation)
replace the files in imq/lib (under your GlassFish 2.1.1 installation) with the ones in mq/bin (under your GlassFish 3.1 installation)
unjar imqjmsra.rar (which is in mq/bin under your 3.1 installation) into lib/install/applications/jmsra (under your GlassFish 2.1.1 installation), thereby replacing the files already there.
NIgel

Similar Messages

  • How to get the delivery number for the sales order

    hi
    how to get the delivery number for the sales order

    Hi,
    1. IN VA03, enter the sales order and click on the document flow button. From there you can check the delivery document.
    2. In SE11, enter VBFA(Document flow) table and enter the sales order in VBELV field and in VBTYP_N field enter 'J' to specify that you want to check if there is already a delivery document for that sales order.
    Hope it helps...
    P.S. Please award points if it helps...

  • How to get the document number for a ware house order.

    Hello gurus,
    how to get the document number for a ware house order. [if GI is posted refering that WH order] .. is there any report?
    Thanks in advance

    There are several options.  When you post a Goods Movement, you can use LB12 -display Transfer Requirement for material document or LB11 Display TR for material.
    Depending on how your system is set up you may have gotten a Transfer Order automcatically.  In this case you can look at LT24 - Transfer Order for material.

  • How to check the Statistics generated for a table through DBMS_STATS.

    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekhar

    Rajasekhar wrote:
    Hi,
    How to check the statistics generated for a Table through DBMS_STATS.GATHER_TABLE_STATS procedure ?
    Please let me know.
    Thanks !
    Regards,
    Rajasekharquery ALL_TABLES

  • How to check the tran code for specific activity.

    Hello friends ,
    could you please let me know how to check the tran code for specific activity . AS in table , i can check , what transaction does what ? But now i need to check the transaction for specific activity .
    E.g , For Administrator workbench , there is transcation like RSA1 .
    thanks in advance
    Regards

    Hi,
    try the TSTC table with SE16.
    Hope it helps,
    MG

  • I want to find out how to retrieve the serial number for my product. i can't find it in my email

    i want to find out how to retrieve the serial number for my product. i can't find it in my email

    Find your serial number quickly

  • How to check the Datasource name for Virtual cube

    Hello Experts,
                          I have a report which is built on one multiproviider for which we are getting balance sheet data reporting on company code,enduser told us that he wanted to  see the data on plant level...
    The problem here is that I have checked the data flow for the multiprovider,It is showing as getting data from virtual cube.
    So,from there It is not showing the datasource and infosource under it(under virtual cube)..so how can I check the datasource name for it,so that I can go and enhance the datasource in case the plant(WERKS) is not there
    thanks
    reddy

    Hi Friend,
    go virtual cube lavel and see the data flow with "downward & upward" option in RSA1
    Go to RSA1
    Select the Virtual cube> right click > display data flow> select "downward & upward"
    it may help you

  • How to generate the batch number for group of records

    Hi All,
    requirement: i have created one sequence to generate the batch numbers.i have to get the nextval of the sequence for batch number (this column is not part of the table. its dynamic column/alias column) only for every 50000 records of a table.
    detail description:
    for example, if i have 10 records in a table. And, if i want to generate the batch number for every 2 records, then the output should look like belo.
    batch-number qty
    1 10
    1 20
    2 30
    2 40
    3 50
    3 60
    4 70
    4 80
    5 90
    5 100
    Please help me on this. Please let me know if you need more info.

    one more update on the above request. this has to be done using SQL query only.

  • How to change the port number for deployment in JAVA Studio Enterprise 8?

    Hi!
    Yesterday i downloaded this new sun java studio enterprise and found it mind blowing.
    Now i find that all my previous applications which were running on port 8080 can't be run on sun java studio enterprise(sjse) 8.
    Can anyone tell me how to change the port number on this software so i won't have to edit all my applications?

    http://docs.sun.com/source/819-0080/install.html
    In the Admin Configuration page (or at the command line), enter the following:
    Admin User Name�Name of the user who administers the server
    Password�Admin user�s password to access the Admin Server (8-character minimum)
    Admin Port�Administration port number for initial server instance
    HTTP Port�Port number to access the default server instance
    HTTPS Port�Secure port number to access the default server instance

  • How to get the week number for a given date?

    hi guys,
    what is coding to get the week number for a given date?
    For example, 1/1/05 is week 1. then 8/1/05 is week 2.

    The second parameter to pass to the method is supposed to be one of the month constants JANUARY - DECEMBER. It happens to be that their numerical values are 0-11, not 1-12, so your "12" refers to the "13th" month of the year.
    givenDate = new GregorianCalendar(2003, Calendar.DECEMBER, 31);
    If you want to construct dates and times from strings like you seem to be, look into SimpleDateFormat http://javaalmanac.com/egs/java.text/ParseTime.html
    (even still I got WEEK_OF_YEAR as 1 which is true but not really what I expected, excuse my previous reply but I wanted to check the facts before posting this)

  • After completing MSS PCR, how to check the updated data in R3

    Hi,
    After completing and submitting the MSS PCR, How do I check the updated data in R3?
    Thanks
    Reva

    I got the answer.

  • How to Enter the Mobile number for Business Partner

    Dear CRM ABAPers,
               I am creating the Business Partner Using the BAPI "BAPI_BUPA_CREATE_FROM_DATA".
    But I am not able to Enter the Mobile number for the Business Partner.Please help me how to Do this
    It is very Urgent Requirement.
    Thanks & Regards,
    Ashok.

    Hello Ashok,
             Using the same BAPI , set the field R_3_USER of the tables parameter TELEFONDATA to 3 to save the mobile number.
    Hope it helps.
    Thanks,
    Sriram S

  • HT201472 how to check the IMEI number

    my iphone was been stolen,it 's a second hand mobile,I forget the IMEI numer but I have icould passport on the mobile,how can check the IMEI then find back my Iphone

    do you still have the original box - its printed on the back of the box

  • How to get the serial number for bundled software (sony vaio notebook)

    Hi, bought a laptop from sony (vaio fit (multiflip) 11a and it had photoshop elements preinstalled. I want now a clean, fresh windows and will so reinstall windows from a clean image. but then i wont have photoshop elements, so i need the serial number for my preinstalled photoshop elements. i registerd it online via my adobe id, but it wont show up there. i could extract a key, with belarc adviser (software) but this key does not work if i try to download the trial from adobe.com and try to register it with this key. also i tried to ad new software at my online adobe.com account, with this serial, and it said "already registered" but it wont show up in my account. Whats wrong here?
    Will send the serial/key if needed by pn.
    Greetings
    Immscha

    Is the key you’re trying to use for the same version of PSE that you have installed on your laptop, i.e. 10, 11, 12?
    Do you see anything on your Adobe account for registered software?  Be aware that the page takes some seconds or 10s of seconds to populate with your products so will look empty for a while.  This is the page I'm talking about:
    https://www.adobe.com/account/my-products-services.html

  • How to deactivate the serial number for photoshop elements that is not installed or available?

    I have a version of Photoshop elements that has been uninstalled and is no longer available to reinstall.  When I uninstalled from an old computer, I failed to deactivate the serial number.  How can I do that without reinstalling?
    Thanks
    keithz

    Wow, I tried the "chat" option and waited for 30 minutes....no one ever helped.....so I called a customer service number for the creative club option and they promised to put me though to someone who could deactivate my product.....waited another 30 minutes on hold.  So then I called the sales department and wow, just as I thought......someone took my call right away.  (Please note that the computer that the software I am trying to deactivate has been reformatted and I am unable to deactivate in that manner).  I asked the poor sales rep, why on earth would I spend hundreds of dollars for new software when the only people who you can get to help you are the sales people.  I think I will stick with free open source applications........this is so not worth it......

Maybe you are looking for

  • Parameters and report on the same page

    I am new to HTML_DB. I would appreciate your help with the following: I have html page with items(parameters) and report on the same screen. Items are: Customer: Select list with Submit Invoice No.: Select list - Populated invoices numbers for the se

  • Shipping ATO order PO directly to customer's SHIP TO site

    Hi, Initially posted in Order Management forum but didn't receive any answer. Posting it here since the question involve both PO and OM - For ATO sales orders, my customer prefers to use SHIP TO address defined in the sales order as SHIP TO address o

  • How can I download the trial version of Adobe Premiere Pro CS4

    Can anybody tell me how can I download Adobe premiere Pro CS4 trial version for windows 7 English.

  • Internal oder and Cost Center

    Hi, i need to know , how many internal oder is in a center ? Please advise if you can pull list of internal oder which assigned to cost center> thanks a bunch peace

  • JavaWebServicesDeveloperPack(EA2)-FATAL ERROR; ErrorNumber=10500

    I have installed your Java Web Services Developer Pack - Early Access 2(Windows). When I tried to query and/or add organization in my registry server(local) through the registry browser, got an exception for with a fatal error.The error number=10500