VB to VB.NET Question

I converting a program (that I didn't write) that uses MSMQ (Microsoft Message Queuing).  Is there a better way of doing this in .NET

Trey


Answer this question

VB to VB.NET Question

  • QualyLee

    Is it good practice to use COM+ when I do my message queueing  

    Trey

  • idflyfish

    If you just want to send/receive messages, you don't need that. But if you want to couple database transactions and stuff with your MSMQ transaction, you need the DTC and COM+.
  • sheerprogrammer

    .NET provides quite easy access to MSMQ. All of the classes you need are located in the System.Messaging namespace. If you're thinking of moving to remoting or web services: I wouldn't do that. MSMQ is fine and it'll be easier to convert your program if you use the same infrastructure.
  • VB to VB.NET Question