Sending to WebSphereMQ

Hi everyone,
I was hoping somebody could help me with my problem. I am new to WebSphereMQ.
I set up all the administered Objects in MQ using JMSAdmin. I am using JBoss 4.0.2 to send messages into the queue. As of now I am able to listen to the queue using an MDB but I am not able to send to the queue.
Everytime I try to send to the queue, it tries to create a new QueueManager and I get an error saying Could not create QueueManager: QM_behpr_fls0010. This queuemanager already exists. It is the default queue manager.
could somebody post some sample code or something on how to send to the queue?
here's what I have:
import java.util.Properties;
//     JMS imports
     import javax.jms.Message;
     import javax.jms.QueueConnectionFactory;
     import javax.jms.QueueConnection;
     import javax.jms.QueueSession;
     import javax.jms.QueueSender;
     import javax.jms.QueueReceiver;
     import javax.jms.Queue;
     import javax.jms.Session;
     import javax.jms.TextMessage;
     import javax.jms.JMSException;
//     JNDI imports
     import javax.naming.Context;
     import javax.naming.InitialContext;
     import java.util.Hashtable;
      * This class demonstrates a simple sender in a point-to-point
      * JMS application.
     public class Sender
        public static void main(String[] args)
           try
                 System.out.println( "Bluescope-VAI WS-QUEUE Sender started" );
                 Properties props = new Properties();
                 props.put( "java.naming.factory.initial","com.ibm.mq.jms.context.WMQInitialContextFactory");
                 props.put( "java.naming.provider.url", "QM_behpr_fls0010" );
                 InitialContext ic = new InitialContext(props);
               /** note that the queue must be defined in the $JBOSS_HOME/server/default/deploy/\jbossmq-destinations-service.xml file */
              String queueName = "RequestQueue";
              QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory)ic.lookup("WSMQQueueConnectionFactory");
              Queue queue = (Queue)ic.lookup(queueName);
                QueueConnection queueConnection = queueConnectionFactory.createQueueConnection();
                QueueSession queueSession = queueConnection.createQueueSession( false, Session.AUTO_ACKNOWLEDGE );
                QueueSender queueSender = queueSession.createSender(queue);
                // Start the connection so we can use it
                queueConnection.start();
                System.out.println( "about to send message" );
                TextMessage message = queueSession.createTextMessage();
                message.setText("This is the 1st message for Bluescope-VAI the demo " );
                queueSender.send(message);
                System.out.println( "sent message 1" );
                message = queueSession.createTextMessage();
                message.setText("This is the 2nd message for Bluescope-VAI the demo " );
                queueSender.send(message);
                System.out.println( "sent message 2" );
                queueSender.send(queueSession.createMessage());
                queueConnection.close();
                 catch( Exception e )
                    e.printStackTrace();
     }   I will appreciatae if you review this.
Thank you.

Hi,
  I have not directly faced this but i may suggest ,
1. What do you see in sxmb_moni, do you have a queue problem?
2. see this File-to-File Scenario Stopped Working  the reply from Shravan and the last message.
<i>The XBTO que was the problem. I deleted all LUWs in it and now new transactions are working again</i>
3. You may also use this /people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically
Regards,
Anirban.

