JMSAdapter for MQSeries - Configuration

Hi guys - quick question (and I'm following the OracleAS Adapters 10.1.3.1.0 manual here). I'm not overly familar with MQ, so some of this may be obvious...
Exactly which (of the many in the installation tree) oc4j-ra.xml and application.xml files do I need to edit to incorporate the <connector-factory> and MQ jar location recommendations described in the manual for configuring for IBM WebSphere JMS?
Also can someone tell me the relationship of the QueueManager=QM_test setting in the sample Factory Properties step to the rest of the configuration - i.e what is QM_test ?
Thanks
Dennis

Hi,
I am trying to configure the JMSAdapter for MQSeries.
I have added the mq.jar and mqjms.jar to the application.xml. But still I keep getting the error that
Unable to instantiate connection factory. JMS adapter was unable to look up the connection factor com.ibm.mq.jms.MQQueueConnectionFactory neither through JNDI nor instantiate it as a Java class
Please examine the log file to determine the problem.
[Caused by: com.ibm.mq.jms.MQQueueConnectionFactory not found]
Did u run into this issue and if yes how did u resolve it. Will appreciate your help.
Regards,
PB

Similar Messages

  • JMSAdapter for MQSeries 6.0 (JMSException)

    Hi,
    I'm used JMSAdapter for connect to queue MQSeries 6.0.
    And i get error : javax.jms.JMSException: MQJMS2005: failed to create MQQueueManager for 'localhost:QMTEST'
    MQSeries and BPEL PM place on my localhost. I write oc4j-ra.xml from tutorial:
         <connector-factory location="eis/Jms/JmsAdapter" connector-name="Jms Adapter">
              <config-property name="connectionFactoryLocation" value="com.ibm.mq.jms.MQQueueConnectionFactory"/>
              <config-property name="factoryProperties" value="QueueManager=QMTEST;HostName=localhost;Channel='G.TO.D';TransportType=1;"/>
              <config-property name="acknowledgeMode" value="AUTO_ACKNOWLEDGE"/>
              <config-property name="isTopic" value="false"/>
              <config-property name="isTransacted" value="true"/>
              <config-property name="username" value="MUSR_MQADMIN"/>
              <config-property name="password" value="welcome"/>
         </connector-factory>
    Has anybody experience with the IBM MQ Series adapter ?
    Evgeniy

    We have the following problem connecting Oracle BPEL process to IBM MQ.
    Should we re-configure MQ/BPEL process/Oracle BPEL engine configuration?
    Any help is greatly appreciated
    Environment
    Versions:
    Oracle BPEL 10.1.2
    IBM MQ - v 6.0 trial version installed locally on Windows machine
    Oracle BPEL and MQ are on the same machine
    We followed tutorial on Oracle BPEL web site:
    Tutorial 9 : MQSeries Queue integration through the Oracle AS Adapter for JMS
    http://www.oracle.com/technology/products/integration/adapters/pdf/adapter-Tutorial9-MQSeries-QueuetoQueue.pdf
    MQ configuration
    Created MQ Manager using wizard supplying default values
    Created two queues
    Problem
    When deploying BPEL process the following error occurs:
    javax.jms.JMSException: MQJMS2005: failed to create MQQueueManager for 'tanorw-medveal:MS_BPEL_Queue_Mgr'
    Also this problem is seen when process is deployed and BPEL engine starts.
    Here is extract from 0ra4j0ra.xml:
         <connector-factory location="eis/mqseries/Queue" connector-name="Jms Adapter">
              <config-property name="connectionFactoryLocation" value="com.ibm.mq.jms.MQQueueConnectionFactory"/>
              <config-property name="factoryProperties" value="QueueManager=MS_BPEL_Queue_Mgr;TransportType=1;HostName=localhost;Port=1414;Channel=sc1"/>
              <config-property name="acknowledgeMode" value="AUTO_ACKNOWLEDGE"/>
              <config-property name="isTopic" value="false"/>
              <config-property name="isTransacted" value="true"/>
              <config-property name="username" value="mqtest"/>
              <config-property name="password" value="password"/>
    I created MQ Server Connection Channel manually on MQ. TCP Port for that channel 1414

  • Reg: Is it possible in weblogic 5.1 or 6 to get Transaction suport for MQseries & Oracle

              Hi
              I would like to know whether weblogic 5.1 or 6 provides support in a single transaction,
              transaction support for both oracle and MQseires, if so where can i find suitable
              documentation on this topic
              with regards
              Priya
              

    The answer is definitely yes, starting in WLS 6.0, with
              some two reasonable limitations.
              There are limitations are the following:
              1. It must be on the server side. The registration of the XAResource
              can't happen in a client. It must happen in a startup class
              or EJB or servlet, etc. You can start it from a client (invoke
              an EJB or servlet) but the resource work must be
              on the server side.
              2. MQSeries can't be included if it is being used to drive a
              Message Driven Bean. Because the message is passed
              from MQ Series to WLS outside of a transaction, after
              which WLS will start a transaction (if so configured) and
              pass it to the MDB, the MQ Series message is not part
              of the transaction. The JavaSoft specs don't handle this case.
              For WLS JMS, this works because we have defined such
              an interface and implemented it. At least one other vendor
              understands the importance of having this feature and is
              interested in implementing it (it's not IBM).
              So to do what you want, it is necessary to:
              1. Use the XAResource version of the JDBC driver for Oracle.
              WLS is smart enough to look at the driver and see if it
              implements the XAResource interface and automatically
              register it as a resource. This has been documented
              in this newsgroup already or see
              http://e-docs/wls/docs60/adminguide/jdbc.html#1075694.
              2. Register the XAResource interface for MQSeries programmatically
              in the application. The code to do this has been posted
              at the BEA developer site for a few months in an article
              entitled "Using JTA Transactions to envelope WLS JMS and
              IBM MQSeries" (could I be more explicit), located at
              http://developer.bea.com/docs/jmsjta.jsp. It references
              another document that has more code, describing how to
              plug in a "foreign" (non-WLS) JMS provider, of which MQSeries
              is one, in a non-transaction manner (you need to do that
              first and then just add the resource registration) - see
              http://developer.bea.com/docs/jmsproviders.jsp.
              All of the necessary code is included in the documents (including
              how to download and install the Java libraries for MQSeries).
              Several people have told me that they have been able to
              use this as a starting place for their applications.
              You might also want to look at the JMS FAQ at
              http://developer.bea.com/docs/jmsfaq.jsp.
              In 6.1, support is added for importing foreign transactions.
              That means that in 6.0, WLS can drive a transaction with
              WLS JMS, Oracle, and MQ series, with WLS being the
              driving force. In WLS 6.1, a non-WLS transaction manager can
              drive a transaction that includes (transactionally infects)
              WLS resources (like WLS JMS).
              There are no white papers that I know of in this area and I haven't
              tested it myself (the goal is to have someone try out
              having WebSphere drive a transaction with WLS resources, soon).
              "Priya" <[email protected]> wrote in message news:[email protected]...
              >
              > Hi
              >
              > I would like to know whether weblogic 5.1 or 6 provides support in a single transaction,
              > transaction support for both oracle and MQseires, if so where can i find suitable
              > documentation on this topic
              >
              > with regards
              > Priya
              

  • Bridge Adaptor for MQSeries

              I'm trying to utilize a message driven bean to get messages off queues in MQSeries.
              I read the documentation to setup a messaging bridge and it seems fairly straightforward,
              but I'm having trouble finding a bridge adaptor for MQSeries. The IBM sight is like
              trying to walk through a maze. Any pointers to a bridge adaptor or help would be
              grealy appreciated.
              

    The bridge does exist in 6.1SP1 and 6.1SP2, but it is not officially
              supported until 6.1SP3. To use the bridge in 6.1SP1, you have to
              download the adapters from:
              ftp://edownload:[email protected]/pub/downloads/MessagingBridge61.zip
              Dongbo
              "Chuck Kiefriter" <[email protected]> wrote in message
              news:[email protected]...
              >
              > If I am using 6.1 SP3, can I not use the messaging bridge piece to talk to
              MQSeries?
              > We are using 6.1 SP1. If so, I guess I may have to get the 6.1 SP3
              installed.
              >
              > "Zach" <[email protected]> wrote:
              > >BEA provides a messaging bridge as part of 6.1 SP3 (though there were
              some
              > >packaing problems there), and in 7.0. It supports MQSeries out of the
              > >box. You configure it using the console. There is a white paper in
              this
              > >newsgroup on doing this (search for "Using Foreign JMS Providers"). The
              > >short of it is that you need JMS for MQSeries. We do not currently
              provide
              > >a native MQSeries adapter.
              > >
              > >_sjz.
              > >
              > >"Chuck Kiefriter" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> I'm trying to utilize a message driven bean to get messages off queues
              > >in
              > >MQSeries.
              > >> I read the documentation to setup a messaging bridge and it seems
              fairly
              > >straightforward,
              > >> but I'm having trouble finding a bridge adaptor for MQSeries. The IBM
              > >sight is like
              > >> trying to walk through a maze. Any pointers to a bridge adaptor or
              help
              > >would be
              > >> grealy appreciated.
              > >
              > >
              >
              

  • Stock Report for Variant configuration

    Hi Experts,
    Request your help to get the following information.
    We have a material which are packed in to multiple packing modes. Inorder to ease the selection of packing mode in sales order, we are thinking of introducing variant configuration. I.e all the packed materials will be created as variants in SAP and the sales order will be created for the configurable material. When the proper characteristic is selected the material will be automatically replaced by the variant.
    But the requirement is to see the stocks of all the varaints along with the configurable materials as the header. For eg. Material A is having variants A1, A2 & A3. The sales quantites are 25, 30 and 35 respectively.
    In any of the standard report, can I see the sales of these along with the total sales of config mtl A as 90
    Please guide.
    Thanks & Regards
    Prathib

    Hi Prathib,
    On my last project, we define material code with the same code at the beginning like you do A1 A2 A3 (for variants) and AC for example for configurable material. Then for stock report you can use MB52, in material field just write A* it will show you stock from material start with code A. But make sure you define material type and material group for selection wisely. It works for me. Now depends on how well you define your structure.
    Regards,
    Arman

  • What values to place in signer.properties file for Webutil configuration

    Hi. I'm not sure of what value to place in JDK_HOME in signer.properties for Webutil configuration. My current settings are:
    JDK_HOME=D:\ora9i\jdk
    JINIT_HOME=C:\Archivos de programa\Oracle\JInitiator 1.3.1.13
    #Certificate settings:
    # These are used to generate the initial signing certificate
    # Change them to suite your organisation
    DN_CN=Product Management
    DN_OU=Development Tools
    DN_O=Oracle
    DN_C=US
    JAR_KEY=webutil
    JAR_KEY_PASSWORD=webutil
    Is JDK_HOME the jdk for oracle or SDK for windows machine(how to find?)?. Also how do i repeat the process of makecert and signing of webutil.jar and jacob.jar?. If i try to repeat this process I get the following warnings or error?
    Makecert:
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil> already exists
    Certificate created...

    JDK_HOME is just the location of a Java distribution with Keytool in it - have a look at the signer batch file and you'll see how each variable is used. Also if you run keytool from the command prompt it will show you the commands to delete and existing Key or list the keys that are currently stored.

  • Change Sales Order Item Category for a configurable material with config

    Hi
    My problem is related to Variant configuration. We have a requirement that depending on the ordered quantity and required replenishment lead time the business scenario for a configurable will get changed. that means some characteristics value selection will trigger the business scenario to be followed, whether it will be Make to Order, Buy to Order or 3rd Party drop-ship order. and the business process to be followed will be triggerd by the Item category to be selected in the sales order line item.
    so , the requirement is to change the item category of the sales order line item with the carecteristiocs value selection in the  variant configuration screen. As we know, when ever the material is getting entered in to the sales order line item, depending on the Item category group in the material master data the item category in the sales order line item used to get determined. after that when we are selecting the characteristics value set in the variant configurator, systen shoud chage the already determined item category of the sales order.
    Hope I have clearly furnished my problem and requirement. Can anyone show me the way to fulfil my requirement. Any further clarification requirement to understand and resolve the issue is cordialy appriciable.
    Regards'
    Som

    Thanks Krishna
    But as u mentioned the way to make the non editable field into editable one. But that will applicable in case of manual chage. But can it be applicable for changing the Item category by using Object dependency??
    Actually in our scenario, for some of the item category that field in the sales order line item remains editable. we have tested with that also. Once the item category is getting determined, object dependenct is not able to modify the item category in the sales order line item.
    I have explores something, if I include PSTYV field in VCSD_UPDATE, will it work? VCSD_UPDATE is the table that contains field of sales order can be modified with the usage of object dependency.
    Please let me know ASAP.
    Regards
    Som

  • Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note)

    Hi Experts
    I was looking for Customisation settings for VC Configuration copy from Purchase order to GRN(Goods Receipt note),
    Please share.
    Regards
    Sandeep

    Hi Ritesh
    Thanks for your reply,
    I checked  both of these transaction  we need to select 3 option Characetrstics frm configuration(prio) and classification. I will check that, I had one more question
    In PO VC configuration is called for class type-300  and  in GRN VC configuration  is called for class type -023. How it will fetch the variant class configuration to Batch class configuration?
    Once we had faced some issues the copy from PO to GRN was happening for some batches & some batches it was not happening.
    yes we have activated Mill Functions in our ERP box.
    Regards
    Sandeep

  • Sales order for a configurable material

    Hi all,
    While creating a sales order for a configurable material i'm encountering an incompletion log saying enter gross weight & net weight. Even after i enter some value in the respective fields, i'm still thrown with the same incompletion & i'm unable to complete the order. In the material i find that the gross weight, netweight, volume are maintained as "zero". How do i resolve the problem??should the material master be changed??
    Thanks and regards,
    Deepak Prasanna S

    hi,
    If ur not having access to change teh master data in client system, Then u have to feed data manually in the sale order
    VA02/VA01->go to item details->in shipping view u can feed the details.
    1.But in ur earlier posting u told even after filling the details, the system pops up the message.Revert waht is error r u getting.
    2. But is advisable to  change in material master since each time while creating sale order u can't feed the input
    regards,
    Arun prasad

  • Real time Procedure for new configuration

    In real time what is the procedure for new configuration like new payment term. I want procedure in real time
    . thanks , Sravas   ...

    Hello,
       As long as your S2000 has an USB ADD, you will be able to use it with OmniDriver-SPAM.  The HR2000 will work fine.
      Here are two good videotutorials that will show you how to use OmniDriver-SPAM with its LabView dll to acquire spectra:
    http://spectroscopytv.com/2009/02/02/omnidriver-la​bview-part-1/
    http://spectroscopytv.com/2009/02/02/omnidriver-la​bview-part-2/
      Hope this helps,
    R

  • JMS adapter for MQSeries: Changing from MQ5.3 to 6.X libraries

    Hi,
    Can someone point in the direction of documentation as to how I would migrate/update a BPEL 10.1.3.5.0 environment using JMS adapters for MQSeries 5.3 to use new libraries for MQSeries 6.x.
    In a test env I have located the following, but I am not sure now to proceed.
    [bpel@omv2rrm2 5.3]$ pwd
    /opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/oc4j_soa/shared-lib/oracle.mqseries/5.3
    [bpel@omv2rrm2 5.3]$
    [bpel@omv2rrm2 5.3]$ ls -l
    total 2124
    -rwx------ 1 bpel dba 352652 Apr 17 2008 com.ibm.mq-5.3.jar
    -rwx------ 1 bpel dba 1798896 Apr 17 2008 com.ibm.mqjms-5.3.jar
    [bpel@omv2rrm2 5.3]$
    ...and...
    [bpel@omv2rrm2 config]$ pwd
    /opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/oc4j_soa/config
    [bpel@omv2rrm2 config]$ cat server.xml
    <?xml version="1.0"?>
    <application-server xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/application-server-10_1.xsd" localhostIsAdmin="true"
    application-directory="../applications"
    check-for-updates="adminClientOnly"
    deployment-directory="../application-deployments"
    connector-directory="../connectors"
    schema-major-version="10" schema-minor-version="0" >
    <shared-library name="global.libraries" version="1.0" library-compatible="true">
    <code-source path="../applib"/>
    <import-shared-library name="oracle.ws.jaxrpc"/>
    </shared-library>
    <shared-library name="oracle.mqseries" version="5.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/oc4j_soa/shared-lib/oracle.mqseries/5.3/com.ibm.mqjms-5.3.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/oc4j_soa/shared-lib/oracle.mqseries/5.3/com.ibm.mq-5.3.jar"/>
    <import-shared-library name="oracle.ws.jaxrpc"/>
    </shared-library>

    Just upgrade your SOA to 10.1.3.5.0 and then point to the newer MQ jars in those 2 files.

  • Is there any limitation of firmware or hardware for QoS configuration (4400 controller & 1252 AP's)

    Hi Experts,
    Before proceeding for adding AP model 1131 and 1252 into my set-up , I need to know whether any limitation of firmware or hardware for QoS configuration in wireless set-up .
    I have 4400 controller and 1130 & 1250 AP models.

    Hi Vinod,
    Since you have 4400 controllers, you can run upto WLC 7.0.x code. Refer this for more detail
    http://www.cisco.com/c/en/us/td/docs/wireless/compatibility/matrix/compatibility-matrix.html
    there is no specific limitation to 1131/1252 AP model as such, everything is WLC software dependent.
    From later software 7.4.x,7.6.x,8.x, lots of improvement for QoS configuration & bandwidth control, but since your controller is old hardware, you cannot have those latest features.
    here is a reference post on how QoS works in wireless environment
    http://mrncciew.com/2012/11/28/understanding-wireless-qos-part-1/
    HTH
    Rasika
    *** Pls rate all useful responses ****

  • Function Module/BAPI  For Variand Configuration

    Hi Experts,
    can any one resolve my Doubt iam working for Variant configuration i create a class,characteristic,depencies while executiing the CU50 it shows the correct output what i want to get
    but i write a function module in that it is not giving the correct values which i get in CU50 is there any function module for directly geting the Cu50 functionality can any one help me in that

    Hi,
    I am also looking for FM which gives direct output like cu50 tcode will get.
    Can you tell me if you get that FM for output result.
    Regards,
    Ankit Rai

  • SAP Best Practices for SSO Configuration

    Hello There,
    Are there any SAP Best Practices available for SSO Configuration. If so, Kindly help me with those..
    And also any Third party tools available in the market for SSO Configuration..
    Appriciate your Help on this.. Thanks in advance.
    Regards,
    Pranay S
    Edited by: Pranay Subedari on Apr 29, 2011 9:12 AM

    Hello,
    Types on the SSO are classified with the systems involved in configuration (i.e.) SSO between ABAP Stack and Java stack or LDAP, OS
    Refer the link for more details [Document Deleted]
    Regards,
    Anand
    Message was edited by: Jason Lax

  • How do the change management for the configuration of the adapters

    Hi all.
    How do the change management for the configuration of the adapters, when i transport the software version component from an development system to production system.
    For example, for to change the url parameters of adapters soap inside the production system. I will need type, the news values in this system?
    Thanks
    Best Regards.

    There is an option to pass all the paramters except those who changes from
    system to system.
    for example,
    if you are reading from a file from the directory: <SYS>\CREMAS_<TS>.XML
    when <SYS> is DEV or QAS or PROD, and <TS> is time stamp,
    you can create channel template that read file with file pattern CREMAS_*.XML,
    this can save you a lot of work, however, parameters that are diffrent in every system, (in this case the directory DEV,QAS,PROD) you must enter manually in every system.

Maybe you are looking for

  • Where can i learn about Boot Camp

    to all i would like to learn about boot camp and the risks of puttiong windows on my mac. some things i just need on windows. where can i read about it before i start to post dumb questions about virus software and the risk of virus, as i'm sure its

  • Demo unit ipad 2 cannot reset to factory setting?

    i have a few problem with my ipad 2. i bought a demo unit and i can't restore it to the factory setting since there was no restore button. i also cannot delete unwanted application on it. please help me.

  • E5-00 bug in HFP (hands free profile)

    I have a nokia e5-00, a N95 and a 6230i  I connect them all to my Citroen C5 Tourer (which uses bluetooth in its MyWay system). E5-00 has a very strange bug: when someone calls me, the number reported to the car is always preceded by a plus (+) sign:

  • FaceTime stopped working around easter on all of my mac stuff how do I fix this?

    Around Easter facetime stopped working altogether.. It won't work on any of my devises... not my mac, my ipad, my mini ipad or my iphone.  What in the world is going on?  I miss my grandchildren. I have tried turning it off and on... rebooting... I h

  • How to compute output tax on material discount

    Hi, How can we compute output tax on discount, with condition type K004? I have added the k004 with GL account discount. But during billing invoice generation, output tax is not computed with output tax. Thank you and regards. Rachelle