Author |
Message |
Topic: same process act as client/server possible? |
clindsey
Replies: 3 Views: 5524
|
Forum: IBM MQ API Support Posted: Wed May 17, 2006 10:57 am Subject: same process act as client/server possible? |
Use dynamic linking rather than static links
For an example, go to http://www-304.ibm.com/jct09002c/isv/tech/sampmq.html and look at ntloadmq.c or sunloadmq.c |
Topic: Not A Windows Guy... Need help lol |
clindsey
Replies: 1 Views: 4972
|
Forum: General Discussion Posted: Tue Mar 28, 2006 7:59 am Subject: Not A Windows Guy... Need help lol |
Go to "Project->Settings" and click on the Link tab.
Add mqm.lib
Charlie |
Topic: C Client program not picking up environment variable values |
clindsey
Replies: 17 Views: 18051
|
Forum: General Discussion Posted: Tue Mar 21, 2006 1:18 pm Subject: C Client program not picking up environment variable values |
I am trying to run a C client from a Solaris Box, connecting to a Qmgr on another soalris box
You should install WMQ client code on this box. Let the install put the code in the correct place a ... |
Topic: sending messages to multiple queues at the same time |
clindsey
Replies: 29 Views: 34299
|
Forum: General IBM MQ Support Posted: Wed Mar 15, 2006 6:31 am Subject: sending messages to multiple queues at the same time |
Hmm, mirorq only seems to work for queues that messages are sitting on.
My scenario is that I need to capture them as they flow through the system, they don't remain on our system, so before they ... |
Topic: mirrorQ ISSUE :Please do provide some light |
clindsey
Replies: 4 Views: 7563
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Mar 10, 2006 7:42 am Subject: mirrorQ ISSUE :Please do provide some light |
You will need to recompile for V6. A 64 bit version of mirrorq is not available. I have not done a gcc compile so I can't help with that. If you do get it compiled, be sure to use the directory struct ... |
Topic: mirrorQ ISSUE :Please do provide some light |
clindsey
Replies: 4 Views: 7563
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Mar 10, 2006 6:09 am Subject: mirrorQ ISSUE :Please do provide some light |
There are a couple of things you will need to do.
The mirrorq and mirrorq_r you have are ok for 32 bits apps. Copy these to /var/mqm/exits and set permissions to 755. You will need to compile a 64 b ... |
Topic: Beginner question |
clindsey
Replies: 10 Views: 17075
|
Forum: IBM MQ Installation/Configuration Support Posted: Sun Mar 05, 2006 7:19 am Subject: Beginner question |
Wolfgang,
This should help. http://advisor.com/Articles.nsf/nl/BOWEO001
It will be easier if you name your xmit queues the same as the queue manager you are sending to. On QM_A, your xmit queue ... |
Topic: Beginner question |
clindsey
Replies: 10 Views: 17075
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Mar 03, 2006 1:09 pm Subject: Beginner question |
Wolfgang,
First be sure about which ports are defined for the listeners.
bring up the WebSphere MQ Services UI
click on the queue manager and the services will be displayed
right click on the li ... |
Topic: Beginner question |
clindsey
Replies: 10 Views: 17075
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Mar 03, 2006 11:44 am Subject: Beginner question |
Wolfgang,
The Window Quick Beginnings has the steps under "Setting up Communications". It sounds like you are pretty close, though.
When you set up 2 amgrs on the same server, the listeners must ... |
Topic: how to lookup MQQueueConnectionFactory,MQQueueManager |
clindsey
Replies: 3 Views: 8631
|
Forum: IBM MQ Java / JMS Posted: Thu Mar 02, 2006 12:13 pm Subject: how to lookup MQQueueConnectionFactory,MQQueueManager |
p.put(Context.PROVIDER_URL, "iiop://localhost:1414");
1414 is the listener port for MQ.
The port here for the provider url should be the RMI port from the app server ... |
Topic: BASIC MQ QUERIES |
clindsey
Replies: 8 Views: 13415
|
Forum: General IBM MQ Support Posted: Wed Mar 01, 2006 2:09 pm Subject: BASIC MQ QUERIES |
Did you try amqsptl?
You can put the same message to multiple queues on the same qmgr or remote qmgrs.
Charlie |
Topic: BASIC MQ QUERIES |
clindsey
Replies: 8 Views: 13415
|
Forum: General IBM MQ Support Posted: Wed Mar 01, 2006 11:02 am Subject: BASIC MQ QUERIES |
Use amqsptl
Charlie |
Topic: polling vs. wait indefinite |
clindsey
Replies: 2 Views: 5331
|
Forum: General IBM MQ Support Posted: Tue Feb 28, 2006 7:11 am Subject: polling vs. wait indefinite |
Another common way to end an application that is blocked on an indefinite wait is to set the queue to get disabled.
Also, I suspect your developer's code is written in java. Tell him to add
... |
Topic: mirrorq and mqput2 (binding) |
clindsey
Replies: 11 Views: 15558
|
Forum: IBM MQ API Support Posted: Mon Feb 13, 2006 7:33 pm Subject: mirrorq and mqput2 (binding) |
will mirrorq do anything for you if you are putting messages via binding mode rather than a client connection???
Yes, it works for both bindings and client mode. However you are seeing a bug t ... |
Topic: How to avoid eventlog messages |
clindsey
Replies: 2 Views: 5224
|
Forum: IBM MQ API Support Posted: Sun Feb 05, 2006 6:33 am Subject: How to avoid eventlog messages |
I do not think you can turn off the interface, but you can filter out the messages that are frequently written.
From the System Admin Guide:
If you want WebSphere MQ for Windows to ignore error ... |