Similar Messages

  • JMS and MQ series load balancing.

    We have an interface that utilizes the JMS adapter and MQ series from websphere.  From a high level, i wanted to ask , when you have additional cluster instances of the adapter framework running.  How do the communication channels on these (say 2) instances know which one is to process the message. Or in the scenario, say one comm channel is already bottlenecked, how does the adapter engine know to forward the next JMS message to the other adapter.
    I would be most appreciative of any help in this regard. IE docs, website or tools to configure.
    Thanks
    Jeremy Baker

    Hi,
    Your JMS adapter is just like your standalone JMS (java) program that puts and retrieves ur messages from the Queues. So u don't need to create any local Queues and QManagers on XI Server. U need to configure the Parameters as mentioned in ur Sender Adapter( WebsphereMQ (MQSeries) and u will be successfully able to retrieve the messages from MQSeries.
    Make sure u have deployed the necessary jar's on ur XIServer to connect to WebsphereMQ.
    Cheers,
    Siva Maranani.

  • JMS to File

    Hi
    I have gone through all the previous posts on this topic. But I am still not clear. Can anyone give me the step by step procedure for JMS to file scenario?

    Hi Arthi,
    I configured similar kind of scenario in my project.
    Here JMS is sender, File is receiver. here mq i used is Webshpere of JMS complaint
    SLD
    one third party business system would be enough for this scenario.
    IR
    1. Create a datatype similar to the structure of the message that is residing in WebsphereMQ
    2. Create messagetype (one datatype, message type would be enough)
    3. create two interfaces, outbound for jms and inbound for file
    4. create message mapping and interface mapping.
    ID
    1. Import BS  and create 2 comm channels
    2. one jms sender, one file receiver
    3. in jms sender, select WebsphereMQ( select the appropriate mq vendor)
    defualt values appear for queue connectionfactory and and queue class
    give ip address of the system on which MQ is installed, its port by default it is 1414, give queue manager name, channel name, and queue name. Remember all the characters shuld be in upper case only.  select transport protocol as tcp/ip and jms complaint. give the userid and password of the system on which this MQ is installed. all these details u can get from MQ team.
    4. create file receiver com.channel
    5. remaining steps like sender, receiver agreement and interface, reciever determination can be created.
    let me know if you have any doubts in this.
    Regards,
    Ravi.

  • Sending Msg From HTTP client to XI through JMS Adapter using WebSphereMQ

    Hello
    I am trying to send some msg from Http client
    I configured JMS adapter as receiver
    Transport Protocol :WEBsphereMQ JMS provider
    Message  protocol :JMS1.x
    I have given the Ip  address  of my machine where I installed WEB Sphere MQ
    Server Port :1416
    Transport Protocol :WebSphere MQ
    JMS compliant: JMS-compliant
    In SXMB_MONI
    Http client sends message without any error.
    But while tracing I got message
    <Trace level="1" type="T">Async barrier reached. Bye-bye !</Trace>
    Can anybody tell me the solution..
    Thnaks

    Hi,
      I have not directly faced this but i may suggest ,
    1. What do you see in sxmb_moni, do you have a queue problem?
    2. see this File-to-File Scenario Stopped Working  the reply from Shravan and the last message.
    <i>The XBTO que was the problem. I deleted all LUWs in it and now new transactions are working again</i>
    3. You may also use this /people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically
    Regards,
    Anirban.

  • Sender JMS Adapter - NOT Working

    Hello Everybody - We are on SP13, also installed JMS Driver files on the system. We are running, Central Adapter Engine.
    We configured the Sender JMS Adapter for WBI MQ->XI->SAP scenario. We need to JMS Adapter to be configured to connect to WBI from XI. Everything looks great in configuration but in the Adpater Monitoring, JMS Adapter is with Error Status and Message says "Sender channel. Details: (No detail information set.)".
    Does anybody has any idea about this error ?
    I checked SAP Help link as well on this. Based on this link http://help.sap.com/saphelp_nw04/helpdata/en/ca/e7673c86d19b35e10000000a11402f/frameset.htm. Do we need to configure this JMS Adapter somewhere on teh server as well ? If yes, then where ? Pls respond if you have any clue about it.
    Thanks in anticipation...

    Hello Stefan - Thanks for response.
    Here are the Parameters.......
    Adapter Type: JMS
    Sender Type Clicked
    Transport protocol:WebSphereMQ (non-JMS)
    Message protocol:JMS 1.x
    Adapter Engine:Integration Server
    Queue ConnectionFactory Java Class:com.ibm.mq.jms.MQQueueConnectionFactory
    Queue Java Class:com.ibm.mq.jms.MQQueue
    IP Address or Server Name:10.9.48.154
    Server Port:1414
    Queue Manager Name:WBIDEV
    Channel Name:WBI.XI.SVRCONN
    JMS Queue:XI_REQUEST
    Transport/Network Protocol:TCP/IP
    JMS-Compliant:JMS-Compliant
    Transactional JMS Session:Check box Set
    JMS Queue User:XIUSER
    JMS Queue Password:********
    Set XI message ID(MessageID) to:GUID(recommended value)
    Set XI cenversation ID(conversationID) to:No value
    Mapping of Message:Message Payload=JMS Payload
    Quality of Service:Exactly Once
    Time Period for duplicate check for EO(IO)(secs):86400
    Wait After Message Error(msecs):1000
    Wait before Reconnect(msecs):1000
    Status:Active
    The Error Message I see in the Adapter Monitor is "Sender Channel. Details: (No detail information set.)
    Pls advice If I am missing anything ?
    Thanks....
    Amrish.

  • Sender JMS adapter configuration for IBM MQSeries

    Dear All,
    i am doing a IBM MQSeries 5.2.x Message ->sender JMS adapter -> XI server -> receiver RFC adapter -> R/3.
    i have deployed the JMS adapter with the required jar files of IBM MQSeries 5.2.x in XI server.
    in Sender JMS adapter configuration for IBM MQSeries 5.2.x, i have put following data:
    1. Transport Protocol: Websphere MQ - is it okay?
    in JMS provider settings:
    2. in channel name - what should be there?
    3. Transport Network protocol should be TCP/IP or WebsphereMQ - how to decide this thing.
    4. JMS Complaint - whether WebsphereMQ or JMS API.
    in JMS Settings:
    5. JMS Queue user - is this IBM MQSeries 5.2.x Queue User or someother user?
    6. JMS Message Selector - what data to take here.
    So if anybody has connected IBM MQSeries 5.2.x to XI via JMS adapter, please answer my above queries.
    Regards,
    Rajeev Gupta

    Hi Swaroop,
    you can send me those documents at my gmail-id : [email protected]
    Hi All,
    one more question - to connect XI server to IBM MQSeries via JMS adapter in ID, do we need to have a MQSeries Client installed on XI server - or - just by configuring JMS adapter, we can send messages from IBM MQSeries to XI server without any MQSeries client on XI server?
    Why Channel name is required in JMS configuration data?
    Thanks,
    Rajeev Gupta

  • Need help about setting up a JMS sender channel

    I just started to play with PI for a few weeks and I'm trying to setup a simple JMS sender channel to read stuff from a WebSphere MQ.
    I've someone installed JMS adaptor for me, but we never know it is correctly installed or not. First question is "Is there any way we can verify JMS adapter is correctly installed or not?"
    In the Design: integration builder, I've a very defined a very simple data type(src_dt) which is a string and a message type(src_mt) which uses resp_dt. Finally I created a message interface (test_mia_out) that contains src_mt. At this point of time, I don't need message mapping so I didn't configurate this section.
    Then I went to Configuration: Integration builder and created a new communcation channel with the following setting:
    Parameter section:
    Adapter Type: JMS
    Transport Protocol: WebSphereMQ (Non-JMS)  <- if i don't use this option, i can't enter MQ connection detail in the Source section.
    Message Protocol: JMS 1.x
    Adapter Engine: Integration Server
    Source section:
    QueueConnectionFactory Java Class: com.ibm.mq.jms.MQQueueConnectionFactory
    Queue Java Class: com.ibm.mq.jms.MQQueue
    ...MQ connection detail...(IP, Port, Queue Manager, Channel and Queue Name )
    Transport Protocol: TCP/IP  <- this is consists to server side setting
    JMS-Compliant: JMS-Compliant
    Since I only want a very simple working sample, again I didn't change the content in receiver determination, interface determaintion and sender agreement.
    Now when I active this change and I saw the following error in the channel monitor:
    Short Log - Channel has internal error
    Admin Info - Exception: Channel with Status Unknown or Not Registered
    I did stop and start the service, refresh CPA cache and even restart the entire PI server, I always see this message and cannot find any more detail description about what is causing this problem.
    My PI Server version is 7.0 and MQ version is 5.3
    There's very limited resource about how to setup to read MQ message in PI and I'm stuck now. Therefore, I need a help from some experienced people to tell me if I have did something wrong or missed some steps?
    And if possible, could people mind to post a step by step go through how you setup it up?
    Edited by: Robert Fu on Jan 10, 2008 6:51 AM

    Before you use the JMS, you need to deploy some drivers related to specific MQseries, Kindly ensure that proper driver are deployed....
    If you use MQSeries 53x.xxx, you must enter the following JAR files in aii_af_jmsproviderlib.sda.
    com.ibm.mq.jar, com.ibm.mqbind.jar, com.ibm.mqjms.jar, connector.jar (use the JAR file from the J2EE client directory)
    check this link it will give you more inofmration
    http://help.sap.com/saphelp_nw04/helpdata/en/cd/d85a9d6fab7d4dbb7ae421f710626c/content.htm
    check this to get the condifuration the JMS
    How to use conversion modules in JMS - https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f02d12a7-0201-0010-5780-8bfc7d12f891
    Ref How To Use the Content Conversion Module in JMS Adapter - https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000582377&

  • Sender JMS Adapter

    Hi,
    I am using a sender JMS adapter. Transport Protocol i have given as "Access JMS Provider with JNDI".
    In the field "JNDI Server Address" i have to give the server:port.
    Here i am not sure which port to give.
    Is it the P4 port i.e. 5XX04 or the J2EE port on which the WAS listens i.e. 5XX00.
    Please advise.
    Regards
    Sidharth

    Hello Stefan - Thanks for response.
    Here are the Parameters.......
    Adapter Type: JMS
    Sender Type Clicked
    Transport protocol:WebSphereMQ (non-JMS)
    Message protocol:JMS 1.x
    Adapter Engine:Integration Server
    Queue ConnectionFactory Java Class:com.ibm.mq.jms.MQQueueConnectionFactory
    Queue Java Class:com.ibm.mq.jms.MQQueue
    IP Address or Server Name:10.9.48.154
    Server Port:1414
    Queue Manager Name:WBIDEV
    Channel Name:WBI.XI.SVRCONN
    JMS Queue:XI_REQUEST
    Transport/Network Protocol:TCP/IP
    JMS-Compliant:JMS-Compliant
    Transactional JMS Session:Check box Set
    JMS Queue User:XIUSER
    JMS Queue Password:********
    Set XI message ID(MessageID) to:GUID(recommended value)
    Set XI cenversation ID(conversationID) to:No value
    Mapping of Message:Message Payload=JMS Payload
    Quality of Service:Exactly Once
    Time Period for duplicate check for EO(IO)(secs):86400
    Wait After Message Error(msecs):1000
    Wait before Reconnect(msecs):1000
    Status:Active
    The Error Message I see in the Adapter Monitor is "Sender Channel. Details: (No detail information set.)
    Pls advice If I am missing anything ?
    Thanks....
    Amrish.

  • Sender JMS Connectivity not working

    Hi All,
    We have developed a scenario where we have to pick messages from DTS JMS queue and we are using JMS provider with JNDI as the sender transport protocol. We have deployed the jar files given by the DTS team successfully in our XI 3.0 system and we have configured the sender JMS channel. Since this queue is in another NWDS sever, we have also set Additional JMS parameters: JNDI.InitialContext.property.5=java.lang.String force_remote, java.lang.String true.
    But when we are testing, I am getting the below error in Adapter monitoring :
    Sender channel. Details: com/sap/jms/client/connection/RemoteConnectionFactoryInterface (Unsupported major.minor version 49.0)
    Please let me know if I have missed any parameters or any suggestions to solve the issue.
    Thanks,
    Laawanya

    Hello Stefan - Thanks for response.
    Here are the Parameters.......
    Adapter Type: JMS
    Sender Type Clicked
    Transport protocol:WebSphereMQ (non-JMS)
    Message protocol:JMS 1.x
    Adapter Engine:Integration Server
    Queue ConnectionFactory Java Class:com.ibm.mq.jms.MQQueueConnectionFactory
    Queue Java Class:com.ibm.mq.jms.MQQueue
    IP Address or Server Name:10.9.48.154
    Server Port:1414
    Queue Manager Name:WBIDEV
    Channel Name:WBI.XI.SVRCONN
    JMS Queue:XI_REQUEST
    Transport/Network Protocol:TCP/IP
    JMS-Compliant:JMS-Compliant
    Transactional JMS Session:Check box Set
    JMS Queue User:XIUSER
    JMS Queue Password:********
    Set XI message ID(MessageID) to:GUID(recommended value)
    Set XI cenversation ID(conversationID) to:No value
    Mapping of Message:Message Payload=JMS Payload
    Quality of Service:Exactly Once
    Time Period for duplicate check for EO(IO)(secs):86400
    Wait After Message Error(msecs):1000
    Wait before Reconnect(msecs):1000
    Status:Active
    The Error Message I see in the Adapter Monitor is "Sender Channel. Details: (No detail information set.)
    Pls advice If I am missing anything ?
    Thanks....
    Amrish.

  • Need to know the integration of jbossMQ integration with websphereMQ

    Hi,iam having the doubt in integration of websphereMQ with jbossMQ.My problem is,client program going to send data to the queue located in websphereMQ server,that queue is going to linked with the queue located in JBossMQ server,whenever jbossMQ queue received message,my mdb is going to get that data and do some business logic.My question is how to communicate the two queues present between the jbossMQ and websphereMQ?Anyone know the solution pls tell me as early as possible.

    check MAST+STPO.
    or FM
    CS_BOM_EXPL_MAT_V2
    Regards
    prabhu

  • JMS sender cc error: Error while calling operation 'setChannel' for object

    Hi guys,
    I'm getting following error in my sender JMS adapter which tries to connect to Websphere MQ:
    Error while calling operation 'setChannel' for object '|   com.ibm.mq.jms.MQQueueConnectionFactory
    it is then followed by connection and system parameters.
    Any idea, what could be wrong?
    I also doubt about cc's connection parameters:
    - transport network protocol: should I use TCP/IP or WebsphereMQ?
    - JMS compliant: non-JMS or JMS compliant?
    thanks for your help,
    olian

    Hi Olian,
    the configuration of a JMS adapter requires close working with the MQ team. they are best people to tell  you what is the correct parameter value.
    depending on the "transport protocol" he will be able to help you complete the configuration.
    if you have chosen "websphere MQ (non-jms)", the transport/network protocol and Jms-compliance depends on the configuration made on the network and MQ.
    Raghu

  • JMS sender error in case MQ websphere---Please help

    Hi SDN,
    I am stuck in configuring JMS sender adapter for MQ series.After creating all objects
    I have activated the scenario.I got an exception message in the sender JMS channel.It is :
    XI inbound processing failed for message at 2007-05-08|13:30:21.009+0300. JMS and XI identifiers for the message are ID:414d512046494b594d5a2020202020204614d148001e50e2 and 1f7c5fd0-fd4f-11db-ab43-aabfb000d002 respectively. The JMS adapter will rollback the database and JMS session transactions. If the session is transacted, the message is not lost and will be retried later. The exception stack trace is java.lang.Exception: Exception thrown in method process. The transaction is marked for rollback.
    at com.sap.aii.af.service.jms.WorkerJMSReceiver.onMessage(WorkerJMSReceiver.java(Compiled Code))
    at com.ibm.mq.jms.MQMessageConsumer.receiveAsync(MQMessageConsumer.java(Compiled Code))
    at com.ibm.mq.jms.SessionAsyncHelper.run(SessionAsyncHelper.java(Compiled Code))
    Please help. The scenario is MQ ---> SAP.
    Regards,
    Mansoor

    Hi SDN,
    This is very important for me. Can anybody resolve the problem.
    The scenario is MQ --> SAP. I have configured sender JMS adapter like this.
    Transport protocol : WebsphereMQ(nonJms)
    QueueConnectionFactory Java Class : com.ibm.mq.jms.MQQueueConnectionFactory
    Queue Java Class: com.ibm.mq.jms.MQQueue
    IP Address or Server Name: XXXXXXX
    Server port: 1421
    Queue Manager Name: TestAPI
    Channel name : TestAPI
    JMS Queue: TestQ
    XI settings:
    mapping of message: Message payload= JMS payload
    Please let meknow if you need any more details.
    Regards,
    Mansoor

  • JMS Sender reconnect

    Hi,
    I´m using the JMS adapter as a Sender and want to know how the connection to the MQ is done. If i.ex. the external MQ is shut down for maintenance - how does the the JMS adapter in SAP XI reconnect when the MQ is up again?
    Do we need to deactivate and activate the Communication Channel (i hope not!) or how is it done?
    /Jakob

    Hi Jakob,
    SAP XI will try to reconnect when the next message is sent, e.g. if normally connects to the queue at activation or restart on SAP XI. It will only check again once it gets an error during sending to the queue.
    We are using WebsphereMQ and no issue at all with MQ being down, SAP will try 3 times and then the message stays in the RWB and you can submit it again once MQ is up and running. If you know there is a maintenance coming in MQ I would disable the adapters as it is easier to resubmit them in the ABAP Stack with SXMB_MONI then RWB. My choice.
    Cheers
    Stefan

  • XI--WebSphereMQ : Receiver Channel Inactive in MQ

    Hi,
    I am trying to Integrate XI with WebSphere MQ v5.3.
    For this i have created a QueueManager, Queue, Channel (ReceiverType) in MQ. In XI (JMS Adapter- WebSphereMQ ) i have specified the neessary parameters.
    Transport/NetWork Protocol : TCP/IP
    JMS-Compliant      : WebSphereMQ(non-JMS)
    Delivery mode      : Persist JMS messages in JMS Provider
    Mapping of Message : Message Payload = JMS Payload
    When i activate the channel, in Adapter monitering( for JMS), i could see a red traffic light.
    Details : null.
    When i went to WebSphereMQ, i found that the status of Receiver Channel is Inactive.
    I want to know:
    1)While creating my Queue manager i did not create a listener for TCP/IP. Should i create my QueueManager with TCP/IP Listener.
    2)How can i make my Receiver Channel Active in WebSphereMQ. Tried to right Click on the channel (say start). But it dosen't work.
    3)What is the parameter that i need to specify for Character SetID (CCSID) in XI(JMS Adapter- WebspherMQ).
    4)Is there anything more on WebsphereMQ side i need to setup?
    Regards,
    Siva Maranani.

    I have read the document Keeping Channels Up and Running (WebSphere software) and I have some questions.
    http://www-1.ibm.com/support/docview.wss?rs=203&uid=swg24006699&loc=en_US&cs=utf-8&lang=en
    Our setup:
    QueueManager on iSeries (5724B41   V5R3M0      WebSphere MQ for iSeries )
    We use SAP XI as MQ client. (SunOS) WebSphere classes for JMS (com.ibm.mq.jms.MQQueueConnectionFactory)
    MQI channel of type server-connection channel.
    Transport service TCP/IP.
    Problem description:
    Within SAP XI we use an Adapter type called JMS. This adapter type supports 2 types of connections:
    A) Sender
    Transport protocol :     WebSphereMQ (non-JMS)
    B) Receiver
    Transport protocol :     WebSphereMQ (MQSeries) JMSprovider
    On our iSeries we have 1 QueueManager with only 1 channel (*SRVCN = server-connection) which contains several queue's, queue's of type Sender (defined in SAP XI) and queue's of type Receiver (defined in SAP XI).
    Note:      Keywords like sender and receiver must be seen from SAP XI as point of view.
    queue's of type Sender ==> data is sent from iSeries towards SAP XI.
    queue's of type Receiver ==> data is sent from SAP XI towards iSeries.
    If we look with NETSTAT command (on iSeries), we see on the ports connected to queue's of type Sender, each 5 seconds network activity. It looks that SAP XI polls every 5 seconds to see if a message is present in the corresponding queue. The result is that that connection is never longer idle than 5 seconds.
    For the queue's (ports) of the corresponding Receiver connections, we see that the connection remains idle (if no data is transferred) for 4 hours. After 4 hours, the connection is broken which results is error:
    Job AMQRMPPA on AS/400 shows me message AMQ9209
    Message . . . . : Connection to host 'xxxxxxxx (xx.xx.xx.xx)' closed.
    Cause . . . . . : An error occurred receiving data from 'xxxxxxxx
    (xx.xx.xx.xx)' over TCP/IP. The connection to the remote host has
    unexpectedly terminated.
    Recovery . . . : Tell the systems administrator.
    We expect that the firewall give a session-timeout. We can not change that !!!
    Questions:
    Is there a way (settings) that we can force communication over the "receiver type" connection? I believe the channel remains active. TCP keep-alive and heartbeats are valid for channels. In the document mentioned above I read that values for heartbeats are specified "on both ends of the channel" and needs to be negotiated.
    However, I am not able to specify such a value at SAP XI site, at least I don't know how?
    Is there ANY documentation which described the use of the SAP XI in combination with MqSeries (like the intercommunication PDF of WebSphere MQ)?
    Is there any documentation regarding additional parameters?
    Rgds,
    Wilbert Karremans
    <a href="http://www-1.ibm.com/support/docview.wss?rs=203&uid=swg24006699&loc=en_US&cs=utf-8&lang=en">Keeping Channels Up and Running (WebSphere software)</a>

  • Sender channel. Details: MQJMS2005: failed to create MQQueueManager for loc

    Hi Friends,
    when i amdoing the jms to file scenario i got the following error "Sender channel. Details: MQJMS2005: failed to create MQQueueManager for 'local host:SAPQM'". please help me to resolve this issue.

    hi uday,
    check the below threads with the similar issue
    configuration of JMS  adapter Using WebSphereMQ
    Adapter Engine Error
    Receiver determination error
    <removed by moderator>
    regards
    kummari
    Edited by: Mike Pokraka on Jul 24, 2008 12:46 PM

