Author |
Message
|
mq_crazy |
Posted: Fri Jul 30, 2004 11:57 am Post subject: MQ installation |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
does anyone know is there any MQSeries client install for .NET. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Fri Jul 30, 2004 12:36 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
Yes, at 5.3 CSD05, the MQ install for a Windows machine (either the server version or the client version) installs the amqmdnet.dll, which contains the .NET classes for MQ. Use 5.3 CSD07 though to get the latest version which has many bugs fixed.
You also get a pdf installed that is a doc for MQ and .NET. That doc is also available if you click on the Documentation button at the top of this screen. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
jefflowrey |
Posted: Sat Jul 31, 2004 7:38 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
And remember to register the .dll in the gac.
Every time you update the .dll, you need to re-register it!
Right Jason?  _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
JasonE |
Posted: Sat Jul 31, 2004 8:24 am Post subject: |
|
|
Grand Master
Joined: 03 Nov 2003 Posts: 1220 Location: Hursley
|
Yes Yes Yes
If you put it in the GAC, rew-register it after every fixpack (how many problems have I seen because of this )
The alternative is to not put it in the GAC and use config files to point to where the amqmdnet.dll lives - I generally use this nowdays if building from the comman line, due to the number of versions of the dll I play with.
We cant say that too often! Hopefully this wont be a problem after 5.3! |
|
Back to top |
|
 |
mq_crazy |
Posted: Mon Aug 02, 2004 6:45 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
thanks a lot guys for all your replies, could you please tell me how can i register that .dll file in gac. |
|
Back to top |
|
 |
JasonE |
Posted: Mon Aug 02, 2004 8:12 am Post subject: |
|
|
Grand Master
Joined: 03 Nov 2003 Posts: 1220 Location: Hursley
|
Read the memo.ptf file (installed in the PTF\en_us directory) - Its amazing the information we provide in there!
gacutil /i amqmdnet.dll |
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Aug 02, 2004 12:05 pm Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
I find it a lot easier to just add or delete it from the .NET IDE. Go to the the Solutions Explorer View, and right click on References to Add A Reference, navigate to the amqmdnet.dll, and add it. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
|