I’m trying to send a request to my web service that I’ve created (http://localhost/WebServices/DisplayResolution.asmx?op=Get). I believe the web service requires POST to be sent.
How can I do this from my C# desktop client? Should I use SOAP as the web service recommends?!
You may want to use Visual Studio to create a the necessary proxy classes to consume your web service by adding a “Service reference” to your client project.
This article on Consuming Web (asmx) Services might help.