473,804 Members | 3,396 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

HttpWebRequest and the POST method from a win form app

I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebRequest httpReq =
(HttpWebRequest )WebRequest.Cre ate(myaspPageUR L)
httpReq.Content Type =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebResponse httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(ht tpResp.GetRespo nseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}
Nov 18 '05 #1
6 4928
Compare your example to this one and see if you can spot the problem.

http://samples.gotdotnet.com/quickst...=/quickstart/h
owto/samples/net/WebRequests/clientPOST.src

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Rachet?" <be********@yah oo.com> wrote in message
news:48******** *************** ***@posting.goo gle.com...
I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebRequest httpReq =
(HttpWebRequest )WebRequest.Cre ate(myaspPageUR L)
httpReq.Content Type =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebResponse httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(ht tpResp.GetRespo nseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}

Nov 18 '05 #2
you have to url encode the values

strPost += ("&" +names[i]+"=" + HttpUtility.Url Encode(values[i]));

-- bruce (sqlwork.com)

"Rachet?" <be********@yah oo.com> wrote in message
news:48******** *************** ***@posting.goo gle.com...
I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebRequest httpReq =
(HttpWebRequest )WebRequest.Cre ate(myaspPageUR L)
httpReq.Content Type =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebResponse httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(ht tpResp.GetRespo nseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}

Nov 18 '05 #3
Be careful to UrlEncode the values before you post.

One tool I've found really useful for debugging these sorts of
problems is Fiddler. You can compare what your code sends to the
server with what IE sends to the server and spot the difference.

http://www.bayden.com/Fiddler/help/

--
Scott
http://www.OdeToCode.com

On 14 Jul 2004 13:38:59 -0700, be********@yaho o.com (Rachet?) wrote:
I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebReque st httpReq =
(HttpWebReques t)WebRequest.Cr eate(myaspPageU RL)
httpReq.Conten tType =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebRespons e httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(h ttpResp.GetResp onseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}


Nov 18 '05 #4
John,
I tried to use the sample and also the suggestions by the Bruce and scott. I continue to get the error:
System.Net.WebE xception: The remote server returned an error: (400) Bad Request.
at System.Net.Http WebRequest.Chec kFinalStatus()
at System.Net.Http WebRequest.EndG etResponse(IAsy ncResult asyncResult)
at System.Net.Http WebRequest.GetR esponse()
....


"John Timney (Microsoft MVP)" wrote:
Compare your example to this one and see if you can spot the problem.

http://samples.gotdotnet.com/quickst...=/quickstart/h
owto/samples/net/WebRequests/clientPOST.src

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP

"Rachet?" <be********@yah oo.com> wrote in message
news:48******** *************** ***@posting.goo gle.com...
I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebRequest httpReq =
(HttpWebRequest )WebRequest.Cre ate(myaspPageUR L)
httpReq.Content Type =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebResponse httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(ht tpResp.GetRespo nseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}


Nov 18 '05 #5
Thank you so much again. That tool is fabulous. I was able to pinpoint the problem using it. The problem I had was that the requested page had a redirection and I needed to do a manual redirection. Therefore, I just set the autoredirect property to false and handle the redirection later.

"Scott Allen" wrote:
Be careful to UrlEncode the values before you post.

One tool I've found really useful for debugging these sorts of
problems is Fiddler. You can compare what your code sends to the
server with what IE sends to the server and spot the difference.

http://www.bayden.com/Fiddler/help/

--
Scott
http://www.OdeToCode.com

On 14 Jul 2004 13:38:59 -0700, be********@yaho o.com (Rachet?) wrote:
I am getting a "The remote server returned an error: (400) Bad
Request." error while trying to send data to an asp page. The puzzle
is, if I paste the string I want to send on a browser address box, it
just go fine. From the win form app also it go fine until I happen to
send an xml formatted string as a value. But same go fine through the
browser.

Any help is greatly appreciated.

My code looks like:

string responseString = null;
string strPost=names[0]+"=" + values[0];

for(int i=1;i<values.Le ngth;i++)
{
strPost += ("&" +names[i]+"=" + values[i]);
}

byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );

HttpWebReque st httpReq =
(HttpWebReques t)WebRequest.Cr eate(myaspPageU RL)
httpReq.Conten tType =
"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
httpReq.KeepAli ve = true;
httpReq.UserAge nt = null;
httpReq.Content Length = encodedRequest. Length;
httpReq.Method = "POST";

try
{
using (Stream requestStream = httpReq.GetRequ estStream())
{
requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
requestStream.C lose();
}
}

catch ( Exception ex )
{
return "Error in request : " +ex.Message;
}

try
{

HttpWebRespons e httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
using (StreamReader sr = new
StreamReader(h ttpResp.GetResp onseStream()) )
{
do
{
responseString = sr.ReadToEnd();
}while(response String=="");
sr.Close();
}
httpResp.Close ();
/return the response
return responseString;
}
catch ( Exception ex1 )
{
//status=httpResp .StatusDescript ion ;
return "Error in response : " +ex1.Message ;
}
}


Nov 18 '05 #6
That's great. Glad you have it working.

--s

On Fri, 16 Jul 2004 04:37:02 -0700, "Rachete"
<Ra*****@discus sions.microsoft .com> wrote:
Thank you so much again. That tool is fabulous. I was able to pinpoint the problem using it. The problem I had was that the requested page had a redirection and I needed to do a manual redirection. Therefore, I just set the autoredirect property to false and handle the redirection later.

"Scott Allen" wrote:
Be careful to UrlEncode the values before you post.

One tool I've found really useful for debugging these sorts of
problems is Fiddler. You can compare what your code sends to the
server with what IE sends to the server and spot the difference.

http://www.bayden.com/Fiddler/help/

