Recently, I decided that the client / server application I created (where the client is a Windows Mobile device running .netcf 3.5), ideally, would use a lightweight web service, oriented approximately to the principles of REST.
Is there a way (and if so, which is the easiest way) to implement the most common HTTP methods using the .net compact framework. In particular, we hope to use GET, POST, PUT and DELETE.
I see that HTTPWebRequest can be used to perform POST operations (using request.Method = "POST"), but I'm not sure about the other methods.
Thanks in advance.
source
share