Author |
Message |
Topic: Question about MQ Transactions and .NET |
Leigh Kendall
Replies: 7 Views: 8364
|
Forum: IBM MQ API Support Posted: Fri May 26, 2006 6:38 am Subject: Question about MQ Transactions and .NET |
dpchiesa -
Unfortunately, I "have" to use .NET 1.1 which is why I neglected to mention System.Transactions, but you're absolutely right; if you're using .NET 2.0 you would be better off using the S ... |
Topic: Question about MQ Transactions and .NET |
Leigh Kendall
Replies: 7 Views: 8364
|
Forum: IBM MQ API Support Posted: Tue May 23, 2006 3:44 am Subject: Question about MQ Transactions and .NET |
wfudeac92 -
Since you're using .NET, I would highly recommend using Serviced Components (COM+) for your transaction management. This will easily allow you to bring in other resources into your tra ... |
Topic: .NET MQSeries 2080 error |
Leigh Kendall
Replies: 2 Views: 3178
|
Forum: IBM MQ API Support Posted: Wed May 10, 2006 7:03 am Subject: .NET MQSeries 2080 error |
Try using MessageLength instead... |
Topic: Need recommendation: Queue Listener |
Leigh Kendall
Replies: 20 Views: 16048
|
Forum: IBM MQ API Support Posted: Thu May 04, 2006 11:16 am Subject: Need recommendation: Queue Listener |
Nitesh -
I addition to that, if you can use MQ 6.0 (I'm stuck with 5.3); there is a new .NET Monitor piece which will fire with/without COM+ support your own custom assembly. If I were able to use ... |
Topic: Need recommendation: Queue Listener |
Leigh Kendall
Replies: 20 Views: 16048
|
Forum: IBM MQ API Support Posted: Thu May 04, 2006 11:14 am Subject: Need recommendation: Queue Listener |
Nitesh -
What I ended up doing and it works well, is in .NET I created a listener class that does nothing but browse on the queue. If it can browse/wait/get (non-destructive) a message then the lis ... |
Topic: CorrelationId in C# |
Leigh Kendall
Replies: 12 Views: 20549
|
Forum: IBM MQ API Support Posted: Tue May 02, 2006 12:25 pm Subject: CorrelationId in C# |
maneshgurav -
Unfortunately there's no counterpart to BitConverter.ToString() built into .NET.
Here's a link to a project on CodeProject though:
http://www.codeproject.com/csharp/hexencoding.as ... |
Topic: .NET sample program needed |
Leigh Kendall
Replies: 2 Views: 2485
|
Forum: IBM MQ API Support Posted: Tue May 02, 2006 12:05 pm Subject: .NET sample program needed |
ydsk -
Check out IBM's Redbook: "WebSphere MQ Solutions in a Microsoft .NET Environment".
Samples in both VB.NET and C# and of the transaction client.
HTH, |
Topic: C# App. AMQ9208 Error On Recieve... |
Leigh Kendall
Replies: 4 Views: 15800
|
Forum: IBM MQ API Support Posted: Wed Apr 26, 2006 11:37 am Subject: C# App. AMQ9208 Error On Recieve... |
According to the documentation:
"AMQ9208 Error on receive from host &3.
Explanation: An error occurred receiving data from
&3 over &4. This may be due to a communications
failure.
U ... |
Topic: MQ 5.3 .Net APIs in multithreaded environment or web service |
Leigh Kendall
Replies: 12 Views: 11675
|
Forum: IBM MQ API Support Posted: Wed Apr 26, 2006 11:32 am Subject: MQ 5.3 .Net APIs in multithreaded environment or web service |
Just sign your assembly and let each server install a copy in it's GAC. When a new version is released, everyone installs a new copy. Simple. |
Topic: Message ID |
Leigh Kendall
Replies: 9 Views: 8588
|
Forum: IBM MQ API Support Posted: Mon Apr 24, 2006 11:20 am Subject: Message ID |
Nik -
See thread my post in:
http://www.mqseries.net/phpBB2/viewtopic.php?t=16367
All you need is the BitConverter.ToString class/method.
HTH, |
Topic: CorrelationId in C# |
Leigh Kendall
Replies: 12 Views: 20549
|
Forum: IBM MQ API Support Posted: Mon Apr 24, 2006 8:10 am Subject: CorrelationId in C# |
I know this is a bit late to the party, but hopefully others will find it useful:
An easy way to convert the Message/Correlation Id's to hex strings. Note, if you WANT hypens, omit the Replace meth ... |
Topic: VB.NET MQ 6.0 Hashtables broken? |
Leigh Kendall
Replies: 14 Views: 9066
|
Forum: IBM MQ API Support Posted: Wed Apr 12, 2006 10:57 am Subject: VB.NET MQ 6.0 Hashtables broken? |
Peter -
Check whether you have Option Strict on or off. In any event, you may want to cast the .text value to an int using either System.ConvertToInt32 of VB's CInt function.
HTH, |
Topic: FYI: XMS.NET & XA Transactions |
Leigh Kendall
Replies: 0 Views: 2171
|
Forum: IBM MQ API Support Posted: Wed Apr 12, 2006 9:24 am Subject: FYI: XMS.NET & XA Transactions |
In case anybody else is researching this information, I confirmed with IBM on the MQ NNTP newgroup (ibm.software.websphere.mq.beta) that there is currently NOT any support for XA compliant transaction ... |
Topic: Need recommendation: Queue Listener |
Leigh Kendall
Replies: 20 Views: 16048
|
Forum: IBM MQ API Support Posted: Tue Apr 11, 2006 1:44 pm Subject: Need recommendation: Queue Listener |
Jeff -
"...guarantee the synchronization between the two GETTERs."
"...message hasn't already been grabbed by someone else. "
Seeing it's only "me" grabbing the message, I don't think I'll have ... |
Topic: Need recommendation: Queue Listener |
Leigh Kendall
Replies: 20 Views: 16048
|
Forum: IBM MQ API Support Posted: Tue Apr 11, 2006 1:23 pm Subject: Need recommendation: Queue Listener |
Peter -
"Personally, I would still prefer plain old triggering, or a few instances of the consuming app directly hovering on the queue (get with waits) if the volume is higher and more consistent. Tr ... |