Questions tagged [xms]

XMS is a C, C++, and .NET API to IBM WebSphere MQ that implements the JMS API.

IBM Message Service Client for C/C++ and IBM Message Service Client for .NET provide an application programming interface (API) called XMS that has the same set of interfaces as the Java Message Service (JMS) API. For more information, see Introduction to the IBM Message Service Client for .NET.

XMS is used to communicate as an IBM MQ client and requires an IBM MQ queue manager to which the XMS application can connect. For more information please see the tag wiki.

94 questions
0
votes
1 answer

Unable to connect to Websphere MQ Manager using XMS

This code reproduces the issue: #include #include int main() { try { xms::ConnectionFactory factory; factory.setIntProperty(XMSC_CONNECTION_TYPE, XMSC_CT_WMQ); …
Nawaz
  • 353,942
  • 115
  • 666
  • 851
0
votes
1 answer

IBM.XMS.Admin error while connecting to LDAP on Windows 8

I am getting following exception only in windows 8. XMSAO0121E: An error was returned from the LDAP naming service. A call has been made to the LDAP naming service which did not complete successfully. Review the linked exception details for further…
Pawan
  • 83
  • 9
-1
votes
1 answer

Check connection between two Queue managers

I have an application that communicate with local IBM MQ Queue Manager that is also connected with a remote Queue Manager. Is there an event in the IBM c# API that can notify me when the connection between the local and the remote queue manager…
Erez
  • 6,405
  • 14
  • 70
  • 124
-1
votes
1 answer

Websphere MQ using XMS.Net

I wanted to understand how can I use Web sphere MQ for the following scenario: 1.How I can read the message from the queue without removing that message from the queue. 2. We have a web application so we need the Listener to read the Queue. Is…
1 2 3 4 5 6
7