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...
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...
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...
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...
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)
...
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...
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.
...
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...
Hi,
I want to use JMS to connect to IBM MQ.
How do i specify the queuemanager, the channel and other properties ?
...
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?
...
I am in the process of exploring integration between SSIS and IBM MQ Series. Can some point me to some artical for integration.
...
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.
...
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...
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...
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...
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#
...
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...
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 ...
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
...
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...