|
More site info...
WebSphere MQ
| Forum profile
|
|
Forum profile page for WebSphere MQ
on http://www.ibm.com/developerworks/websphere/.
This report page is the aggregated overview from a single forum: WebSphere MQ
, located on the Message Board at http://www.ibm.com/developerworks/websphere/.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "WebSphere MQ
" on the Message Board at http://www.ibm.com/developerworks/websphere/ is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on WebSphere MQ
:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
10
|
38
|
163
|
|
Post:
|
14
|
51
|
258
|
|
|
WebSphere MQ
Posting activity graph:
|
Top authors during last week:
user's latest post:
CICS - MQGET - Same message...
Published (2009-12-15 16:26:00)
thanks for the response. so while tranA is in the process of getting the message but have not yet completed and at almost the very same instant another tranA issues its MQGET- MQ will ensure that the message being read by the first tranA will not be read by the second tranA . if tranA have a wait interval and by chance both have to wait for the message i/o to complete... what happens? not to get into too much internals but how does MQ...
user's latest post:
JMS MQ Subscriber question
Published (2009-12-17 16:57:00)
It appears that by setting the subscriber as an on-message subscriber, all of the messages are being delivered in the same thread. Single-threading this part of the code was all I was trying to accomplish.
user's latest post:
Getting Current Queue Depth...
Published (2009-12-21 22:33:00)
Determining MQ queue depth by browsing all the messages on a queue and counting them is an extremely inefficient method and on high volume queues the results will be wildly inaccurate. Using the MQ Java classes, it is possible to open a queue and directly inquire on the current depth at any moment in time, without incurring the ridiculous overhead of scanning all the messages on a queue. It is better to throttle the number of workers by...
user's latest post:
new monitoring-event tool
Published (2009-12-14 05:02:00)
http://mqsupervise.sourceforge.net MQSupervise allows to collect the statistics data and events emitted by mqseries (WebSphere MQ) and to restore them throw an IHM. MQSupervise is able to generate alerts by e-mail. web application under tomcat, mysql, java
user's latest post:
Read MQ Server Queue in Batches
Published (2009-12-14 10:49:00)
Hello, I want to read MQ Server Queue as a batch transaction (may be 1000 messages in a batch) rather than one message at a time, perform some operations on the messages, and insert it to the database. If the database insert fails, then the queue has to rollback. MQ Server is installed on Windows 2003. I have searched IBM MQ Server manuals, but could not find any way to do it. Let me know how this is possible? Thanks, Tom Dan
user's latest post:
whenever I start MQ Explorer I...
Published (2009-12-14 04:33:00)
Dear All, I'm using WebSphere MQ 7 on Windows XP SP 2. The problem that I'm facing is that whenever I start MQ Explorer, I get an error message saying- "JVM Terminated. Exit Code 8096". I serched on the internet but there is no solution work with me, Does anybody have a solution? Yahya Ahmed Yahya Senior Software Developer Intercom Enterprises (Egypt) yahmed@intercom.com.eg
user's latest post:
CCSID problem while using client...
Published (2009-12-15 08:37:00)
Hi Please help - I'm stuck (& a WebSphere newbie)... I have Windows XP with WSMQ Client (6) installed, that PC has CCSID = 852. I also have Windows 2003 machine with WSMQ Server (6) which has QM with CCSID = 437. I need to connect from client to server but i get the error MQRC_Ql_MGR_NOT_AVAILABLE (RC2059). Application which is trying to connect to QM is written in .NET (C#). I can't change QMs CCSID due to client requirements,...
user's latest post:
CICS - MQGET - Same message...
Published (2009-12-15 15:53:00)
If you use a destructive MQGET, which would be normal, no other transaction can get the same message. However if you are browsing a queue then it is possible for another transaction to be browsing the message at the same time. How are your message ids being generated? If you let the queue manager generate the message id then it will be unique but if the putting application creates its own message ids then it must ensure uniqueness.
user's latest post:
MQ Explorer problem
Published (2009-12-16 15:32:00)
Hi, I've just installed the MQ v7 3-month full trial version on a stand-alone Windows 7 Ultimate box. In the MQ Explorer, I'm able to create a new queue manager, but I cannot create a new queue - neither on the newly created manager, or on the default installed manager. Checking the Eclipse log file reveals the following error: !SESSION 2009-12-15 20:04:27.810 eclipse.buildId=M20060629-1905 java.fullversion=J2RE 1.5.0 IBM J9 2.3...
user's latest post:
Regarding RFH Util installation...
Published (2009-12-20 07:50:00)
Hello All, I registered recently to this websphere forum, with a hope that I may get the rightmost solution. The main problem I am having is I would like to give a demo on RFH Util and it's usage. But I am much worried on the istallation and security portion. The problem is I dont have MQ installed on my local system and all I need to do is logging to a remote windows box where one of the MQ Support Pac (MQMON) is installed. All our MQ...
|
|
|
|
Latest active threads on WebSphere MQ
::
Started 1 day, 12 hours ago (2009-12-21 22:33:00)
by Glenns_Screen
Determining MQ queue depth by browsing all the messages on a queue and counting them is an extremely inefficient method and on high volume queues the results will be wildly inaccurate. Using the MQ Java classes, it is possible to open a queue and directly inquire on the current depth at any moment in time, without incurring the ridiculous overhead of scanning all the messages on a ...
Started 2 days, 11 hours ago (2009-12-20 23:35:00)
by Glenns_Screen
MQCONN
MQOPEN
for x=1 to 1000
MQGET with MQGMO_SYNCPOINT
Perform op & insert in to DB
Fail? YES, MQBACK, don't commit inserts in DB, exit For loop
next x
All OK? YES, MQCMIT
MQCLOSE
MQDISC
Read about these MQ calls in the MQ App Prog Ref, or better still, go on a MQ development course.
HTH, Glenn.
Started 5 days, 18 hours ago (2009-12-17 16:57:00)
by easnoddy
It appears that by setting the subscriber as an on-message subscriber, all of the messages are being delivered in the same thread. Single-threading this part of the code was all I was trying to accomplish.
Started 1 week ago (2009-12-15 15:53:00)
by BobBuxton
If you use a destructive MQGET, which would be normal, no other transaction can get the same message.
However if you are browsing a queue then it is possible for another transaction to be browsing the message at the same time.
How are your message ids being generated? If you let the queue manager generate the message id then it will be unique but if the putting application creates...
Started 2 months, 4 weeks ago (2009-09-25 16:08:00)
by aupadh
|
|
Hot threads for last week on WebSphere MQ
::
Started 1 week ago (2009-12-15 15:53:00)
by BobBuxton
If you use a destructive MQGET, which would be normal, no other transaction can get the same message.
However if you are browsing a queue then it is possible for another transaction to be browsing the message at the same time.
How are your message ids being generated? If you let the queue manager generate the message id then it will be unique but if the putting application creates...
Started 5 days, 18 hours ago (2009-12-17 16:57:00)
by easnoddy
It appears that by setting the subscriber as an on-message subscriber, all of the messages are being delivered in the same thread. Single-threading this part of the code was all I was trying to accomplish.
Started 2 days, 11 hours ago (2009-12-20 23:35:00)
by Glenns_Screen
MQCONN
MQOPEN
for x=1 to 1000
MQGET with MQGMO_SYNCPOINT
Perform op & insert in to DB
Fail? YES, MQBACK, don't commit inserts in DB, exit For loop
next x
All OK? YES, MQCMIT
MQCLOSE
MQDISC
Read about these MQ calls in the MQ App Prog Ref, or better still, go on a MQ development course.
HTH, Glenn.
Started 1 day, 12 hours ago (2009-12-21 22:33:00)
by Glenns_Screen
Determining MQ queue depth by browsing all the messages on a queue and counting them is an extremely inefficient method and on high volume queues the results will be wildly inaccurate. Using the MQ Java classes, it is possible to open a queue and directly inquire on the current depth at any moment in time, without incurring the ridiculous overhead of scanning all the messages on a ...
|
|