websphere-mq

Connecting to an MQ: Newbie question

Hi, I am a novice with Websphere MQ and require some novice help. I am using Websphere MQ Explorer to connect to a queue but do not know how to write the connection string. I have all the details (host, port, channel, queue manager name) but do not know how to put them together correctly as a connection string. Can any help this novice...

Pooling of custom WCF channel

We have developed a custom WCF channel which communicates via IBM Websphere MQ. We have created a channel factory: public class MqChannelFactory : ChannelFactoryBase<IRequestChannel> Which returns instances of our channel: public class MqRequestChannel : ChannelBase, IRequestChannel Connecting to the IBM MQ queue manager is an ex...

Setting LDAP Configuration in IBM Websphere Message Broker

Hi ...., I'm a newbe for message broker. I'm trying to create webservice security in message broker authenticated using LDAP. but the authentication is always fail in my SOAP message header I have specify the right user: wpsadmin and right password : 123 this is my ldap configuration: Quote: mqsicreateconfigurableservice WBRK61_DEFAU...

IBM MQSeries Problem

I am trying to write to an IBM MQSeries host with: public void WriteMessage(string message) { queueMessage = new MQMessage(); queueMessage.WriteString(message); queueMessage.Format = MQC.MQFMT_STRING; queuePutMessageOptions = new MQPutMessageOptions(); queue.Put(queueMessage, queuePutMessageOptions); } My errorcat...

how can I send messages to/from a Websphere Message Broker from an embedded C client (no JVM)?

What are my options for pubsubing (or point to point but pubsub is better) messages to and from an IBM message broker from an embedded headless C/C++ linux client that doesn't have a JVM? Ideally we want large file transfer (2GB once per day off of the client) encryption (SSL) reliable ('assured' delivery / QoS2, maybe QoS1 would do) ...

Using VS 2008 Load Test with WebSphere MQ

I need to load test a server that supports WebSphere MQ, web service and MSMQ interfaces. Currently I use proprietary load drivers for testing via WebSphere MQ and the web service, and we don't currently test MSMQ (it's new, and just being developed). I would like to "standardize" on a single load test tool; does anyone know if you can t...

Creating IBM MQ queues from C# code.

Is is possable to create and delete queues using the amqdnet wrapper, or some other API from c# code? I'ld like to be able to create some queues as part of an automated test suite if required. Thanks. ...

Connect to ibm mq with jms . Specify the channel and queue manager

How do i specify which queue manager to connect to in my system properties. Here is the code: Properties properties = new Properties(); properties.setProperty("java.naming.factory.initial", "com.ibm.mq.jms.context.WMQInitialContextFactory"); properties.setProperty("java.naming.provider.url", "localhost:1414/SYSTEM.DEF.SVRCONN"); Cont...

Using JMS to connect to IBM MQ

Hi, I want to use JMS to connect to IBM MQ. How do i specify the queuemanager, the channel and other properties ? ...

Logs in WebSphere MQ

We have messages coming in over a WebSphere MQ queue. It takes a long time before we receive the message. Is there a simple, easy way of tracking when a message gets received/picked up? ...

SSIS and IBM MQ Series integration

I am in the process of exploring integration between SSIS and IBM MQ Series. Can some point me to some artical for integration. ...

Websphere MQ Authentication and Key Certificates

I would like to authenticate the user against the MQ Series before user places the Queue message in Queue manager. I am using the IBM MQ Series V7. I would like to know how does the authentication and Key certificate works in terms of validation. It will be great if i can get any helpful links on the same. ...

How can I read a IBM WebSphere MQ message of format type MQEVENT in c#

I can get the event messages from the queue. I get the message properties. I am pretty sure the MQEVENT type is in PCF format but I cannot seem to find any good documentation on how to take that message and convet it into human readable format. AccountingToken ApplicationIdData ApplicationOriginData BackoutCount 0 BackoutCount...

How to connect to local MQseries queue using Python?

I am new to mqseries and I started with IBM WebSphere MQ curses. There are examples with MQ_APPLE and MQ_ORANGE queue managers. I have no problem with sending messages to local or remote queue with MQ Explorer, but I wanted to send such message from code: Python or Java. I tried Python pymqi library with code like this: import pymqi qm...

How to check which point is cause of problem with MQ?

I use MQ for send/receive message between my system and other system. Sometime I found that no response message in response queue, yet other system have already put response message into response queue (check from log). So, how to check which point is cause of problem, how to prove message is not arrive to my response queue. In addition...

Test SSL Certificate for MQ SSL Testing

I am in the process of testing MQ calls over the SSL. I woul like to know where i can get some demo SSL certificates. That i can use them for testing. I also would like to know if there any code sample which i can use to pass SSL kind of connection. The exaple i am looking is in C# ...

How to make multiple instances of RCVR, RQSTR and CLUSRCVR channels in WMQ?

This is a follow up on the question below, but it deserves another question. http://stackoverflow.com/questions/1821514/are-server-conn-and-client-conn-channels-the-only-channels-that-could-have-more-t To my understanding, a receiver (or cluster receiver) channel usually pair up with a single sender (or cluster sender) channel. How ca...

.NET client connecting to IBM MQ over SSL

I got key files from our client where I need to use them to connect to MQ over SSL. The files we have got from client are: xxx.crl xxx.kdb xxx.rdb xxx.sth xxx.tab They said client channel table in that. I am trying to connect using the below code. And they are saying I don't need to specify the Queue Manager it will be defined ...

WebSphere MQ .NET API

All, Is there a WebSphere MQ .NET API I can download ? I am basically trying to write a C# app that listens for messages in an MQ queue. Thanks, Marios ...

Connecting to a Websphere MQ in Java with SSL/Keystore

I'd like to connect to a Websphere 6.0 MQ via Java. I have already working code for a "normal" queue, but now I need to access a new queue which is SSL encrypted (keystore). I have been sent a file called something.jks, which I assume is a certificate I need to store somewhere. I have been searching the net, but I can't find the right...