Пример #1
0
        protected override void DoSetUp()
        {
            MsmqUtil.Delete(DestinationQueueName);

            Console.WriteLine("Creating new service");
            service = new InboundService(ListenUri, DestinationQueueName);
            service.Start();
        }
Пример #2
0
 void InitHttpListener()
 {
     log.Info("Starting inbound service...");
     inboundService = new InboundService(ListenUri, DestinationQueue);
     inboundService.Start();
 }