ASP.NET
  Home arrow ASP.NET arrow Using MSMQ in Dot Net Using VB.Net Sending...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP.NET

Using MSMQ in Dot Net Using VB.Net Sending and Receiving Messages Using MSMQ in Dot Net:
By: aspfree
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 10
    2001-08-04

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Using MSMQ in Dot Net Using VB.Net
    Sending and Receiving Messages Using MSMQ in Dot Net:

    author: Sreedhar Koganti 
    
    This example will help you to know how to send and receive messages using MSMQ.
    In Dot net, MSMQ provides a powerful set of services. These you can get from
    System.Messaging name space. In order to use MSMQ explorer our
    Dot Net IDE can also be used to add and remove messages form MSMQ.

    How you can use MSMQ:
    In order to use MSMQ first you have to install MSMQ in your machine.
    Since we are looking at MSMQ in Dot Net,
    you need to have Windows 2000 + Service Pack1, MSMQ, .NET Framework Beta1 and
    Visual Studio.NET .

    How to Use MSMQ:
    MSMQ Enterprise can be managed through the MSMQ Explorer.
    The MSMQ Explorer provides an interface for managing all machines in a
    MSMQ environment from a single point of control. This MSMQ Explorer
    you can get from Computer Management/Services and Applications/MessageQueing.

    Here I am trying to show a simple Example in VS.Net(VB).
    In this example I am using a Windows Application in the C# Environment.
    This example will help you to know how to send and receive messages using MSMQ.
    In this example I am basically using System.Messaging name space to manage the
    messages using msmq.

    To do that created a Windows application in VB using VS.net.

    In that i take a form module and I kept two buttons one for sending
    data and one for receiving data. And I also used a text box.While sending
    message i am taking message form the textbox.Button one is used to send message.
    Other button will be used to receive the data.

    To use the MSMQ name space System.Messaging, you have to go to Tools and
    Component Tab, then Drag and Drop the MessageQueue to the Form (Design View).
    Once you add it, as shown below, code will be added to your application


    Private WithEvents MessageQueue1 As System.Messaging.MessageQueue
    The above code will be added in public class Form1 : System.WinForms.Form
    and one more important line
    Me.MessageQueue1 = New System.Messaging.MessageQueue()
    will be added in Private Sub InitializeComponent()

    While your application initializes it will create the messageQueue1 .
    Once your object has been Created or Instantiated you can use it's methods and Properties.

    In our example we are trying to Send a message to "Smile" Pirvate Queue.
    "Smile"is a Queue name which we are using in the example. It's not a system Queue.

    The code below is used for sending the message to a queue when you click Button1 button.

    ****************************

    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim q As MessageQueue
    If MessageQueue.Exists(".Private$Smile") Then
    q = New MessageQueue(".Private$Smile")
    Else
    q = MessageQueue.Create(".Private$Smile")
    End If

    Dim BW As New BinaryWriter(New MemoryStream())
    bw.Write(textbox1.Text)
    Dim m As New Messaging.Message()
    m.BodyStream = BW.BaseStream
    m.Label = "Sri Test Message"

    q.Send(m)
    msgbox("Message sent successfully",
    Microsoft.VisualBasic.MsgBoxStyle.Information, "MSMQ Message")

    End Sub

    ******************************

    When you click the command one first i am checking for Queue if queue is not there
    then i am creating the Queue , if queue is the i am sending the message to the queue
    usingn Send method.
    Send Can basically will have two arguments a) Message b) Label for that message.

    Button Two will help you to receive the messages:
    ******************************

    Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim q As MessageQueue
    Dim m As Messaging.Message
    Dim Br As BinaryReader
    Dim x As String

    If MessageQueue.Exists(".Private$Smile") Then
    q = New MessageQueue(".Private$Smile")
    Else
    q = MessageQueue.Create(".Private$Smile")
    End If


    Try
    m = q.Receive(New TimeSpan(0, 0, 3))
    Br = New BinaryReader(m.BodyStream)
    x = New String(Br.ReadChars(CInt(m.BodyStream.Length)))
    Catch
    x = "(no message)"

    End Try
    msgbox(x, Microsoft.VisualBasic.MsgBoxStyle.Information, "MSMQ Message")

    End Sub

    ********************************
    If you look into the code, basically I am testing for the existence of the Smile Private Queue.
    If it is not there, I am popping up a message box. If it is there, then I am instantiating
    a PostMessage as a Message Queue.

    Here I have to explain one thing. The message object holds the result of the received message.
    So here I am using m as the message object, and we also created a TimeSpan object from the
    System name space. The TimeSpan object will tell how long to wait for the Receive
    method before timing out (hours, minutes, seconds).
    Before .Net, we could simply set a message object Body property to a string value.
    But in Dot Net the data will be automatically wrapped in XML using SOAP encoding.
    It makes consistent with other languages with in Dot Net.

    Note:
    Take care with the following Steps:
    1. Must install MSMQ on your machine.
    2. Drag and Drop the Message Queue into your Design Form.
    3. You must be using System.Messaging;
    4. Must declare a message for receiving messages. Here we declared as m.
    5. Build the code before running.


    Author:
    Sreedhar Koganti
    Working in Unisys as a Technical Team Lead
    Expertixe in ASP,COM+,XML,SOAP,NTService,VB, Drop of .Net
    Article Writer in asptoday.com,Aspalliance.com,aspfree.com
    ***********************************************************


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More ASP.NET Articles
    More By aspfree

     

    IBM® developerWorks developerWorks - FREE Tools!


    IBM – Taking Web 2.0 to Work

    You'll get answers to many questions and more from David Barnes, Lead Evangelist for IBM Emerging Internet Technologies. David will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.
    FREE! Go There Now!


    NEW! IBM – Taking Web 2.0 to Work

    David Barnes, Lead Evangelist for IBM Emerging Internet Technologies will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.
    FREE! Go There Now!


    NEW! Don't wait! Try the Rational Application Developer (RAD) v7.5 open beta code today

    Download the Rational Application Developer (RAD) v7.5 open beta code and start developing applications for the JEE5 standard which features EJB3.0, JPA, JSF 1.2, JSP 2.1 and Servlet 2.5 standards. When you use this beta you will see how you can increase developer productivity for already existing applications with improved support for refactoring, as well as adding new features to existing applications. In addition, the beta provides tooling for JD Edwards, Oracle, SAP, Siebel and PeopleSoft to improve the developer productivity with these enterprise systems.
    FREE! Go There Now!


    NEW! Harnessing the power of SQL and Java for high performance data access

    Join this webcast to see how IBM Data Studio Developer and pureQuery can take the pain out of Java data access. uApplications developed using both Java and SQL have become a common requirement. Database connectivity using Java Database Connectivity (JDBC) to create an application is a multi-step tedious process, and tooling that covers both SQL and Java has been unavailable, until now. IBM Data Studio introduces the pureQuery platform: a high-performance, Java data access platform focused on simplifying the tasks of developing, managing, and optimizing database applications and services.
    FREE! Go There Now!


    NEW! IBM Rational ClearCase Innovator's Series

    Learn from the best! Find out how developers use Rational ClearCase to be more flexible, innovative and deliver higher quality code in the Rational ClearCase Power Users eKit. This complimentary eKit provides a collection of materials, like articles, whitepapers, and demos that can help you become a power user of Rational ClearCase.
    FREE! Go There Now!


    NEW! Krugle, developerWorks, and code search

    Ken Krugler, co-founder of code search company Krugle, and Laura Merling, vice president of Marketing and Business Development for Krugle, join to talk about the ins and outs of code search and what it means as a new feature for developerWorks users.
    FREE! Go There Now!


    NEW! Rational Modeling Extension for Microsoft.Net

    Rational Modeling Extension for Microsoft .NET enhances usability for code generation supporting a more intelligent refactoring. The latest enhancements enable organizations with Java and .NET systems and software development maintain architectural integrity across heterogeneous platforms.
    FREE! Go There Now!


    NEW! Rational Talks to You:Per Kroll on Rational Method Composer Plug-in customization

    Join this Rational Talks to You teleconference on December 11 at 1:00 pm ET to get tips on building your own plugins with Rational Method Composer. Get your questions answered!
    FREE! Go There Now!


    NEW! Webcast: Eclipse: Empowering the universal platform

    The Eclipse community is constantly working to extend Eclipse's functionality. In this webcast, learn about some of the most important and feature-rich projects under development. From multi-language support to plug-in development, tune in to see what Eclipse is capable of now.
    FREE! Go There Now!


    NEW! Whitepaper: Delivering SOA solutions: service lifecycle management

    The unprecedented scope of a service-oriented architecture (SOA) initiative brings to the forefront a number of management and governance issues that were sidestepped in the past. The key to a successful SOA implementation is managing and governing activities throughout the entire SOA delivery lifecycle by ensuring that services conform to the needs of all of the business’s stakeholders. Learn how service lifecycle management allows the business to ensure that the process by which services are defined, created, tested, deployed, optimized and retired is manageable, repeatable and auditable.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

    ASP.NET ARTICLES

    - Disadvantages of the ASP.NET MVC Framework
    - Advantages of the ASP.NET MVC Approach
    - ASP.NET Web Forms Weaknesses
    - ASP.NET Web Forms Meets ASP.NET MVC
    - Source Code for Saving and Retrieving Data w...
    - Using GridView to Save and Retrieve Data wit...
    - Handling Dynamic Images in ASP.NET 3.5 AJAX ...
    - Retrieving Data with AJAX and the GridView C...
    - Playing with Images in ASP.NET 3.5 AJAX Appl...
    - Saving and Retrieving Data with AJAX
    - Enhancing PHP Via the ASP.NET AJAX Framework...
    - Enhancing PHP Programming with the ASP.NET A...
    - Classes and ASP.NET AJAX
    - Using ASP.NET AJAX
    - Building a Simple Storefront with LINQ

     
    Application Delivery: Everything You Wanted to Know, but Didn`t Know You Needed to Ask
    A comprehensive guide to examining the topics of Wide-area Data Services and app....

     
    Best Practices: Safe and Secure Hardware Asset Recovery
    Companies increasingly must meet EPA and local requirements for the disposal of ....

     
    Managing SSL Security in Multi-Server Environments
    Read this white paper to learn how to simplify management of your organization's....

     
    Open Source Security Myths
    Open Source Software (OSS) is computer software whose source code is available t....

     
    Power and Cooling Capacity Management for Data Centers
    This paper describes the principles for achieving power and cooling capacity man....

     




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
    Stay green...Green IT