Maybe you are looking for

  • FSCM-COL: Cleared invoices in Payments Tab

    Hi all, We have a requirment here where our client wants to check all the invoices, even the cleared oneu2019s in the Process Receivables view. Now, in the u201CInvoicesu201D tab we only have the open items and in the u201CPaymentsu201D tab we only h

  • Migrating data from 10.3.9 to Leopard

    I want to buy a new imac with Leopard but want to be sure that I can migrate data (iTunes, folders, software, etc) over from the old imac 1Ghz PowerPC G4 to the new. I've read that this is no problem from Tiger to Leopard using Migration Assistant bu

  • 5.7 patches availability???

    With the changes in location of support sites, can anybody point me to a location from which service packs for 5.7 and 5.5 can be downloaded? On the Oracle support site, I only see 6+ and 10.3.

  • Cisco 2504 Capability Question

    Hello, I need to replace a 4402 with a 2504 controller and put a 2504 controller in the DMZ for guest access.  This would be the setup: The 4402 would be replaced at a remote site (not hreap) and support a couple of wlans, one of those would not be l

  • Sending video clips from 6230i

    Hi i'm a newbie I've got some video clips I wanted to try and send my folks as they're away on hols. I had the video recording set to maximum but the clip was then too big to send via MMS. I changed it back to the default setting of 25 secs but it st