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 » VB.Net problem (probably simple)

Post new topic  Reply to topic Goto page 1, 2  Next
 VB.Net problem (probably simple) « View previous topic :: View next topic » 
Author Message
klamerus
PostPosted: Wed Aug 17, 2005 4:14 pm    Post subject: VB.Net problem (probably simple) Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Help.

I can use the following VB.Net code which came with CSD10 (I think) to connect up to and send a test message to a test queue named Test1 on my laptop. I pretty much have a default local install.

If I uncomment the three statements for the environment variables for the hostname, channel, and port it fails.

Can anyone explain what might be wrong and what to test?

Thanks.





Imports System
Imports IBM.WMQ
Imports System.Text

Module TestPut

Sub main()

Dim qMgr As MQQueueManager 'MQQueueManager instance
Dim mqQueue As MQQueue 'MQQueue instance
Dim Msg As MQMessage 'MQMessage instance
Dim pmo As MQPutMessageOptions 'MQPutMessageOptions instance
Dim qName As String 'Name of queue to use
Dim qManager As String 'Name of the queue manager
Dim message As String 'Message buffer
Dim openOptions As Integer 'Open Options
Dim strTest As String

strTest = "6789"

'set Environmental variables in order to connect to the MQ server
'MQEnvironment.Hostname = "127.0.0.1"
'MQEnvironment.Channel = "SYSTEM.ADMIN.CHANNEL.QUEUE"
'MQEnvironment.Port = 1414

qManager = "QM_pikachu"
qName = "Test1"

'Try to create an instance of the qMgr
Try
qMgr = New MQQueueManager(qManager)
Catch mqe As IBM.WMQ.MQException
'stop if failed
System.Console.WriteLine("create of MQQueueManager ended with {0}", mqe.Message)
'Return (mqe.Reason)
End Try

'Try to open the queue
Try
openOptions = MQC.MQOO_OUTPUT + MQC.MQOO_FAIL_IF_QUIESCING
mqQueue = qMgr.AccessQueue(qName, openOptions) 'open queue for output but not if MQM stopping
Catch mqe As IBM.WMQ.MQException
'stop if failed
System.Console.WriteLine("MQqManager::AccessQueue ended with {0}", mqe.Message)
'Return (mqe.Reason)
End Try

'put the message to the queue
message = "Hellow World!"
Msg = New MQMessage
Msg.MessageId = StringToByteArray(strTest)
Msg.WriteString(message)
Msg.Format = MQC.MQFMT_STRING
pmo = New MQPutMessageOptions
Try
mqQueue.Put(Msg, pmo)
mqQueue.Close()
qMgr.Disconnect()
Catch mqe As IBM.WMQ.MQException
'report the error
System.Console.WriteLine("MQQueue::Put ended with {0}", mqe.Message)
End Try

End Sub

Public Function StringToByteArray(ByVal stringToConvert As String) As Byte()
Return (New UnicodeEncoding).GetBytes(stringToConvert)
End Function


End Module
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
klamerus
PostPosted: Wed Aug 17, 2005 4:16 pm    Post subject: Error Message Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

The error message I get is:

"create of MQQueueManager ended with MQRC_Q_MGR_NOT_AVAILABLE"

If that helps. Is it the Channel name?
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
jefflowrey
PostPosted: Wed Aug 17, 2005 4:37 pm    Post subject: Reply with quote

Grand Poobah

Joined: 16 Oct 2002
Posts: 19981

Yeah, that's a weird channel name.

And it's probably not a SVRCONN channel, either.
_________________
I am *not* the model of the modern major general.
Back to top
View user's profile Send private message
klamerus
PostPosted: Wed Aug 17, 2005 4:48 pm    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

I've also tried

MQEnvironment.Channel = "SYSTEM.ADMIN.SVRCONN"

with no better result as well as

MQEnvironment.Channel = "SYSTEM.DEF.SVRCONN"

Is there a default channel for a local install that should "always" work?
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
klamerus
PostPosted: Wed Aug 17, 2005 4:54 pm    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Not that this helps, but just in case, this is
VB.Net on Windows XP with MQ 5.3

I also tried NOT specifying the port = same result.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
klamerus
PostPosted: Wed Aug 17, 2005 5:40 pm    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Interestingly enough, I modified these environment and the qmanager and qname for a server at work and VPN'd into the company network to test against a server I ahd set up there. The server at work is a real Windows 2000 server (yes, that's an oxymoron).

I set these values and this worked, so I have to conclude there's something bogus about the valuesI was using for working with my desktop. I'm going to take a spin at installing WebSphere MQ on a VMWare guest OS I have. If that works (with another set of names), I'll have to conclude that you simply cannot work client/server with yourself.

MQEnvironment.Hostname = "USMDLSDOWA051"
MQEnvironment.Channel = "SYSTEM.DEF.SVRCONN"
MQEnvironment.Port = 1414

qManager = "OMDVAT1.QM"
qName = "TEMP.MEK"
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
fjb_saper
PostPosted: Wed Aug 17, 2005 6:22 pm    Post subject: Reply with quote

