How do you do a Remote HTTP Post (request) in CSharp?
i really needs this pls. :(
|
1
|
How do you do a Remote HTTP Post (request) in CSharp? i really needs this pls. :(
|
|||
|
|
|
You can use WCF or create a WebRequest
|
||
|
|
|
|
I use this very simple class:
And you use it thusly:
Very clean, easy to use and encapsulates all the muck. I prefer this to using the HttpWebRequest and so forth directly. |
||||||
|
|
|
This is code from a small app I wrote once to post a form with values to a URL. It should be pretty robust. _formValues is a Dictionary<string,string> containing the variables to post and their values.
|
|||
|
|
|
Also |
||
|
|
|
|
Should print "OK" (200) if the request was successful |
|||
|
|
|
Use the |
|||
|
|
|
|
Im using the following piece of code for calling webservices using the httpwebrequest class:
This can be easily used to call a webservice
|
||
|
|
|
|
The problem when beginning with high-level language like C#, Java or PHP is that people may have never known how simple the underground is in reality. So here’s a short introduction: |
||
|
|