Message queue deployment

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Brian Keating

    Message queue deployment

    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
  • Jon Skeet [C# MVP]

    #2
    Re: Message queue deployment

    <"=?Utf-8?B?QnJpYW4gS2V hdGluZw==?=" <csharp at briankeating.ne t>>
    wrote:[color=blue]
    > 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.[/color]

    You can just create the queue in code using MessageQueue.Cr eate. Use
    MessageQueue.Ex ists to check whether it exists on startup, and create
    it if it doesn't.

    --
    Jon Skeet - <skeet@pobox.co m>
    Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

    If replying to the group, please do not mail me too

    Comment

    • Brian Keating

      #3
      Re: Message queue deployment

      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

      "Jon Skeet [C# MVP]" wrote:
      [color=blue]
      > <"=?Utf-8?B?QnJpYW4gS2V hdGluZw==?=" <csharp at briankeating.ne t>>
      > wrote:[color=green]
      > > 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.[/color]
      >
      > You can just create the queue in code using MessageQueue.Cr eate. Use
      > MessageQueue.Ex ists to check whether it exists on startup, and create
      > it if it doesn't.
      >
      > --
      > Jon Skeet - <skeet@pobox.co m>
      > http://www.pobox.com/~skeet
      > If replying to the group, please do not mail me too
      >[/color]

      Comment

      • Jon Skeet [C# MVP]

        #4
        Re: Message queue deployment

        <"=?Utf-8?B?QnJpYW4gS2V hdGluZw==?=" <csharp at briankeating.ne t>>
        wrote:[color=blue]
        > 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?[/color]

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

        --
        Jon Skeet - <skeet@pobox.co m>
        Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

        If replying to the group, please do not mail me too

        Comment

        Working...