Invoking a POST to an external site with C# (httpwebrequest) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:39:25Z http://stackoverflow.com/feeds/question/698029 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/698029/invoking-a-post-to-an-external-site-with-c-httpwebrequest 0 Invoking a POST to an external site with C# (httpwebrequest) Chance 2009-03-30T16:45:23Z 2009-03-30T18:04:01Z <p>This is driving me nuts and I can't figure out where I am dropping the ball. I've followed a few examples found via the googlemonsta to no avail. Any pointer to where I goofed would be greatly apperciated.</p> <pre><code> var writer = new StringWriter(); param = "location=" + Server.UrlEncode(param); byte[] paramStream = Encoding.ASCII.GetBytes(param + "&amp;param2=value"); var URL = "http://www.somesite.com"; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.0; sv-SE; rv:1.9.1b2) Gecko/20081201 Firefox/3.1b2"; request.ContentLength = paramStream.Length; using( var stream = request.GetRequestStream()) { stream.Write(paramStream, 0, paramStream.Length); } var response = request.GetResponse(); string result; using (var sr = new StreamReader(response.GetResponseStream())) { result = sr.ReadToEnd(); } </code></pre> <p>Thanks!</p> <p><strong>EDIT:</strong> As far as I can tell its hitting the site (i'm getting html back) but the params aren't pushed over. I'm basically getting where the values would appear had it been successful. I've tried removing the first &amp; but didnt get anywhere.</p> <p><strong>EDIT:</strong> Edited code to reflect changes.</p> http://stackoverflow.com/questions/698029/invoking-a-post-to-an-external-site-with-c-httpwebrequest/698044#698044 3 Answer by Jon Skeet for Invoking a POST to an external site with C# (httpwebrequest) Jon Skeet 2009-03-30T16:48:08Z 2009-03-30T16:48:08Z <p>Possibly get rid of the &amp; from the start of the first parameter? Other than that it basically looks okay. (Check the parameter names in your real code - where you've got "paramater" in the sample it should almost certainly be "parameter" - but we don't know what your real code looks like or what the real site expects.)</p> <p>Please give more information about what's actually happening. We know it doesn't work, but there are a lot of different possible failure modes :)</p> <p>One extra thought occurs - you haven't specified the content length. I'm not sure whether this is filled in automatically be <code>WebRequest</code>. It would be worth using <a href="http://wireshark.org" rel="nofollow">WireShark</a> to check whether or not it's present in the outbound request.</p> <p>Just as a general point of practice, you should dispose of the <code>WebResponse</code>, and you don't need to call <code>Close</code> if you've already got a <code>using</code> statement for the response stream:</p> <pre><code>string result; using (WebResponse response = request.GetResponse()) { using (var sr = new StreamReader(response.GetResponseStream())) { result = sr.ReadToEnd(); } } </code></pre> http://stackoverflow.com/questions/698029/invoking-a-post-to-an-external-site-with-c-httpwebrequest/698114#698114 1 Answer by BFree for Invoking a POST to an external site with C# (httpwebrequest) BFree 2009-03-30T17:09:34Z 2009-03-30T17:16:27Z <p>Are you sure you have all the values neccessary for the post? I once had a case where there was a hidden input field on the form that was something like:</p> <pre><code>&lt;input name="action" type="hidden" id="action" value="login"&gt; </code></pre> <p>and I had to supply that as a param as: </p> <pre><code>&amp;action=login </code></pre> <p>Make sure you're not missing anything from the form is what I'm saying...</p> <p><strong>EDIT:</strong> One more thing: I just looked at my code again where I've done this, and noticed that I also had this line in there:</p> <pre><code>request.ContentLength = bytes.Length; </code></pre> <p>Not sure if you need that, but I noticed that you weren't setting the length.</p> http://stackoverflow.com/questions/698029/invoking-a-post-to-an-external-site-with-c-httpwebrequest/698330#698330 0 Answer by Paul Ruane for Invoking a POST to an external site with C# (httpwebrequest) Paul Ruane 2009-03-30T18:04:01Z 2009-03-30T18:04:01Z <p>It is not something as simple as a carriage-return/new-line after the parameters is it? Looking at some docs on HTTP on the internets, you apparently need a blank line afterwards.</p> <p>(I would suggest telneting to the web server manually and pasting your request.)</p>