Exemplo n.º 1
0
 void OpenChannel2()
 {
     if (factory2 == null)
     {
         BasicHttpBinding binding = new BasicHttpBinding();
         EndpointAddress  address = new EndpointAddress("http://" + textBox4.Text + "/KioskSalesService");
         factory2 = new ChannelFactory <ISaleModule>(binding, address);
         channel2 = factory2.CreateChannel();
     }
 }
Exemplo n.º 2
0
 void OpenChannel2()
 {
     if (factory2 == null)
     {
         BasicHttpBinding binding = new BasicHttpBinding();
         EndpointAddress  address = new EndpointAddress(INI.Default["Web Interface"]["Connect To Kiosk Sales Service Address", "http://127.0.0.1:8082/KioskSalesService"]);
         factory2 = new ChannelFactory <ISaleModule>(binding, address);
         channel2 = factory2.CreateChannel();
     }
 }