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(); } }
static void Main() { try { // Create a client with given client endpoint configuration OrderProcessorClient client = new OrderProcessorClient("OrderProcessorEndpoint"); // send 10 purchase orders for (int i = 0; i < 10; i++) { // 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 transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po); // Complete the transaction. scope.Complete(); } } client.Close(); Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); } catch (Exception e) { Console.WriteLine("Exception: {0}", e); } }
static void Main() { // Get MSMQ queue name from app settings in configuration string deadLetterQueueName = ConfigurationManager.AppSettings["deadLetterQueueName"]; // Create the transacted MSMQ queue for storing dead message if necessary. if (!MessageQueue.Exists(deadLetterQueueName)) MessageQueue.Create(deadLetterQueueName, true); // Create a proxy with given client endpoint configuration OrderProcessorClient client = new OrderProcessorClient("OrderProcessorEndpoint"); // 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 transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po); // Complete the transaction. scope.Complete(); } client.Close(); Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); }
static void Main() { Random randomGen = new Random(); for (int i = 0; i < 2500; i++) { // Create a client with given client endpoint configuration OrderProcessorClient client = new OrderProcessorClient("OrderProcessorEndpoint"); // Create the purchase order PurchaseOrder po = new PurchaseOrder(); po.CustomerId = "somecustomer" + i + ".com"; po.PONumber = Guid.NewGuid().ToString(); PurchaseOrderLineItem lineItem1 = new PurchaseOrderLineItem(); lineItem1.ProductId = "Blue Widget"; lineItem1.Quantity = randomGen.Next(1, 100); lineItem1.UnitCost = (float)randomGen.NextDouble() * 10; 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 transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po); // Complete the transaction. scope.Complete(); } client.Close(); } Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); }
static void Main() { // Create a client OrderProcessorClient client = new OrderProcessorClient(); // 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 transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po); // Complete the transaction. scope.Complete(); } //Closing the client gracefully closes the connection and cleans up resources client.Close(); Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); }
static void Main(string[] args) { using (var client = new OrderProcessorClient()) { var order = new Order { SupplierID = Guid.NewGuid(), OrderDate = DateTime.Today, OrderNo = Guid.NewGuid(), SupplierName = "A Company" }; var orderList = new List <OrderItem>(); var orderItem = new OrderItem { ProductID = Guid.NewGuid(), ProductName = "PC", UnitPrice = 5000, Quantity = 20 }; orderList.Add(orderItem); orderItem = new OrderItem { ProductID = Guid.NewGuid(), ProductName = "Printer", UnitPrice = 7000, Quantity = 2 }; orderList.Add(orderItem); order.OrderItems = orderList.ToArray(); using (var scope = new TransactionScope(TransactionScopeOption.Required)) { client.Submit(order); scope.Complete(); } } }
static void Main(string[] args) { // 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; OrderProcessorClient client = new OrderProcessorClient("OrderResponseEndpoint"); MsmqMessage<PurchaseOrder> ordermsg = new MsmqMessage<PurchaseOrder>(po); using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { client.SubmitPurchaseOrder(ordermsg); scope.Complete(); } Console.WriteLine("Order has been submitted:{0}", po); //Closing the client gracefully closes the connection and cleans up resources client.Close(); Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); }
public PurchaseOrderDLQService() { orderProcessorService = new OrderProcessorClient("OrderProcessorEndpoint"); }
static void Main() { // Get MSMQ queue name from app settings in configuration string targetQueueName = ConfigurationManager.AppSettings["targetQueueName"]; // Create the transacted MSMQ queue if necessary. // This is the queue the order status would be reported to if (!MessageQueue.Exists(targetQueueName)) MessageQueue.Create(targetQueueName, true); // Get MSMQ queue name from app settings in configuration string responseQueueName = ConfigurationManager.AppSettings["responseQueueName"]; // Create the transacted MSMQ queue if necessary. // This is the queue the order status would be reported to if (!MessageQueue.Exists(responseQueueName)) MessageQueue.Create(responseQueueName, true); // Create a ServiceHost for the OrderStatus service type. ServiceHost serviceHost = new ServiceHost(typeof(OrderStatusService)); // Open the ServiceHostBase to create listeners and start listening for order status messages. serviceHost.Open(); // Create a proxy with given client endpoint configuration OrderProcessorClient client = new OrderProcessorClient(); // 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 transaction scope. using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required)) { // Make a queued call to submit the purchase order client.SubmitPurchaseOrder(po, "net.msmq://localhost/private/ServiceModelSamplesOrder/OrderStatus"); // Complete the transaction. scope.Complete(); } //Closing the client gracefully closes the connection and cleans up resources Console.WriteLine(); Console.WriteLine("Press <ENTER> to terminate client."); Console.ReadLine(); client.Close(); try { serviceHost.Close(); } catch (CommunicationObjectFaultedException) { Console.WriteLine("Warning: the order status service is in faulted state"); } }