vote up 13 vote down star
5

Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest?

Edit 2:

I do not want to upload to a WebDAV folder or something like that. I want to simulate a browser, so just like you upload your avatar to a forum or upload a file via form in a web application. Upload to a form which uses a multipart/form-data.

Edit:

WebClient is not cover my requirements, so I'm looking for a solution with HTTPWebrequest.

flag

5 Answers

vote up 2 vote down

I had to deal with this recently - another way to approach it is to use the fact that WebClient is inheritable, and change the underlying WebRequest from there:

http://msdn.microsoft.com/en-us/library/system.net.webclient.getwebrequest(VS.80).aspx

I prefer C#, but if you're stuck with VB the results will look something like this:

Public Class BigWebClient
    Inherits WebClient
    Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest
        Dim x As WebRequest = MyBase.GetWebRequest(address)
        x.Timeout = 60 * 60 * 1000
        Return x
    End Function
End Class

'Use BigWebClient here instead of WebClient
link|flag
+1 Still webclient is too non-customisable so implementing it would be awkward, but this is a really interesting approach, and I didn't know that it was possible. – dr. evil Apr 24 at 21:22
vote up 1 vote down

My ASP.NET Upload FAQ has an article on this, with example code: Upload files using an RFC 1867 POST request with HttpWebRequest/WebClient. This code doesn't load files into memory (as opposed to the code above), supports multiple files, and supports form values, setting credentials and cookies, etc.

link|flag
Thanks for the link Chris I actually implemented the other one into my own library and added those support (other than memory). Also converted to VB.NET already :) – dr. evil Apr 23 at 17:53
vote up 9 vote down check

I was looking for something like this, Found in : http://bytes.com/groups/net-c/268661-how-upload-file-via-c-code

public static  void UploadFilesToRemoteUrl(string url, string[] files, string
logpath, NameValueCollection nvc)
{

    long length = 0;
    string boundary = "----------------------------" +
    DateTime.Now.Ticks.ToString("x");


    HttpWebRequest httpWebRequest2 = (HttpWebRequest)WebRequest.Create(url);
    httpWebRequest2.ContentType = "multipart/form-data; boundary=" +
    boundary;
    httpWebRequest2.Method = "POST";
    httpWebRequest2.KeepAlive = true;
    httpWebRequest2.Credentials =
    System.Net.CredentialCache.DefaultCredentials;



    Stream memStream = new System.IO.MemoryStream();

    byte[] boundarybytes = System.Text.Encoding.ASCII.GetBytes("\r\n--" +
    boundary + "\r\n");


    string formdataTemplate = "\r\n--" + boundary +
    "\r\nContent-Disposition: form-data; name=\"{0}\";\r\n\r\n{1}";

    foreach (string key in nvc.Keys)
    {
        string formitem = string.Format(formdataTemplate, key, nvc[key]);
        byte[] formitembytes = System.Text.Encoding.UTF8.GetBytes(formitem);
        memStream.Write(formitembytes, 0, formitembytes.Length);
    }


    memStream.Write(boundarybytes, 0, boundarybytes.Length);

    string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\n Content-Type: application/octet-stream\r\n\r\n";

    for (int i = 0; i < files.Length; i++)
    {

        //string header = string.Format(headerTemplate, "file" + i, files[i]);
        string header = string.Format(headerTemplate, "uplTheFile", files[i]);

        byte[] headerbytes = System.Text.Encoding.UTF8.GetBytes(header);

        memStream.Write(headerbytes, 0, headerbytes.Length);


        FileStream fileStream = new FileStream(files[i], FileMode.Open,
        FileAccess.Read);
        byte[] buffer = new byte[1024];

        int bytesRead = 0;

        while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
        {
            memStream.Write(buffer, 0, bytesRead);

        }


        memStream.Write(boundarybytes, 0, boundarybytes.Length);


        fileStream.Close();
    }

    httpWebRequest2.ContentLength = memStream.Length;

    Stream requestStream = httpWebRequest2.GetRequestStream();

    memStream.Position = 0;
    byte[] tempBuffer = new byte[memStream.Length];
    memStream.Read(tempBuffer, 0, tempBuffer.Length);
    memStream.Close();
    requestStream.Write(tempBuffer, 0, tempBuffer.Length);
    requestStream.Close();


    WebResponse webResponse2 = httpWebRequest2.GetResponse();

    Stream stream2 = webResponse2.GetResponseStream();
    StreamReader reader2 = new StreamReader(stream2);


    MessageBox.Show(reader2.ReadToEnd());

    webResponse2.Close();
    httpWebRequest2 = null;
    webResponse2 = null;
link|flag
2  
FYI...you can refactor out the intermediate MemoryStream and write directly to the request stream. The key is to be sure to close the request stream when you're done, which sets the content length of the request for you! – John Clayton Aug 21 at 21:55
vote up 4 vote down

something like this is close: (untested code)

byte[] data; // data goes here.

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Credentials = userNetworkCredentials;
request.Method = "PUT";
request.ContentType = "application/octet-stream";
request.ContentLength = data.Length;
Stream stream = request.GetRequestStream();
stream.Write(data,0,data.Length);
stream.Close();
response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
temp = reader.ReadToEnd();
reader.Close();
link|flag
Thanks buy I'm not after a WebDAV or similar solution, I clarified my answer. Please see the edit. – dr. evil Feb 19 at 18:19
vote up 1 vote down

I think you're looking for something more like WebClient.

Specifically, UploadFile().

link|flag
+1 Better answer than mine! – Moose Feb 19 at 18:07
It should be with HTTPWebrequest, I know WebClient but it's no good for this project. – dr. evil Feb 19 at 18:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.