Grand High Poobah

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

I suggest you check as well the mcauser on the client channel.
Those names were pretty generic and may usually get blocked using a non existing mcauser on the channel...

Are you sure your firewall permits the connections on your laptop ? (XP SP-2)

Enjoy
Back to top
View user's profile Send private message Send e-mail
klamerus
PostPosted: Thu Aug 18, 2005 7:57 am    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Interesting.....hadn't thought about the firewall.

I'll try both suggestions next. I appreciate the ideas.

At the moment, I'm installing MQ 5.3 on my guest OS (which is Win 2003). To quote Martha Stewart, Having VMWare is a very good thing.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
klamerus
PostPosted: Thu Aug 18, 2005 10:59 am    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Well, the MCA on my channels are blank.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
jefflowrey
PostPosted: Thu Aug 18, 2005 11:11 am    Post subject: Reply with quote

Grand Poobah

Joined: 16 Oct 2002
Posts: 19981

If you are having trouble with the firewall, Event Viewer should indicate that a 2009 occurred or a channel terminated.

SYSTEM.DEF.SVRCONN should work on all systems.

You did explictly tell VB that you want to bind against the MQ Client, right? Because if you didn't, it may be binding against the Server, and hosing you up.
_________________
I am *not* the model of the modern major general.
Back to top
View user's profile Send private message
klamerus
PostPosted: Thu Aug 18, 2005 12:21 pm    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Well, this isn't VB, it's VB.Net, so the library I'm referencing in the project is amqmdnet.dll. I'm only aware of one library to use in a .Net assembly.

I temporarily turned off my firewall and I get the same error, which I've shown before (and isn't terribly useful).

I'm wondering if this isn't a security issue becuase I think I had the same error with the server I'm testing on our network before I gave myself elevated access. I can also see that if I'm specifying a server and a channel and a port that maybe I'm forcing a connection as if I were connecting across the network (sort of like pinging to 127.0.0.1 vs. pinging to your own system name).

Unfortunately, I also currently get the same error on the VMWare guest operating system (Windows 2003), so I'm going to try and give everyone full access to that QM (which is hidden from the network) and see what happens.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
PeterPotkay
PostPosted: Thu Aug 18, 2005 4:59 pm    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

klamerus wrote:
If that works (with another set of names), I'll have to conclude that you simply cannot work client/server with yourself.



What is the original problem again?

A VB.NET app can connect to a QM running on the same machine as the code in either Client mode or Bindings mode. I'm afraid I don't understand the problem.
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
klamerus
PostPosted: Fri Aug 19, 2005 10:43 am    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

Yeah, me neither.

I can connect fine to the QM on my machine so long as I don't specify the environment variables (hostname, port, channel), but I can't if I do.

Yet, if I do specify these, I can connect to servers on the network.

I think that fjb_saper is on to something regarding security. I've set up no security on any channels on my laptop (don't usually use the MQ running on my laptop). I just left things with the defaults.

I'm kind of thinking this is it also because I'm running MQ on the guest Windows 2003 I'm running as a guest OS in VMWare and I get the same errors connecting to it (where I also currently have a default install).

We did security right on the servers on the network, and I don't need to use any channels (I don't think) if I go with the defaults (or do I).

Is there a way to set the security wide, wide open? I could do this for either temporarily since I have nothing in them.
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
PeterPotkay
PostPosted: Fri Aug 19, 2005 10:50 am    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

OK, just to prove or disprove the MQ security, set up a SVRCONN channel where the MCAUSER is coded to a value of an ID in the mqm group.

Then do a dspmq to prove the QM is running.

Then code the following, and tell us what happens:
Code:

Dim myHashTable As New Hashtable
myHashTable.Add(IBM.WMQ.MQC.CHANNEL_PROPERTY, "Your SVRCONN Client Channel Name")
myHashTable.Add(IBM.WMQ.MQC.HOST_NAME_PROPERTY, "Your hostname or IP address")
myHashTable.Add(IBM.WMQ.MQC.PORT_PROPERTY, "your port #")
myQM = New MQQueueManager(" ", myHashTable) 'OK to leave QM name blank for client connects - not needed

_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
klamerus
PostPosted: Fri Aug 19, 2005 2:19 pm    Post subject: Reply with quote

Disciple

Joined: 05 Jul 2004
Posts: 199
Location: Detroit, MI

I'll take a swing through that, but first figured I'd dump out some security so I ran the douple of dumps I know of...

I did AMQOAMD and got...

AMQOAMD
********
Queue Manager - PIKACHU.QM

ObjectType: qmgr
ObjectName: SELF

