Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 41,046 times

Contents

Related Categories

Get the Message - MSMQ - Introduction

LACanadian

Introduction

Microsoft's Enterprise strategy to add scalability and reliability to the application hosting world has a number of facets. If you are planning to expose your components to the service level demands of the Internet, then Microsoft's Message Queue (MSMQ) should be high on your list of things to master.

Now Microsoft did not create the concept of a message queue. It has been around for decades (making it ancient by computing standards). And MSMQ is not the leading message queue system. I doubt that anyone would dispute that IBM's MQSeries holds that distinction. That having been said, MSMQ did bring the concepts and plumbing of message queues to a group that, to this point, had not given it much thought - PC developers. With that in mind, let us explore both the concepts and practice of message passing as it relates to Microsoft.

I am the owner of a small application development consulting company that specialized in the design and implementation of Internet-based applications. While there are others who can make a web site look good, our expertise is in making the site function. This includes infrastructure design, database design and administration, software development and deployment. For the most part, we utilize Microsoft-based languages and tools. And we are skilled enough to have generated two patent applications for our clients.

Comments

  • XML sample

    Posted by mightytookDev on 08 Dec 2004

    Ummm, there's a lot of other stuff around the code that I have (which was in a VB.DLL used within ASP pages), but I tried to pull out the working code that would get to the essence of what you need. E...

  • How to send and receive an XML file in a message q

    Posted by CyberLotus on 08 Dec 2004

    Hi,

    Could you please let me know, how to send an xml file as an object to a message queue? If possible can you provide me any code snippet for this as I'm novice to this technology.

    Also, I want...

  • MSMQ

    Posted by thongfam on 21 Sep 2004

    Hi,


    I have similar error "The operation is not supported on a workgoup installation of computer" while testing MSMQ program. I am using VB6 to write the MSMQ program. Do you have any advise on h...

  • MSMQ

    Posted by gdiazzap on 25 May 2004

    I need to Know hoy many messages are in a MSMQ Queue using API, WMI or OCX component using Visual Basic
    Any Idea?

    Gabriel

  • Posted by MDeiters on 13 Apr 2004

    You need to use this pathname:
    Dim q As New Messaging.MessageQueue("FormatName:DIRECT=OS:RMPOSC-714\private$\testq")

    A good example on how to get the Queues real path would be this

    For Each que...