Author |
Message |
Topic: get MQJE001: Completion Code 2, Reason 2024 when processing |
shavo25
Replies: 9 Views: 10209
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 10, 2010 3:43 pm Subject: get MQJE001: Completion Code 2, Reason 2024 when processing |
My mistake. Looks like I need more coffee
No worries.
I'd thought the only requirement for casting to TextMessage was an MQFMT_STRING.
Like i said before the messages had no format so i cast t ... |
Topic: get MQJE001: Completion Code 2, Reason 2024 when processing |
shavo25
Replies: 9 Views: 10209
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 09, 2010 8:50 pm Subject: get MQJE001: Completion Code 2, Reason 2024 when processing |
Fixed it, cast to BytesMessage and converted bytes to string to amend the message body.
I commit after every send, look at method again sendMessage
/**
* Send message to the new queue
... |
Topic: get MQJE001: Completion Code 2, Reason 2024 when processing |
shavo25
Replies: 9 Views: 10209
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 09, 2010 7:55 pm Subject: get MQJE001: Completion Code 2, Reason 2024 when processing |
yea i jumped the gun there.
What are my options then, the messages have no format, no RFH2 header or MQSTR so i take it i cant cast back to TextMessage can i, to manipulate the body? |
Topic: get MQJE001: Completion Code 2, Reason 2024 when processing |
shavo25
Replies: 9 Views: 10209
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 09, 2010 6:53 pm Subject: get MQJE001: Completion Code 2, Reason 2024 when processing |
Sorry my fault.
The messages i consume are actually JMSBytyesMessage not TextMessages so i was looping over consuming messages without ever sending so i never committed, hence why i got this except ... |
Topic: get MQJE001: Completion Code 2, Reason 2024 when processing |
shavo25
Replies: 9 Views: 10209
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 09, 2010 6:07 pm Subject: get MQJE001: Completion Code 2, Reason 2024 when processing |
MQ 5.3
JDK 1.6
I incur this problem when im running a java app inside eclipse.
Goal of my app is to read in over 60,000 msgs from one queue, replace a string value in the message and send to ano ... |
Topic: Removing JMS message header |
shavo25
Replies: 2 Views: 6803
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 26, 2010 8:34 pm Subject: Removing JMS message header |
Thanks fjb_saper.
So many IT acronyms, its hard to keep up!
So MO71 is a support pac for MQ, a Windows GUI Administrator. Downloaded it and its really good, so much faster than MQ explorer!
A ... |
Topic: Removing JMS message header |
shavo25
Replies: 2 Views: 6803
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 26, 2010 3:42 pm Subject: Removing JMS message header |
Hi guys,
I know this has been posted a few times before and ive read all the replies. I just want to make sure i have the correct changes.
Environment:
MQ 5.3, JDK 1.6
I have a java jms MQ cli ... |
Topic: Weblogic Integration with MQ |
shavo25
Replies: 1 Views: 3760
|
Forum: IBM MQ Java / JMS Posted: Mon May 24, 2010 5:50 pm Subject: Weblogic Integration with MQ |
My fault i did not have the ETC library on the weblogic classpath.
<DOMAIN_HOME>\lib\com.ibm.mqetclient-5.3.06.jar |
Topic: Weblogic Integration with MQ |
shavo25
Replies: 1 Views: 3760
|
Forum: IBM MQ Java / JMS Posted: Mon May 24, 2010 4:24 pm Subject: Weblogic Integration with MQ |
Weblogic 10.3.2, MQ 5.3
JDK 1.6
Getting a warning when deployin my ear on weblogic:
<Warning> <JMSPool> <BEA-169807> <There was an error while making the initial connection to ... |
Topic: JMS system queues question |
shavo25
Replies: 3 Views: 4343
|
Forum: IBM MQ Java / JMS Posted: Thu May 28, 2009 8:08 pm Subject: JMS system queues question |
thanks for the meaningful and constructive response fjb_saper. |
Topic: JMS system queues question |
shavo25
Replies: 3 Views: 4343
|
Forum: IBM MQ Java / JMS Posted: Thu May 28, 2009 5:52 pm Subject: JMS system queues question |
MQ 6.0
Websphere 6.1
looking up a jms topic created on websphere over a listener port to subscribe durably to topic on MQ.
Now for configuring base subscriber queue and using the multiple queue a ... |
Topic: MQ 7.0 and WAS 6.1 connection |
shavo25
Replies: 1 Views: 5394
|
Forum: IBM MQ Java / JMS Posted: Mon Mar 23, 2009 7:34 pm Subject: MQ 7.0 and WAS 6.1 connection |
I have an enterprise application (JEE1.4) running on WAS 6.1. I followed this tutorial:
http://www.ibm.com/developerworks/websphere/techjournal/0505_woolf/0505_woolf.html -- Make WebSphere MQ the JMS ... |
Topic: Websphere MQ explorer powered by eclipse |
shavo25
Replies: 16 Views: 24443
|
Forum: IBM MQ API Support Posted: Sun Mar 01, 2009 4:39 pm Subject: Websphere MQ explorer powered by eclipse |
From the websphere mq 6.0 manual:
Configuring durable subscribers:
For durable subscriptions, the queue name you provide must start with the following characters:
SYSTEM.JMS.D.
To select a sha ... |
Topic: Websphere MQ explorer powered by eclipse |
shavo25
Replies: 16 Views: 24443
|
Forum: IBM MQ API Support Posted: Sun Mar 01, 2009 3:35 pm Subject: Websphere MQ explorer powered by eclipse |
I read the manual. I am not the websphere admimistrator and they will not add the support pac for websphere MQ 6.0 to view topics in MQ explorer. There is no topic connection factory as there is no ad ... |
Topic: Websphere MQ explorer powered by eclipse |
shavo25
Replies: 16 Views: 24443
|
Forum: IBM MQ API Support Posted: Wed Feb 25, 2009 9:52 pm Subject: Websphere MQ explorer powered by eclipse |
No what i want to know is for my system subscriber queue SYSTEM.JMS.D.CIM, using websphere mq jms code can i publish to multiple topics on this queue?
For example my code:
producer = session.creat ... |