Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Pass-Through SOAP example please

Not applicable

Nobody tell that read the document. The document explain something but it doesnt show any using. I did what the document explain but i dont know how i will call the webservice.

Please anybody who knows help me. I want to call webservice from c#.net

Solved Solved
1 8 2,084
1 ACCEPTED SOLUTION

Not applicable

Hi @Soner Canoğlu. You can also try a tool like Postman to generate the API request in C# (RestSharp). For example, the http request to https://httpbin.org/ip resource is represented as:

var client = new RestClient("https://httpbin.org/ip");
var request = new RestRequest(Method.GET);
request.AddHeader("postman-token", "2754e14f-74c3-bbc6-f333-a59253a4f605");
request.AddHeader("cache-control", "no-cache");
IRestResponse response = client.Execute(request);

1996-c-postman.png

View solution in original post

8 REPLIES 8
Top Solution Authors