07-16-2020 02:31 PM
Hi,
i`m new to snaplogic,
i have a simple pipeline like:
File Reader → JMS Producer
In File Reader i set a path to a csv file
In JMS Producer i set
Destination with a name of a queue like QUEUE_NAME1
Destination type : QUEUE
Messafe type: TEXT
When i run this pipeline it works without error.
So i suppose the file is sent to the queue.
In my organization the dev team say: the queue name is changed before sending the csv file.
So the name QUEUE_NAME1 is changed to QUEUE_NAME2 now
So i created a second pipeline to check whether the file cvs is arrived or not.
So i did this:
JMS Consumer–>Binary to document -->Mapper -->JMS Acknowlegde
in JMS Consumer i set:
Client_ID : name of the MQ manager
Destination: QUEUE_NAME2
When i run the second pipeline it throws error:
JMSCMQ0001: IBM MQ call failed with compcode ‘2’ (‘MQCC_FAILED’) reason ‘2085’ (‘MQRC_UNKNOWN_OBJECT_NAME’).
Caused by: com.snaplogic.api.ConfigurationException: An error occurred while creating the consumer
Caused by: com.ibm.msg.client.jms.DetailedInvalidDestinationException: JMSWMQ2008: Failed to open MQ queue ‘QUEUE_NAME2’.
JMS attempted to perform an MQOPEN, but IBM MQ reported an error.
Use the linked exception to determine the cause of this error. Check that the specified queue and queue manager are defined correctly.
Questions:
1-Is my first pipeline correct?
2-Is my second pipeline correct?
3- Is there a way to check if the queue name changed using java code only?
im not able to check the specified queue and queue manager are defined correctly. because i don
t have permission level.
Thank you
07-17-2020 11:55 AM
07-17-2020 11:57 AM
very sorry for this, you are right it works in internet explorer
07-17-2020 06:46 PM
Hi Mina,
when you said:
“You can also install activeMq to test the snaps out as you will be the admin and can check everything there.”
So i have istalled activemq and it works with the following java code:
My producer and consumer work as intended in the website.
Now what is the relation with snaplogic?
How can i test my snaplogic with activemq?
Or maybe i misunderstood your tip.
part of java code:
public class Consumer {
// URL of the JMS server
private static String url = ActiveMQConnection.DEFAULT_BROKER_URL;
// default broker URL is : tcp://localhost:61616"// Name of the queue we will receive messages from
private static String subject = “PASCAL-MESSAGE-1”;
Thank you
07-20-2020 08:18 AM
You can edit the jms consumer or producer snap>Account>Add Account>JMS account then fill out the fields as shown in my example below.
As long as the Groundplex node can access your queue, the snaps will as well.
My jcc node is on the same host so I used 127.0.0.1.
07-21-2020 07:01 AM
Thank you Mina, you can close this thread.