priyank
priyank

Reputation: 887

Different types of queues in MSMQ

Can anybody explain the different types of queues provided by MSMQ.

Outgoing, private and system queues , what are the functions of them?

Thanks. Yash

Upvotes: 1

Views: 1308

Answers (1)

Karell Ste-Marie
Karell Ste-Marie

Reputation: 1052

  • Private queues are registered on the local computer, not in the directory service, and typically cannot be located by other Message Queuing applications
  • Private queues are accessible only by Message Queuing applications that know the full path name, the direct format name, or the private format name of the queue
  • In a domain environment, public queues are queues that are published in Active Directory
  • A transactional queue is one that only contains transactional messages, which are messages sent within a transaction

http://technet.microsoft.com/en-us/library/cc778799(v=ws.10).aspx

Upvotes: 1

Related Questions