Exemple #1
0
        static void Main() {
            // create a request
            var req = new GetCustomerRequest { id = 1 };
            GetCustomerResponse resp;

            // ask the server (IHttpHandler)
            using (var client = new WebClient { BaseAddress = "http://localhost:22174" }) {
                resp = client.UploadProto<GetCustomerResponse>("/MyHandler.ashx", req);
            }

            // write the answer
            WriteCustomer(resp.cust);

            // ask the server (ASP.NET MVC)
            using (var client = new WebClient { BaseAddress = "http://localhost:22174" }) {
                resp = client.UploadProto<GetCustomerResponse>("/Customer/GetCustomer", req);
            }

            // write the answer
            WriteCustomer(resp.cust);
        }