using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ServiceModel;
namespace Client
{
class Program
{
static void Main(string[] args)
{
//Step 1: Create an endpoint address and an instance of the WCF Client
EndpointAddress epAddress = new EndpointAddress("http://localhost:8000/ServiceModelSamples/Service/CalculatorService");
CalculatorClient Client = new CalculatorClient(new WSHttpBinding(), epAddress);
//Step 2: Call the service operations.
//Call the Add service operation.
Double value1 = 100D;
Double value2 = 15.99D;
Double result = Client.Add(value1, value2);
Console.WriteLine("Add({0},{1}) = {2}", value1, value2, result);
//Call the Subtract service operation.
value1 = 145D;
value2 = 76.54D;
result = Client.Subtract(value1, value2);
Console.WriteLine("Subtract({0},{1}) = {2}", value1, value2, result);
//'Call the Multiply service operation.
value1 = 9D;
value2 = 81.25D;
result = Client.Multiply(value1, value2);
Console.WriteLine("Multiply({0},{1}) = {2}", value1, value2, result);
//'Call the Divide service operation.
value1 = 22D;
value2 = 7D;
result = Client.Divide(value1, value2);
Console.WriteLine("Divide({0},{1}) = {2}", value1, value2, result);
//' Step 3: Closing the client gracefully closes the connection and cleans up resources.
Client.Close();
Console.WriteLine();
Console.WriteLine("Press <ENTER> to terminate client.");
Console.ReadLine();
}
}
}