开发者

is there a popular C# library for working HTTP? Eg simplifing working with httpwebrequest etc [closed]

As it currently stands, this question is not a开发者_运维知识库 good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 9 years ago.

is there a popular C# library for working HTTP? Eg simplifing working with httpwebrequest etc

For example doing http file upload with some parameters requires many lines and knowledge of Http protocol content format etc. WebClient itself do not do it.

So being new, is there a well know library that c# developers use here?

Thanks


Web forms are submitted in one of two formats: application/x-www-form-urlencoded and multipart/form-data.

WebClient provides a very simple and convenient way to upload any kind of data to a website. In case of application/x-www-form-urlencoded all you have to do is to provide a NameValueCollection. In case of multipart/form-data, AFAIK, you have to create the request data yourself (which may include both files and name value pairs).


application/x-www-form-urlencoded

NameValueCollection formData = new NameValueCollection();
formData["q"] = "c# webclient post urlencoded";
formData["btnG"] = "Google Search";
formData["hl"] = "en";

WebClient myWebClient = new WebClient();
myWebClient.UploadValues(uriString, formData);

WebClient.UploadValues sets the HTTP method to "POST" and the Content-Type to "application/x-www-form-urlencoded", URL-encodes formData and uploads it to the specified uriString.


multipart/form-data

string formData = @"--AaB03x
Content-Disposition: form-data; name=""submit-name""

Larry
--AaB03x
Content-Disposition: form-data; name=""files""; filename=""file1.dat""
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64

" + Convert.ToBase64String(
  File.ReadAllBytes("file1.dat"), Base64FormattingOptions.InsertLineBreaks) + @"
--AaB03x--
";

WebClient myWebClient = new WebClient();
myWebClient.Encoding = Encoding.ASCII;
myWebClient.Headers.Add("Content-Type", "multipart/form-data; boundary=AaB03x");
myWebClient.UploadString(uriString, formData);

This sets the Content-Type to "multipart/form-data" with the boundary used in the request data. WebClient.UploadData sets the HTTP method to "POST" and uploads the byte array to the uriString. The request data in this example contains a file file1.dat and a form parameter submit-name which is set to Larry. The format is described in RFC2388.


WebClient will do it. Like:

var c = new System.Net.WebClient();    
c.UploadFile(url, filename);

If this is not enough, be more specific. What 'parameters' do you mean?


Are you looking for an Ajax library, a file upload control, or both, or neither? Check out the AjaxToolkit's AsyncFileUpload.


this is best answer I could determine so far:

Here's a link I found that gets close to what I was thinking of. This solves my specific requirement, however doesn't seem to be overly broad in terms of methods. Perhaps these are just the key helper methods that are required mostly above/beyond basic WebClient / HttpWebRequest classes suport? Anyway if anyone knows of a popular c# HTTP library is better known than this let me know please. Else for the moment this link is the best I can find so far that answers my questions. Thanks for all the comments to-date.


Do check out HTML Agility Pack on CodePlex :

  • Main page.
  • Documentation
  • All downloads including source code

There's also thread here on SO that may be of interest to you.


Chilkat Components

http://www.example-code.com

Chilkat.HttpRequest req = new Chilkat.HttpRequest();
Chilkat.Http http = new Chilkat.Http();

bool success;

//  Any string unlocks the component for the 1st 30-days.
success = http.UnlockComponent("Anything for 30-day trial");
if (success != true) {
    MessageBox.Show(http.LastErrorText);
    return;
}

//  Build an HTTP POST Request:
req.UsePost();
req.Path = "/testPostHandler.asp";
req.AddParam("arg1","This is the value for arg1.");
req.AddParam("arg2","This is the value for arg2.");
req.AddParam("arg3","This is the value for arg3.");

//  Send the HTTP POST and get the response.  Note: This is a blocking call.
//  The method does not return until the full HTTP response is received.
string domain;
int port;
bool ssl;
domain = "www.chilkatsoft.com";
port = 80;
ssl = false;
Chilkat.HttpResponse resp = null;
resp = http.SynchronousRequest(domain,port,ssl,req);
if (resp == null ) {
    textBox1.Text += http.LastErrorText + "\r\n";
}
else {
    //  Display the HTML page returned.
    textBox1.Text += resp.BodyStr + "\r\n";
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