[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.8

How to examine generated HTTP request

Asked by mfor101 in HTTP, C# Programming Language

Tags: http, .net, c#

Hello,

I am using c# and HttpWebRequest to generate a multipart HTTP request to send a data list to a remote server. The transfer is not working and the support from the supplier is not useful and in order to progress I need to provide a copy  of the http request.

I have pointed out that they have the request arriving at the server each time I send it but they want a text version in an email. I'm not sure how to redirect or intrcept the post to see it as text. The code to generate the post is below.

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
string strBoundary = "---------------------------25578952812662351891242608872";
 strData = strBoundary + "\r\nContent-Disposition: form-data; " 
strData += "name=\"profileName\";\r\n101test\r\n";
strData += strBoundary + "\r\nContent-Disposition: form-data; name=\"18991\"; "
strData += "filename=\"" + strFile + "\"";
 strData += "\r\nContent-Type: text/plain\r\n\r\n";
strData += "\"rs@101ltd.com\",\"07710087250\",\"v1\",\"v2\",\"v3\",\"v4\",\"v5\",\"v6\"\r\n";
strData += strBoundary + "--";
// Dump string into a buffer
objBuffer = Encoding.UTF8.GetBytes(strData);
HttpWebRequest objRequest2 = (HttpWebRequest)WebRequest.Create("http://www.xyz.com/interface/list_upload_data.php");
 
objRequest2.Method = "POST";
objRequest2.Accept = "text/plain";
objRequest2.KeepAlive = true;
objRequest2.ContentType = "multipart/form-data; boundary=" + strBoundary;
objRequest2.ContentLength = objBuffer.Length;
// Write data buffer to the request object
objStream = objRequest2.GetRequestStream();
objStream.Write(objBuffer, 0, objBuffer.Length);
objStream.Close();
 
// execute the request
HttpWebResponse objResponse2 = (HttpWebResponse)objRequest2.GetResponse();
[+][-]09/18/09 04:53 AM, ID: 25364897Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/18/09 05:26 AM, ID: 25365136Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/18/09 05:42 AM, ID: 25365294Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09/18/09 06:01 AM, ID: 25365454Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/18/09 06:37 AM, ID: 25365780Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: HTTP, C# Programming Language
Tags: http, .net, c#
Sign Up Now!
Solution Provided By: Protuhj
Participating Experts: 1
Solution Grade: A
 
[+][-]09/18/09 06:51 AM, ID: 25365920Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/18/09 08:41 AM, ID: 25367121Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/18/09 08:55 AM, ID: 25367283Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625