ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » IBM MQ API Support » IBM.WMQ.PCF

Post new topic  Reply to topic
 IBM.WMQ.PCF « View previous topic :: View next topic » 
Author Message
msantos007
PostPosted: Tue Mar 14, 2006 12:04 pm    Post subject: IBM.WMQ.PCF Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

Does anyone knows where da f$%& I can find some reference
for this dotnet namespace? Is there any additional DLL I need to
add reference to my assembly?
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
kevinf2349
PostPosted: Tue Mar 14, 2006 12:26 pm    Post subject: Reply with quote

Grand Master

Joined: 28 Feb 2003
Posts: 1311
Location: USA

Have you added a reference to AMQMDNET in your program?
Back to top
View user's profile Send private message
msantos007
PostPosted: Wed Mar 15, 2006 12:57 pm    Post subject: Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

Yeah... I can added the amqmdnet.dll at my project...
the problem is where can I find some documentation, or guide on how to use those classes.

Thanks
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
fjb_saper
PostPosted: Wed Mar 15, 2006 1:14 pm    Post subject: Reply with quote

Grand High Poobah

Joined: 18 Nov 2003
Posts: 20756
Location: LI,NY

Have you checked out the documentation and the .NET manual?
_________________
MQ & Broker admin
Back to top
View user's profile Send private message Send e-mail
msantos007
PostPosted: Fri Mar 17, 2006 5:20 pm    Post subject: Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

Yep Nothing...
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
kevinf2349
PostPosted: Fri Mar 17, 2006 7:55 pm    Post subject: Reply with quote

Grand Master

Joined: 28 Feb 2003
Posts: 1311
Location: USA

If you have included AMQMDNET dll you should be able to add refernces to all the CMQ** classes etc. Then you can see the constructs. In fact if you are using Visual Studio then it should show you the options as a tool tip.

Hope this helps
Back to top
View user's profile Send private message
PeterPotkay
PostPosted: Sat Mar 18, 2006 8:36 am    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

I just opened up an existing VB.NET app I had, and typed IBM.WMQ.PCF. , and got the drop down for all the PCF stuff.

You do have the following at the top of your code, right?
Code:
Imports IBM.WMQ


I am doing this with MQ 6.0.1.
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
msantos007
PostPosted: Sat Mar 18, 2006 5:07 pm    Post subject: Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

I know... I already did it.... I'm not looking for how can I import the PCF objects....I'm looking for documentation, manuals.
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
kevinf2349
PostPosted: Sat Mar 18, 2006 8:22 pm    Post subject: Reply with quote

Grand Master

Joined: 28 Feb 2003
Posts: 1311
Location: USA

I think the MQ manual "Using .NET" is fairly good, but I also recall reading a Red book that helped me. I will try and dig out the uRL at work on Monday.
Back to top
View user's profile Send private message
PeterPotkay
PostPosted: Sun Mar 19, 2006 7:40 am    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

Here is the link to the .NET Redbook:
http://publib-b.boulder.ibm.com/abstracts/sg247012.html?Open

But there is not a word mentioned about PCF in it. Same thing with the latest version of the Using .Net Manual.

Could it be that these classes are a work in progress, and not fully supported yet for .NET, so no documentation yet?

msantos007, what about refering to the MQ Java manual or the PCF Manual( http://publibfp.boulder.ibm.com/epubs/pdf/csqzac04.pdf )? Maybe the .net version is so similiar, all that info would apply? (I have never done anything with PCF in either language, so can't really say if this is a valid line of thinking)

From the PCF Manual:
Quote:
The MQAI is a programming interface to WebSphere MQ, using the C language and also Visual Basic for Windows.
So maybe yes for VB.NET as well?
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
markt
PostPosted: Sun Mar 19, 2006 7:44 am    Post subject: Reply with quote

Knight

Joined: 14 May 2002
Posts: 508

The PCF classes that happen to be visible in the .net code are
a) not supported
b) not documented
c) not up to date
Apart from that, feel free to use them!

The only supported way is to build the PCF message by hand as if you're writing C.
Back to top
View user's profile Send private message
msantos007
PostPosted: Mon Mar 20, 2006 3:34 am    Post subject: Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

It's kinda weird, IBM usually document and support everything that you pay for... and this PCF namespace, it exists since V5.2. But thanks a lot to everyone
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
kevinf2349
PostPosted: Mon Mar 20, 2006 6:12 am    Post subject: Reply with quote

Grand Master

Joined: 28 Feb 2003
Posts: 1311
Location: USA

Quote:
The only supported way is to build the PCF message by hand as if you're writing C.


So the Visual Basic examples in the IBM PCF manual are unsupported?
Back to top
View user's profile Send private message
msantos007
PostPosted: Tue Apr 04, 2006 9:45 am    Post subject: Reply with quote

Voyager

Joined: 20 Dec 2004
Posts: 78

nope..
visual basic pcfs are supported... the problem is
the pcf namespace in amqmdnet.dll
_________________
Maximiliano R. A. Santos
IBM Websphere MQ V6.0 Certified System Administrator
IBM Websphere MQ V5.3 Certified Solution Developer
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » IBM MQ API Support » IBM.WMQ.PCF
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.