static void Main() { // Get MSMQ queue name from app settings in configuration string queueName = ConfigurationManager.AppSettings["queueName"]; // Create the transacted MSMQ queue if necessary. // This is the queue the order status would be reported to if (!MessageQueue.Exists(queueName)) MessageQueue.Create(queueName, true); // Create a ServiceHost for the OrderStatus service type. using (ServiceHost serviceHost = new ServiceHost(typeof(OrderStatusService))) { // Open the ServiceHostBase to create listeners and start listening for order status messages. serviceHost.Open(); // Create the purchase order PurchaseOrder po = new PurchaseOrder(); po.CustomerId = "somecustomer.com"; po.PONumber = Guid.NewGuid().ToString(); PurchaseOrderLineItem lineItem1 = new PurchaseOrderLineItem(); lineItem1.ProductId = "Blue Widget"; lineItem1.Quantity = 54; lineItem1.UnitCost = 29.99F; PurchaseOrderLineItem lineItem2 = new PurchaseOrderLineItem(); lineItem2.ProductId = "Red Widget"; lineItem2.Quantity = 890; lineItem2.UnitCost = 45.89F; po.orderLineItems = new PurchaseOrderLineItem[2]; po.orderLineItems[0] = lineItem1; po.orderLineItems[1] = lineItem2; // Create a client with given client endpoint configuration OrderProcessorClient client = new OrderProcessorClient("OrderProcessorEndpoint"); //Create a transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { string hostName = Dns.GetHostName(); // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po, "net.msmq://" + hostName + "/private/ServiceModelSamplesTwo-way/OrderStatus"); // Complete the transaction. scope.Complete(); } //Close down the client client.Close(); Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); } }
public static void Add(PurchaseOrder po) { purchaseOrders.Add(po.PONumber, po); }
public void SubmitPurchaseOrder(PurchaseOrder po, string reportOrderStatusTo) { Orders.Add(po); Console.WriteLine("Processing {0} ", po); Console.WriteLine("Sending back order status information"); NetMsmqBinding msmqCallbackBinding = new NetMsmqBinding(); OrderStatusClient client = new OrderStatusClient(msmqCallbackBinding, new EndpointAddress(reportOrderStatusTo)); // please note that the same transaction that is used to dequeue purchase order is used // to send back order status using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { client.OrderStatus(po.PONumber, po.Status); scope.Complete(); } //close the client. client.Close(); }