Author |
Message |
Topic: XMS C/C++: Help needed |
antishok
Replies: 13 Views: 26793
|
Forum: IBM MQ API Support Posted: Sun Mar 22, 2009 8:13 am Subject: hm |
mqic32.dll is present in the right folder,
using SampleConsumerC/CPP I get the same exceptions as above-
C:\Program Files\IBM\XMS\tools\samples\bin>sampleconsumerc
Enter '?' for help with ... |
Topic: XMS C/C++: Help needed |
antishok
Replies: 13 Views: 26793
|
Forum: IBM MQ API Support Posted: Sun Mar 22, 2009 2:52 am Subject: XMS C/C++: Help needed |
Thanks for your reply,
but the path env variable already contains C:\Program Files\IBM\WebSphere MQ\bin (the correct install dir)
Problem remains  |
Topic: XMS C/C++: Help needed |
antishok
Replies: 13 Views: 26793
|
Forum: IBM MQ API Support Posted: Wed Mar 18, 2009 9:43 am Subject: XMS C/C++: Help needed |
Been having the same problem on one of our servers, the rest are fine, no idea what the difference is.
There is an MQ server 6 installed on it, but the exception happens on a client connection to a ... |
Topic: XMS - how to set max message size |
antishok
Replies: 8 Views: 10286
|
Forum: IBM MQ API Support Posted: Thu Jul 03, 2008 10:54 am Subject: XMS - how to set max message size |
It is more flexible because if you have multiple qmgrs in your environment you can define your channel table in such a way that your app will connect to the first one that is available... Read the cli ... |
Topic: XMS - how to set max message size |
antishok
Replies: 8 Views: 10286
|
Forum: IBM MQ API Support Posted: Thu Jul 03, 2008 10:43 am Subject: XMS - how to set max message size |
I think you're getting it right!
Not sure what tone you're implying with that
If what I said is right, then I need to prepare the client table beforehand, and so I don't see why you said t ... |
Topic: XMS - how to set max message size |
antishok
Replies: 8 Views: 10286
|
Forum: IBM MQ API Support Posted: Thu Jul 03, 2008 8:14 am Subject: XMS - how to set max message size |
I can't find anything in the docs about using a client table when using the high-level XMS API to program MQ. You are referring to the client channel definition table, right?
Anyway, I still don't ... |
Topic: XMS - how to set max message size |
antishok
Replies: 8 Views: 10286
|
Forum: IBM MQ API Support Posted: Wed Jul 02, 2008 3:14 am Subject: XMS - how to set max message size |
Thanks for your reply
1. How would I use a client table with XMS?
2. That defeats the purpose of a dynamic connection where I can specify the hostname/queuemanger/etc at runtime.. doesn't it? How ... |
Topic: XMS - how to set max message size |
antishok
Replies: 8 Views: 10286
|
Forum: IBM MQ API Support Posted: Mon Jun 30, 2008 8:42 am Subject: XMS - how to set max message size |
Hello,
I'm using the XMS API for C++ for making an MQ client app.
When I try to put messages on a queue, which are bigger than 4MB,
I get a 2010 error (MQRC_DATA_LENGTH_ERROR).
The maxmessage ... |
Topic: XMS API - XMS_E_BAD_PARAMETER |
antishok
Replies: 0 Views: 2992
|
Forum: IBM MQ API Support Posted: Thu Jun 05, 2008 3:28 am Subject: XMS API - XMS_E_BAD_PARAMETER |
What exactly does this exception mean?
XMS_E_BAD_PARAMETER, with an errorCode of 2
I'm pretty sure it's thrown from xms::Connection.start(),
connecting in client mode to a local queue manager,
... |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Wed Aug 15, 2007 12:36 am Subject: xms transfers whole queue when selecting? |
that'll be the second one concering xms in 2 weeks
thank you |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Sun Aug 12, 2007 9:08 pm Subject: xms transfers whole queue when selecting? |
no such thing in xms, as far as I'm aware and as far as I can see in the docs
I put the message selector string in a call to create the receiver,
there's no message object involved until after the m ... |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Wed Aug 08, 2007 8:46 pm Subject: xms transfers whole queue when selecting? |
I was under the impression I don't need a channel table when using xms..
If I create the qcf dynamically, don't I set all the properties (channel name, hostname, port, etc..) at runtime? I suppose I ... |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Tue Aug 07, 2007 3:46 am Subject: xms transfers whole queue when selecting? |
It's proportional to the amount of data, not the amount of messages..
and yeah, the message I'm fetching is usually last,
so it doesn't retrieve the whole queue, but only messages up to the message ... |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Tue Aug 07, 2007 3:03 am Subject: xms transfers whole queue when selecting? |
I'm using it like this right now:
receiver = m_sess.createConsumer(d, "JMSCorrelationID='ID:100000000000000000000000000000000000000000000000'");
and of course, t ... |
Topic: xms transfers whole queue when selecting? |
antishok
Replies: 11 Views: 9569
|
Forum: IBM MQ API Support Posted: Mon Aug 06, 2007 11:24 pm Subject: xms transfers whole queue when selecting? |
Hey,
I'm using XMS (writing in C++),
I have a remote queue on a queue manager on my LAN.
When I put a small (500 byte) message on it (and nothing else in it),
and receive (using a MessageConsume ... |