vote up 0 vote down star

I am using C# and .Net Framework 1.1 (yes its old but I inherited this stuff and can't convert up). I places messages on a transactional queue but it does not get on the queue about 50% of the time. Running workgroup and Windows/XP Professional with all service packs installed. I don't see any messages in the dead letter queue either.

Any ideas where to look?

flag

1 Answer

vote up 2 vote down

If it isn't hitting the queue at all and isn't going to the dead-letter queue, it suggests the item isn't being sent to the queue. You should be able to confirm that this is the case by switching on the journal for the queue.

Assuming it isn't hitting the queue, it is probably a transaction issue. I would check that you are definitely committing the message to the queue every time. Make sure there aren't any exceptions being thrown and swallowed that causes the transaction to roll back or never be committed (essentially the same thing). Also make sure there aren't any conditional statements that mean the commit gets skipped.

I would add some logging around every location where a transaction is started, committed and rolled back and also around any location where you are creating a message. You can then review you log to see the order of events and see what's going astray.

Another option would be to remove all of the transaction code and test the code against a non-transactional queue. If the messages all appear then it is a transactional problem. If not, the issue is elsewhere.

I use MSMQ a lot and the one thing I have learned through experience is that it works really well and the weak point is me :-)

link|flag
Thanks. I think commiting the transaction corrected to problem. You would not believe how long I've been working on this problem. My client is in Jakarta and I'm in Texas. Takes some time to turn around tests. – Roy Cadenhead Feb 11 at 4:23
No problem, please to help :-) – BlackWasp Feb 17 at 23:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.