home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / ExpressDelivery_JScript.asp < prev    next >
Text File  |  1997-10-25  |  2KB  |  71 lines

  1. <%@ LANGUAGE = JScript %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>Simple MSMQ Transmission (Using Express Delivery)</TITLE>
  6.     </HEAD>
  7.  
  8.     <BODY bgcolor="white" topmargin="10" leftmargin="10">
  9.  
  10.         
  11.         <!-- Display Header -->
  12.  
  13.         <font size="4" face="Arial, Helvetica">
  14.         <b>Simple MSMQ Transmission (Using Express Delivery)</b></font><br>
  15.       
  16.         <hr size="1" color="#000000">
  17.  
  18.         This sample demonstrates how to send a simple asynchronous message using 
  19.         the Microsoft Message Queueing Server (MSMQ).  MSMQ is one of the components
  20.         that comes with the Windows NT 4.0 Option Pack.
  21.   
  22.         <p> For this example to work, MSMQ must be first be installed on the host machine.
  23.         Using the MSMQ Explorer, a queue named "IIS_SDK_EXAMPLE" should then be created.
  24.         After the example is run, return to the MSMQ Explorer and select "Refresh" from
  25.         the "View" menu.  The recently sent message will then appear within the "IIS_SDK_EXAMPLE"
  26.         queue.
  27.  
  28.         <%
  29.             // Create MSMQQueueInfo Component to Open
  30.             // MessageQueue
  31.  
  32.             QueueInfo = Server.CreateObject("MSMQ.MSMQQueueInfo");
  33.  
  34.  
  35.             // Open Queue.  The queue could be physically located
  36.             // on any machine.  The period in the line below indicates
  37.             // that the queue is located on the local machine.  Note
  38.             // that because JScript is being used as the scripting
  39.             // language, and extra backslash must be inserted as an
  40.             // escape character.
  41.  
  42.             QueueInfo.pathname = ".\\IIS_SDK_EXAMPLE"
  43.             Queue = QueueInfo.Open(2, 0);
  44.  
  45.  
  46.             // Create Message Component for Queue
  47.             
  48.             Msg = Server.CreateObject("MSMQ.MSMQMessage");
  49.  
  50.  
  51.             // Construct Message.  Note than anything can be
  52.             // passed into both the body and label.  The developer
  53.             // is responsible for marshalling all arguments.
  54.             
  55.             Msg.body = "This is the message body";
  56.             Msg.Label = "This is the message label";
  57.  
  58.  
  59.             // Send Message
  60.             
  61.             Msg.Send(Queue);
  62.  
  63.  
  64.             // Close Queue
  65.             
  66.             Queue.Close();
  67.         %>
  68.  
  69.     </BODY>
  70. </HTML>
  71.