Hi,
when i try to connect to IBM MQ manager, i get the following error
An unhandled exception of type 'System.NullRef erenceException '
occurred in
Unknown Module.
Additional information: Object reference not set to an instance of an
object.
Here is my code:
Regards, Selami Ozlu selamiozlu
Try
If mChannel <"" Then
mqQMgr = New MQQueueManager( mManagerName, channelName,
connectionName)
ElseIf mManagerName <"" Then
mqQMgr = New MQQueueManager( mManagerName)
Else
mqQMgr = New MQQueueManager
End If
Catch ex As Exception
Throw New Exception("Mana ger failed: " & ex.Message)
End Try
when i try to connect to IBM MQ manager, i get the following error
An unhandled exception of type 'System.NullRef erenceException '
occurred in
Unknown Module.
Additional information: Object reference not set to an instance of an
object.
Here is my code:
Regards, Selami Ozlu selamiozlu
Try
If mChannel <"" Then
mqQMgr = New MQQueueManager( mManagerName, channelName,
connectionName)
ElseIf mManagerName <"" Then
mqQMgr = New MQQueueManager( mManagerName)
Else
mqQMgr = New MQQueueManager
End If
Catch ex As Exception
Throw New Exception("Mana ger failed: " & ex.Message)
End Try
Comment