Author |
Message |
Topic: XMS or amqmnet |
GenCode
Replies: 4 Views: 5319
|
Forum: General Discussion Posted: Wed Jan 04, 2017 12:46 pm Subject: XMS or amqmnet |
I guess if there is no real reason to migrate to XMS
Thanks for the reply.
Very interesting that we have 2 .NET API paths that seem to accomplish the same thing (basically). |
Topic: XMS or amqmnet |
GenCode
Replies: 4 Views: 5319
|
Forum: General Discussion Posted: Wed Jan 04, 2017 11:42 am Subject: XMS or amqmnet |
Yes I know they are 2 different things and I have projects that use both.
That was not the question, the question was is one End Of Life.
From the reply I assume that neither is at end of life so ... |
Topic: XMS or amqmnet |
GenCode
Replies: 4 Views: 5319
|
Forum: General Discussion Posted: Wed Jan 04, 2017 11:30 am Subject: XMS or amqmnet |
When starting a new project should I be using XMS or amqmnet or does it really matter?
I am asking because I though I read that amqmnet was on a EOL path but not sure where I read that. Is that tr ... |
Topic: Check Q manager status before calling IMessageProduce.Send |
GenCode
Replies: 8 Views: 15929
|
Forum: IBM MQ API Support Posted: Fri Feb 19, 2016 6:28 am Subject: Check Q manager status before calling IMessageProduce.Send |
" Every call to MQ should be able to catch and handle the exception if the connection drops, or any other unexpected error. In most cases the action should be to abandon / rollback the transactio ... |
Topic: Check Q manager status before calling IMessageProduce.Send |
GenCode
Replies: 8 Views: 15929
|
Forum: IBM MQ API Support Posted: Thu Feb 18, 2016 12:05 pm Subject: Check Q manager status before calling IMessageProduce.Send |
That would be okay, that rare instance I would reject it back to the DB with a failed to send status in the try catch and we will have a user resend later. This is what I want to prevent when possibl ... |
Topic: Check Q manager status before calling IMessageProduce.Send |
GenCode
Replies: 8 Views: 15929
|
Forum: IBM MQ API Support Posted: Thu Feb 18, 2016 11:55 am Subject: Check Q manager status before calling IMessageProduce.Send |
I need to check connection status before calling IMessageProduce.Send(...)
The reason why is we maintain a connection to our MQ, sometimes our app gets disconnected because of network issues causin ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Wed Oct 07, 2015 11:44 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Vitor, Thanks too That was next, look at the InfoCenter to see if I can figure out how to use amqsbcgc to connect to the remote q and get the hex for Jeff.
Before your comment I was going off t ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Wed Oct 07, 2015 11:23 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Bruce,
> Post the command you issued
I did that, "amqsbcgc my.queue.name my.queue.manager.name"
> and the response you received.
"MQCONN failed with CompCode:2, Reason:2058 ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Wed Oct 07, 2015 5:39 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Jeff, thanks for the reply.
I did find the amqsbcgc.exe and ran it using
amqsbcgc my.queue.name my.queue.manager.name
But this is a remote queue and I don't think this works with remote queues ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Tue Oct 06, 2015 7:35 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Using the IBM utility I went to the
MQMD tab and to me as a the
Put Date/Time
looks odd, its value is the following
0930/20/15 17::1:3:.38
mqjeff,
> Can you show the amqsbcg/amqsbcgc o ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Tue Oct 06, 2015 6:46 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
fjb_saper,
I am able to read that message with the browse of the util
here are the answers to your questions.
> RFHUtil it shows "STRING " as the message format?
DATA Tab, ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Tue Oct 06, 2015 4:43 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
> So we'll have to presume that the error is in the receive method and not in the cast to (ITextMessage) right?
Yup, actually we "know" its not a casting issue because I also tried wit ... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Mon Oct 05, 2015 11:58 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Hi Jeff,
As stated throughout the thread its the IBM call to recieve.
recvMsg = (ITextMessage)consumer.Receive();
Other than options I don't know what I can do. |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Mon Oct 05, 2015 9:46 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
public bool Consume()
{
if (_disposed)
throw new ObjectDisposedException("Connection is disposed.");
... |
Topic: System.FormatException in IBM.XMS.Client.Impl.dll |
GenCode
Replies: 24 Views: 38298
|
Forum: IBM MQ API Support Posted: Mon Oct 05, 2015 6:13 am Subject: System.FormatException in IBM.XMS.Client.Impl.dll |
Snapper,
> A timestamp in the RFH2 jms section that cannot be parsed correctly maybe?
That sounds logical, but they are not sending their messages thru jms I don't believe. Is there I can m ... |