User name: MUSR_MQADMIN@PIKACHU
Authorities: altusr connect inq set setall setid chg crt dlt dsp (0x009f07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008


ObjectType: qmgr
ObjectName: @CLASS

User name: MUSR_MQADMIN@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1008


ObjectType: queue
ObjectName: SYSTEM.DEFAULT.LOCAL.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.DEFAULT.MODEL.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.DEFAULT.ALIAS.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.DEFAULT.REMOTE.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.DEFAULT.INITIATION.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.ADMIN.COMMAND.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CICS.INITIATION.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.MQSC.REPLY.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.DEAD.LETTER.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: process
ObjectName: SYSTEM.DEFAULT.PROCESS

User name: MUSR_MQADMIN@PIKACHU
Authorities: inq set chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: inq set chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: process
ObjectName: @CLASS

User name: MUSR_MQADMIN@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CHANNEL.INITQ

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CHANNEL.SYNCQ

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.ADMIN.QMGR.EVENT

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.ADMIN.PERFM.EVENT

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.ADMIN.CHANNEL.EVENT

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CLUSTER.TRANSMIT.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CLUSTER.COMMAND.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.CLUSTER.REPOSITORY.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: SYSTEM.PENDING.DATA.QUEUE

User name: MUSR_MQADMIN@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: namelist
ObjectName: SYSTEM.DEFAULT.NAMELIST

User name: MUSR_MQADMIN@PIKACHU
Authorities: inq chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: inq chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: namelist
ObjectName: @CLASS

User name: MUSR_MQADMIN@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: authinfo
ObjectName: SYSTEM.DEFAULT.AUTHINFO.CRLLDAP

User name: MUSR_MQADMIN@PIKACHU
Authorities: inq chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: inq chg dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: authinfo
ObjectName: @CLASS

User name: MUSR_MQADMIN@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


ObjectType: queue
ObjectName: @CLASS

User name: MUSR_MQADMIN@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1008

User name: mqm@PIKACHU
Authorities: crt (0x00010000)
SID: S-1-5-21-1547161642-920026266-1343024091-1007

User name: nus8281@PIKACHU
Authorities: None (0x00000000)
SID: S-1-5-21-1547161642-920026266-1343024091-1003


ObjectType: queue
ObjectName: Test1

User name: nus8281@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1003

User name: mqm@PIKACHU
Authorities: browse get inq passall passid put set setall setid chg clr dlt dsp (0x001e07ff)
SID: S-1-5-21-1547161642-920026266-1343024091-1007


28 of 28 message(s) printed




I also did dmpmqaut and got...


profile: @CLASS

object type: authinfo

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: crt

- - - - - - - -
profile: @CLASS

object type: authinfo

entity: mqm@PIKACHU

entity type: group

authority: crt

- - - - - - - -
profile: SYSTEM.MQSC.REPLY.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.MQSC.REPLY.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.COMMAND.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.COMMAND.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.QMGR.EVENT

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.QMGR.EVENT

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.AUTHINFO.CRLLDAP

object type: authinfo

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.AUTHINFO.CRLLDAP

object type: authinfo

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.PROCESS

object type: process

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.PROCESS

object type: process

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.ADMIN.COMMAND.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.COMMAND.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CICS.INITIATION.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CICS.INITIATION.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CHANNEL.INITQ

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CHANNEL.INITQ

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.NAMELIST

object type: namelist

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.NAMELIST

object type: namelist

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.INITIATION.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.INITIATION.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.REPOSITORY.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.REPOSITORY.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.MODEL.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.MODEL.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEAD.LETTER.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEAD.LETTER.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.PENDING.DATA.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.PENDING.DATA.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.LOCAL.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.LOCAL.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CHANNEL.SYNCQ

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CHANNEL.SYNCQ

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SELF

object type: qmgr

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi crt dlt chg dsp

- - - - - - - -
profile: SYSTEM.DEFAULT.REMOTE.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.REMOTE.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.ALIAS.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.DEFAULT.ALIAS.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.TRANSMIT.QUEUE

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.CLUSTER.TRANSMIT.QUEUE

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.PERFM.EVENT

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.PERFM.EVENT

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: @CLASS

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: crt

- - - - - - - -
profile: @CLASS

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: crt

- - - - - - - -
profile: @CLASS

object type: queue

entity: nus8281@PIKACHU

entity type: principal

authority: none

- - - - - - - -
profile: @CLASS

object type: namelist

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: crt

- - - - - - - -
profile: @CLASS

object type: namelist

entity: mqm@PIKACHU

entity type: group

authority: crt

- - - - - - - -
profile: @CLASS

object type: process

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: crt

- - - - - - - -
profile: @CLASS

object type: process

entity: mqm@PIKACHU

entity type: group

authority: crt

- - - - - - - -
profile: Test1

object type: queue

entity: nus8281@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: Test1

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: @CLASS

object type: qmgr

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: crt

- - - - - - - -
profile: SYSTEM.ADMIN.CHANNEL.EVENT

object type: queue

entity: MUSR_MQADMIN@PIKACHU

entity type: principal

authority: allmqi dlt chg dsp clr

- - - - - - - -
profile: SYSTEM.ADMIN.CHANNEL.EVENT

object type: queue

entity: mqm@PIKACHU

entity type: group

authority: allmqi dlt chg dsp clr
Back to top
View user's profile Send private message Send e-mail AIM Address Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic  Reply to topic Goto page 1, 2  Next Page 1 of 2

MQSeries.net Forum Index » IBM MQ API Support » VB.Net problem (probably simple)
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.