Author |
Message |
Topic: Question about MQ Transactions and .NET |
dpchiesa
Replies: 7 Views: 8364
|
Forum: IBM MQ API Support Posted: Thu May 25, 2006 8:24 pm Subject: .NET and transactions |
Since you're using .NET, I would highly recommend using Serviced Components (COM+) for your transaction management.
ServicedComponents works, but of course, you can also use Services without Compo ... |
Topic: amqmdnet.dll |
dpchiesa
Replies: 6 Views: 12863
|
Forum: IBM MQ API Support Posted: Wed Jan 18, 2006 1:46 pm Subject: Following up |
Judging from a quick search, others on this forum have successfully used the MQ Classes for .NET, from witihn an ASP.NET app.
I just tried and it works for me, too, though I had to make some adjus ... |
Topic: Perf on Multi-CPU |
dpchiesa
Replies: 4 Views: 5242
|
Forum: IBM MQ API Support Posted: Tue Jan 17, 2006 7:32 pm Subject: Perf on Multi-CPU |
Is Log Buffer Pages set to the max value of 4096? That will help a bit.
Hmm, no. I will try that too.
thanks! |
Topic: amqmdnet.dll |
dpchiesa
Replies: 6 Views: 12863
|
Forum: IBM MQ API Support Posted: Tue Jan 17, 2006 11:33 am Subject: Fails in ASP.NET |
This happens often. People say, "when I build a command line or windows Forms app, no problem. If I try to use the library within ASP.NET, it fails. What gives?"
Not just with MQ. With any lib ... |
Topic: Perf on Multi-CPU |
dpchiesa
Replies: 4 Views: 5242
|
Forum: IBM MQ API Support Posted: Tue Jan 17, 2006 10:46 am Subject: Perf on Multi-CPU |
I agree. Also interesting would be to run on server-class hardware, including multi-CPU, and a server OS (WS2003), and to run with different numbers of threads, and larger and more varied payload size ... |
Topic: .NET Transactions and MQ v6.0 |
dpchiesa
Replies: 2 Views: 3498
|
Forum: IBM MQ API Support Posted: Fri Dec 02, 2005 11:03 am Subject: Basically |
So, basically, this shows that a) .NET 2.0 is faster than 1.1, and b) MQ v6 is faster than v5.3?
a) Yes, b) No.
As for a), .NET 2.0 is faster than 1.1; even that is not true as a blanket st ... |
Topic: .NET Transactions and MQ v6.0 |
dpchiesa
Replies: 2 Views: 3498
|
Forum: IBM MQ API Support Posted: Fri Dec 02, 2005 7:07 am Subject: .NET Transactions and MQ v6.0 |
here's a Microsoft blog entry showing the use of .NET 2.0
System.Transactions to manage updates to MQ and SQL Server.
It shows that, using MQ v6 and SQL 2005, if you use System.Transactions, you
... |
Topic: MQSeries and .Net transaction support |
dpchiesa
Replies: 5 Views: 6670
|
Forum: IBM MQ API Support Posted: Wed Jul 06, 2005 7:07 am Subject: MQ, .NET , and transactions |
yes, the MQ classes for .NET work with the transaction manager in Windows. In the "Using .NET" doc, it talks about the EnterpriseServices model: inheriting from ServicedComponent, and doing work on M ... |
Topic: .NET transactions without components |
dpchiesa
Replies: 0 Views: 3198
|
Forum: IBM MQ API Support Posted: Fri Jul 01, 2005 1:39 pm Subject: .NET transactions without components |
By the way, For an MQ app using the .NET classes, the MQ client library will automatically enlist in a transaction created programmatically via System.EnterpriseServices.ServiceDomain.Enter(). This i ... |
Topic: MQRC_UOW_ENLISTMENT_ERROR |
dpchiesa
Replies: 20 Views: 30217
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Jul 01, 2005 7:41 am Subject: What about MQ v6.0? |
Is the problem with XA transactions and .NET
(eg, http://www-1.ibm.com/support/docview.wss?uid=swg1IC45797 )
also present in MQ v6.0 ? |
Topic: TypeInitializationException |
dpchiesa
Replies: 7 Views: 6841
|
Forum: IBM MQ API Support Posted: Tue Mar 15, 2005 1:23 pm Subject: latest? |
when you say "Latest WSMQ (5.3) client", does that include the latest fixpack? Which I think is currently CSD 08 ? |
Topic: Setting and Getting Message groupID in VB.NET (or C#) |
dpchiesa
Replies: 8 Views: 8643
|
Forum: IBM MQ API Support Posted: Mon Mar 07, 2005 5:52 pm Subject: try the debugger? |
what does it look like in the debugger?
What if you Base64 encode the byte array?
I don't know what System.Byte.ToString() is supposed to return. Maybe for control characters (out of ASCII Range) ... |
Topic: MQBridge: Connect MQ to MSMQ |
dpchiesa
Replies: 2 Views: 5000
|
Forum: IBM MQ API Support Posted: Tue Mar 01, 2005 10:04 am Subject: What is the throughput requirement? |
It should be not so hard to write one yourself. Write it in .NET, as a Windows Service. Make it multi-threaded. You could even include transactional semantics using MTS, perf counters, etc. What ... |
Topic: MQSeries and PHP |
dpchiesa
Replies: 8 Views: 16060
|
Forum: General Discussion Posted: Tue Aug 17, 2004 3:17 pm Subject: another option |
if you are on Windows, another option for getting to MQ from PHP may be to use the COM interface (MQAX).
I have previously used the PHP-COM stuff for other components, but never tried with MQAX. ... |
Topic: CorrelationId in C# |
dpchiesa
Replies: 12 Views: 20549
|
Forum: IBM MQ API Support Posted: Fri Aug 13, 2004 5:24 am Subject: String to Correlation ID |
here's what I do to derive a "Postcard friendly" Correlation ID from a string.
const int CO_ID_LENGTH= 24;
public static byte[] StringToCorrelationId(String s)
{
cha ... |