Author |
Message |
Topic: question about mqjbnd05 |
adder
Replies: 2 Views: 3200
|
Forum: General Discussion Posted: Sun Jun 11, 2006 10:07 pm Subject: question about mqjbnd05 |
my enviornment is AIX5.3 MQ6.0.1, I encounter a problem that java application can not run due to mqjbnd05
java.lang.UnsatisfiedLinkError: Can't find library mqjbnd05 (libmqjbnd05.so or ... |
Topic: client connection problem |
adder
Replies: 26 Views: 16879
|
Forum: General IBM MQ Support Posted: Fri Jun 09, 2006 4:29 pm Subject: client connection problem |
I run application on windows again, and check AMQERR01.log on AIX machine,
06/10/06 08:26:17 - Process(10028.7) User(root) Program(amqrmppa)
AMQ9503: Channel negotiation failed.
EXPLANATION:
... |
Topic: client connection problem |
adder
Replies: 26 Views: 16879
|
Forum: General IBM MQ Support Posted: Fri Jun 09, 2006 4:07 pm Subject: client connection problem |
on windows, user is administrator
but when I define channle, I have set mcauser as mqm
DEF CHL('CHANNEL1') CHLTYPE(SVRCONN) TRPTYPE(TCP) MCAUSER('mqm')
and I have try to telnet 1601 port from w ... |
Topic: client connection problem |
adder
Replies: 26 Views: 16879
|
Forum: General IBM MQ Support Posted: Fri Jun 09, 2006 7:57 am Subject: client connection problem |
I also try amqscnxc
on windows:
C:\Program Files\IBM\WebSphere MQ\Tools\c\Samples\Bin>amqscnxc.exe -c CHANNEL1
x 9.181.26.254(1601) QM3
Sample AMQSCNXC start
Connecting to queue manager QM3
... |
Topic: client connection problem |
adder
Replies: 26 Views: 16879
|
Forum: General IBM MQ Support Posted: Fri Jun 09, 2006 7:46 am Subject: client connection problem |
A client applcation on windows try to connect to Qmgr on AIX,
on AIX side, SRV conn channel has been created, and also define listener in Qmgr, and start it
DEF CHL('CHANNEL1') CHLTYPE(SVRCONN) TRP ... |
Topic: How to create remote queue in LU62 mode ? |
adder
Replies: 4 Views: 3531
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Apr 28, 2006 2:57 am Subject: How to create remote queue in LU62 mode ? |
I also have question about LU62 protocol,
1.does all platform support LU62 protocol?
2.should any extra protocol stack need to be installed for LU62?
3. who can show me the mqsc command of creatin ... |
Topic: how to write a fastpath application |
adder
Replies: 7 Views: 5133
|
Forum: IBM MQ API Support Posted: Mon Apr 17, 2006 3:51 pm Subject: how to write a fastpath application |
Have anybody write a fastpath application before, please help me, thanks very much. |
Topic: how to write a fastpath application |
adder
Replies: 7 Views: 5133
|
Forum: IBM MQ API Support Posted: Fri Apr 14, 2006 1:24 pm Subject: how to write a fastpath application |
More questions.... what version and csd of MQ...also, if you don't include the "mgr.setConnectOptions(MQCNO_FASTPATH_BINDING); " in the program and rebuild it, I assume it runs okay?
[zengjia@wbi08 ... |
Topic: how to write a fastpath application |
adder
Replies: 7 Views: 5133
|
Forum: IBM MQ API Support Posted: Fri Apr 14, 2006 1:05 pm Subject: how to write a fastpath application |
Okay, as long as you understand that you could destory the qmgr....
how did you link the program? (can you paste the link cmd?) Is it a client or server set of MQ libraries that you used?
serv ... |
Topic: how to write a fastpath application |
adder
Replies: 7 Views: 5133
|
Forum: IBM MQ API Support Posted: Fri Apr 14, 2006 12:20 pm Subject: how to write a fastpath application |
Why do you want to do this? Generally speaking, its very dangerous to do fast_path binding . You do have to potential to destroy qmgr objects.
yes, I know that, but I just write some test applic ... |
Topic: how to write a fastpath application |
adder
Replies: 7 Views: 5133
|
Forum: IBM MQ API Support Posted: Fri Apr 14, 2006 11:32 am Subject: how to write a fastpath application |
I just change code based on imqsput.cpp as following, but when I run this application, an connection error 2012 got, which is MQRC_ENVIRONMENT_ERROR. what other things need to do beside
mgr.setConn ... |
Topic: how to code dynamic reply to queue using C++ |
adder
Replies: 8 Views: 6979
|
Forum: IBM MQ API Support Posted: Thu Apr 13, 2006 4:58 pm Subject: how to code dynamic reply to queue using C++ |
found it, ImqQueue.name() |
Topic: how to code dynamic reply to queue using C++ |
adder
Replies: 8 Views: 6979
|
Forum: IBM MQ API Support Posted: Thu Apr 13, 2006 3:46 pm Subject: how to code dynamic reply to queue using C++ |
I don't know C++.
But I guess it would be just like other OO languages. Create the q object (as in open the model queue).
Then execute a method on the newly created q object that returns the nam ... |
Topic: how to code dynamic reply to queue using C++ |
adder
Replies: 8 Views: 6979
|
Forum: IBM MQ API Support Posted: Thu Apr 13, 2006 3:13 pm Subject: how to code dynamic reply to queue using C++ |
Open the model q to get the dynamic q name,
how to get dynamic queue name, this is just I want to ask. please. |
Topic: how to code dynamic reply to queue using C++ |
adder
Replies: 8 Views: 6979
|
Forum: IBM MQ API Support Posted: Thu Apr 13, 2006 2:31 pm Subject: how to code dynamic reply to queue using C++ |
yes, but I need actual queue name and set it as reply to queue name, but I don't know which method of ImqQueue can be used to get actual queue name. thanks
You get a dynamic queue by opening a model ... |