Author |
Message |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Thu Feb 17, 2005 5:00 am Subject: Lost message |
Yes ,
That was the client's request. They will only allow a 4k file to be sent to their queue. My files were 20k. |
Topic: Access MQ Queues from ASP.NET APPLICATION |
swood
Replies: 10 Views: 15644
|
Forum: General IBM MQ Support Posted: Fri Feb 11, 2005 5:40 am Subject: Access MQ Queues from ASP.NET APPLICATION |
Thanks for pointing that out jefflowrey...that changes things a lot.
It appears that I have been lazy and didn't test something I read. I have changed the login account on my test server to be in ... |
Topic: Access MQ Queues from ASP.NET APPLICATION |
swood
Replies: 10 Views: 15644
|
Forum: General IBM MQ Support Posted: Thu Feb 10, 2005 7:13 pm Subject: Access MQ Queues from ASP.NET APPLICATION |
If you are using forms authentication in your web app then you are running under the ASP.NET Machine Account(ASPNET). You need an administrator account to connect to the MQ Server and it must match o ... |
Topic: Reason 2058 error |
swood
Replies: 15 Views: 20325
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Jan 28, 2005 11:43 am Subject: Reason 2058 error |
amqsputc SYSTEM.DEFAULT.LOCAL.QUEUE queue.manager.1
amqsputc queueOnTheServer QMOnTheServer
You have a queue on the server defined and should be using that name. |
Topic: Post/view queue messages on MQServer through MQClient in C# |
swood
Replies: 5 Views: 5051
|
Forum: IBM MQ Installation/Configuration Support Posted: Thu Jan 27, 2005 8:23 am Subject: Post/view queue messages on MQServer through MQClient in C# |
I haven't used C# in a while so be careful with the syntax and case in here:
Hashtable ConSettings = New Hashtable();
ConSettings.Add(IBM.WMQ.MQC.CHANNEL_PROPERTY, _ClientChannel);//Channel set ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Thu Jan 27, 2005 8:10 am Subject: Lost message |
Thanks everyone,
I didn't know I could set the report flag when using the client. I get an error about not setting the reply-to queue, which I don't think I can create for access, using the client ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Sat Jan 22, 2005 1:57 pm Subject: Lost message |
Sorry,
I have only been using the MQ for a couple of months. I realize it got there but I thought I would get a warning about message size larger than queue size or something like that. |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Sat Jan 22, 2005 10:53 am Subject: Lost message |
I found the lost messages. The customers queue was set to recieve no messages larger than 4096 bytes and ours was 20480 bytes. They were going into the dead letter queue. I am surprised I didn't g ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Wed Jan 19, 2005 10:57 am Subject: Lost message |
Yes, using the demo of mq series locally this is the flow:
-Customer uploads data to our db at any time which also adds entry to our db queue.
-Windows service,running already, has read params for M ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Wed Jan 19, 2005 9:08 am Subject: Lost message |
Thanks,
I have set the SYNCHPOINT in this way:
Dim synchPmo As MQPutMessageOptions = New MQPutMessageOptions()
synchPmo.Options = MQC.MQPMO_SYNCPOINT
_Queue.Put ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Wed Jan 19, 2005 6:30 am Subject: Lost message |
I agree about the connection and I tested locally on a server with the everything set up the same except the ip of course. I can put both messages in the queues like it is supposed to.
Could you ... |
Topic: Lost message |
swood
Replies: 15 Views: 11662
|
Forum: IBM MQ API Support Posted: Tue Jan 18, 2005 5:55 pm Subject: Lost message |
I am getting a connection from MQ using the .NET client classes. I need to put a message in a 'Header' queue and then put a message in a 'Data' queue. This is the flow:
1. Get a queue manager. W ... |
Topic: Mq .NET client "unknown object error" when accessi |
swood
Replies: 5 Views: 5733
|
Forum: IBM MQ API Support Posted: Mon Jan 17, 2005 6:31 am Subject: Mq .NET client "unknown object error" when accessi |
Okay fixed the problem,
it seems to be in the way I set up the PutMessageOptions.
...Originally tried...
_pmo = New MQPutMessageOptions()
_pmo.Options = 0
_pmo.Options = _pmo.Options + MQ ... |
Topic: Mq .NET client "unknown object error" when accessi |
swood
Replies: 5 Views: 5733
|
Forum: IBM MQ API Support Posted: Sun Jan 16, 2005 6:17 pm Subject: Mq .NET client "unknown object error" when accessi |
Sorry,
this is all triggered by a windows service that uses this component to communicate with the MQServer. On the specified hour, the service will pull data from a database using parameters from a ... |
Topic: Mq .NET client "unknown object error" when accessi |
swood
Replies: 5 Views: 5733
|
Forum: IBM MQ API Support Posted: Sun Jan 16, 2005 1:22 pm Subject: Mq .NET client "unknown object error" when accessi |
This implementation is currently a windows service running under an administrators' account that matches the MQServer's account. This was changed to a windows app for debugging and I am now logging in ... |