Message queue deployment

G

Guest

hello,
doesn anyone know how to deploy message queues?
I've got a program which uses message queues and i wish to deploy it,
one click deployment in vs2005 doesn't allow me to specify message queues
and a setup project doesn't allow me to specify message queues.

Any help appreciated

thanks
Brian
 
J

Jon Skeet [C# MVP]

doesn anyone know how to deploy message queues?
I've got a program which uses message queues and i wish to deploy it,
one click deployment in vs2005 doesn't allow me to specify message queues
and a setup project doesn't allow me to specify message queues.

You can just create the queue in code using MessageQueue.Create. Use
MessageQueue.Exists to check whether it exists on startup, and create
it if it doesn't.
 
G

Guest

hi jon,
thanks for your reply.

my question was a bit ambiguous granted,
what i actually ment was.

If the message queue component is not installed on my windows xp machine how
can i install this from my setup/deployment project?

like for examply if .NET Framework is not installed i can mark it as a
prerequisite of my click once application deployment.
I'd really like to see Message Queues as a prefrequisite or at least have a
setup project that installs the message queue component.

thanks for you help though

regards
brian
 
J

Jon Skeet [C# MVP]

thanks for your reply.

my question was a bit ambiguous granted,
what i actually ment was.

If the message queue component is not installed on my windows xp machine how
can i install this from my setup/deployment project?

Ah, message queuing itself. I'm afraid I don't know, in that case :(
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top