Author |
Message
|
roy |
Posted: Mon Sep 22, 2003 12:36 am Post subject: Support package .net for MQe ? |
|
|
Newbie
Joined: 22 Sep 2003 Posts: 1
|
Hi,
Is it possible to use the package mentioned support package for .net towards MQE on PocketPC2002?
/Roy |
|
Back to top |
|
 |
ping master |
Posted: Tue Oct 07, 2003 1:36 pm Post subject: |
|
|
 Centurion
Joined: 20 Sep 2002 Posts: 116 Location: USA
|
Quote: |
Just wanted to update the board with an email I received from Todd.
"We have changed our plans slightly; the supported code will be coming out with an MQV5.3 CSD rather than as a Cat3 SupportPac. This should be CSD5, may be in August, but more realistically in September." |
Any word yet? |
|
Back to top |
|
 |
jwendorf |
Posted: Tue Oct 07, 2003 1:46 pm Post subject: |
|
|
Acolyte
Joined: 15 May 2001 Posts: 63 Location: Madison, WI
|
I had a PMR open and asked the support person I was working with
about CSD05 for V5.3. He said it would be about three more weeks. We will have to see.  |
|
Back to top |
|
 |
jwendorf |
Posted: Tue Oct 21, 2003 6:09 am Post subject: |
|
|
Acolyte
Joined: 15 May 2001 Posts: 63 Location: Madison, WI
|
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Oct 27, 2003 6:35 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
I installed CSD05 on my laptop that has full MQ5.3 on it.
What do I need to give the developer who only has MQClient 5.3 CSD04 to take advantage of this? The MQClient download is still at CSD04.
If I email him the pdf file "WebSphere MQ - Using .NET" as well as the amqmdnet.dll file from C:\Program Files\IBM\WebSphere MQ\bin, will he be all set? _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
jefflowrey |
Posted: Mon Oct 27, 2003 6:59 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
It may be worth trying to run CSD05 on the client only install.
But maybe on a scratch client install first.  _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Oct 27, 2003 7:01 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
Is that safe? Is the CSD meant to be run on both Servers and Clients? _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
mvcg |
Posted: Tue Nov 11, 2003 6:36 pm Post subject: |
|
|
Novice
Joined: 02 Jul 2003 Posts: 11
|
I posted this question as a different topic, but maybe someone here can help me. I wrote an application with the .NET Framework using MA7P that worked just fine. I installed CSD05 and now after connecting to the QueueManager I get 2018 - MQRC_HCONN_ERROR whenever I try to do something with the QueueManager (like begin a transaction) or any queues within it. I changed nothing else in my application.
Sorry to post the question again, but I'm baffled and reallyl need to get this fixed.
Any help is GREATLY appreciated.
Thanks,
-Mark |
|
Back to top |
|
 |
PeterPotkay |
Posted: Wed Nov 12, 2003 4:52 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
This may or may not be related, but when you instal CSD05, the ptf has the below special instructions for .NET. Did you run the command?
Quote: |
A) Fix Pack CSD05 (PTF U200197)
----------------------------
Special instructions:
This fixpack (CSD) adds support for the Windows .NET environment
WebSphere MQ Classes for .NET
=============================
Description
-----------
The 'WebSphere MQ Classes for .NET' allow WebSphere MQ to be invoked
from Microsoft .NET applications. Samples provide illustrations of
how to use the MQI from a .NET environment.
Documentation
-------------
Information on the classes can be found in pdf file csqzav01.pdf
which is installed in this Fix Pack at
C:\Program files\IBM\WebSphere MQ\csqzav01.pdf
Installation
------------
Applications build against the 'WebSphere MQ Classes for .NET'
assembly (amqmdnet.dll) will cause the CLR to throw a
'FileNotFoundException'. This is because the CLR can't find the
assembly in the application.
To allow the CLR to find the assembly either:
Share the assembly by installing it in the 'global assembly cache'
(GAC).
The 'WebSphere MQ Classes for .NET' assembly is installed in the
GAC by executing the following command:
gacutil /i amqmdnet.dll
This will all applications to find the assembly.
Alternatively a config file can be created to tell the CLR where to
find the 'WebSphere MQ Classes for .NET' assembly.
Example config file for nmqsget.exe (config file name is
application.exe.config - ie nmqsget.exe.config)
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="amqmdnet" publicKeyToken="dd3cb1c9aae9ec97" culture="neutral" />
<codeBase version="1.0.0.3" href="file://c:\mqm\bin\amqmdnet.dll" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
|
_________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
dpchiesa |
Posted: Wed Nov 19, 2003 2:26 pm Post subject: careful! |
|
|
 Apprentice
Joined: 29 May 2002 Posts: 46
|
all the .NET stuff is contained in amqmdnet.dll.
The problem is that within that assembly, there may be a dependency on something else that has been updated with CSD05.
So... maybe just dropping amqmdnet.dll into a CDS04 machine will work... and maybe it won't? But you can be sure that is not how IBM tested it.
disclaimer: I don't work for IBM.
-DC _________________ -dpchiesa |
|
Back to top |
|
 |
JasonE |
Posted: Thu Nov 20, 2003 2:43 am Post subject: |
|
|
Grand Master
Joined: 03 Nov 2003 Posts: 1220 Location: Hursley
|
As far as I know, it does require updated internals |
|
Back to top |
|
 |
PeterPotkay |
Posted: Thu Nov 20, 2003 8:13 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
Mark, did you update your Framework to 1.1? _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
Leigh Kendall |
Posted: Thu Nov 20, 2003 8:31 am Post subject: |
|
|
 Acolyte
Joined: 10 Apr 2003 Posts: 66 Location: Hartford, CT
|
What's the process to install the CSD05? (I'm new to this...)
We're using the 1.1 Framework with MQ Server 5.3 with MA7P.
Thanks... _________________ Leigh Kendall |
|
Back to top |
|
 |
JasonE |
Posted: Thu Nov 20, 2003 8:42 am Post subject: |
|
|
Grand Master
Joined: 03 Nov 2003 Posts: 1220 Location: Hursley
|
|
Back to top |
|
 |
Leigh Kendall |
Posted: Thu Nov 20, 2003 9:19 am Post subject: |
|
|
 Acolyte
Joined: 10 Apr 2003 Posts: 66 Location: Hartford, CT
|
Thanks... I see from a previous post that part of the ptf file was posted to the group.
Regarding that post and the specific instructions about installing amqmdnet.dll in the GAC or modifying the config file, wouldn't it be possible to just specify Copy Local on the reference in your .NET project? _________________ Leigh Kendall |
|
Back to top |
|
 |
|