--
Scott
http://www.OdeToCode.com

On 14 Jul 2004 13:38:59 -0700, be********@yaho o.com (Rachet?) wrote:
>I am getting a "The remote server returned an error: (400) Bad
>Request." error while trying to send data to an asp page. The puzzle
>is, if I paste the string I want to send on a browser address box, it
>just go fine. From the win form app also it go fine until I happen to
>send an xml formatted string as a value. But same go fine through the
>browser.
>
>Any help is greatly appreciated.
>
>My code looks like:
>
>string responseString = null;
> string strPost=names[0]+"=" + values[0];
>
> for(int i=1;i<values.Le ngth;i++)
> {
> strPost += ("&" +names[i]+"=" + values[i]);
> }
>
>byte[] encodedRequest = Encoding.UTF8.G etBytes(strPost );
>
>HttpWebReque st httpReq =
>(HttpWebReques t)WebRequest.Cr eate(myaspPageU RL)
>httpReq.Conten tType =
>"applicatio n/x-www-form-urlencoded"; httpReq.Timeout = 10000;
> httpReq.KeepAli ve = true;
> httpReq.UserAge nt = null;
> httpReq.Content Length = encodedRequest. Length;
> httpReq.Method = "POST";
>
> try
> {
> using (Stream requestStream = httpReq.GetRequ estStream())
> {
> requestStream.W rite(encodedReq uest, 0, encodedRequest. Length);
> requestStream.C lose();
> }
> }
>
>catch ( Exception ex )
>{
>return "Error in request : " +ex.Message;
>}
>
>try
>{
>
>HttpWebRespons e httpResp = (HttpWebRespons e)httpReq.GetRe sponse();
>using (StreamReader sr = new
>StreamReader(h ttpResp.GetResp onseStream()) )
>{
> do
> {
> responseString = sr.ReadToEnd();
> }while(response String=="");
> sr.Close();
>}
> httpResp.Close ();
> /return the response
> return responseString;
>}
>catch ( Exception ex1 )
> {
> //status=httpResp .StatusDescript ion ;
> return "Error in response : " +ex1.Message ;
> }
>}



--
Scott
http://www.OdeToCode.com
Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
3424
by: TJO | last post by:
Can someone at MS please reply to this. I am trying to post data so a web form via ssl with the following code. I keep getting this error: "The underlying connection was closed: Could not establish secure channel for SSL/TLS" private void mainHttpCalls(string postData) { HttpWebRequest objRequest1 ; HttpWebRequest objRequest2 ;
2
11578
by: Kueishiong Tu | last post by:
I have a url, I pass it to Webclient, and I get response without any problem. String* uriString = S"trade7.masterlink.com.tw/futures/QuotePrice.jsp"; String* postData = S""; // Create a new WebClient instance. WebClient* myWebClient = new WebClient(); // Apply ASCII Encoding to obtain the String* as a Byte array. Byte postArray= Encoding::ASCII->GetBytes(postData); myWebClient->Headers->Add(S"Content-Type",
10
19364
by: Gregory A Greenman | last post by:
I'm trying to write a program in vb.net to automate filling out a series of forms on a website. There are three forms I need to fill out in sequence. The first one is urlencoded. My program is able to fill that one out just fine. The second form is multipart/form-data. Unfortunately, I haven't been able to fill that out in a way that makes the server happy. I set up a copy of this form at my web site so that I could see exactly what a...
9
8195
by: Mike Cronin via DotNetMonster.com | last post by:
Hi there, Can anyone tell me what level of encryption is used when making an HTTPS POST request through an instance of the System.Net.HttpWebRequest object? Thanks much in advance! Mike Cronin Data On Call - Programmer
2
20178
by: GlennLanier | last post by:
Hello, I've searched the forums and can't find an answer -- if it i there, kindly point me in that direction. I would like to simulate a browser POSTing a FORM and be able to pars the response. I have the following code in my Page_Load (litResponse is defined a <ASP:Literal>):
1
2361
by: Dave Brown | last post by:
I am attempting to post to a url (https://FakeURL/logon.asp) using the HttpWebRequest class. The response for a succesful post will contain the html for the logon user's default page. We've accomplished this in the past utilizing the ServerXMLHTTP object. When I try an equivalent? post utilizing the HttpWebRequest class, the response contains the html for logon.asp (the same page that was posted to), which indicates to me that in some...
8
3957
by: Dave Brown | last post by:
I am attempting to post to a url (https://FakeURL/logon.asp) using the HttpWebRequest class. The response for a succesful post will contain the html for the logon user's default page. We've accomplished this in the past utilizing the ServerXMLHTTP object. When I try an equivalent? post utilizing the HttpWebRequest class, the response contains the html for logon.asp (the same page that was posted to), which indicates to me that in some...
6
8757
by: James MA | last post by:
I'm now writing a small program to communicate a web server to simulate a web client. I use te httpwebrequest to talk with the server, and it works find for "POST" method, however, when i test other link using "GET" method, i found that the cookies data has not included in the request. Here is the sample: ' sURL is the URL of server page ' pCookies is a varible contain the cookies data
4
12715
by: Natalia | last post by:
Hello, I need to provide the ability to post file and some form elements via our website (asp.net) to the third party website (asp page). On http://aspalliance.com/236#Page4 - I found great advices but still having troubles... it might some obvious error that I am making but I just dont see it. ==================FIRST - Webclient=================================
0
12800
by: barrybevel | last post by:
Hi, I'm trying to login to the www.vodafone.ie website using HttpWebRequest. It works fine with IE/Firefox and the .NET Web Control too, just not with my code. I think it's a redirect 302 problem. I'm using this code in a ASP.NET 2.0 application just in case that matters, maybe someone knows a better way to do this?
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10577
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10332
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10320
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9150
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6853
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3820
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2991
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.