Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the easiest way to submit an HTTP POST request with a multipart/form-data content type from C#? There has to be a better way than building my own request.

The reason I'm asking is to upload photos to Flickr using this api:

http://www.flickr.com/services/api/upload.api.html

share|improve this question
1  
I've mainly been looking at HttpWebRequest, but every resource I've found on the internet explains how to manually build the request. Here is one of many similar examples I have found: social.msdn.microsoft.com/Forums/en-US/netfxnetcom/thread/… – Jesse Weigert Jul 30 '09 at 0:31
This question has an answer that solves your problem with posting multipart/form-data using WebRequest. It works well. stackoverflow.com/questions/219827/… – Marek Jan 5 '10 at 16:27

3 Answers

up vote 1 down vote accepted

First of all, there's nothing wrong with pure manual implementation of the HTTP commands using the .Net framework. Do keep in mind that it's a framework, and it is supposed to be pretty generic.

Secondly, I think you can try searching for a browser implementation in .Net. I saw this one, perhaps it covers the issue you asked about. Or you can just search for "C# http put get post request". One of the results leads to a non-free library that may be helpful (Chilkat Http)

If you happen to write your own framework of HTTP commands on top of .Net - I think we can all enjoy it if you share it :-)

share|improve this answer
Sadly, this is what I had to do. – Jesse Weigert Aug 2 '09 at 6:08

The System.Net.WebClient class may be what you are looking for. Check the documentation for WebClient.UploadFile, it should allow you to upload a file to a specified resource via one of the UploadFile overloads. I think this is the method you are looking to use to post the data...

It can be used like.... note this is just sample code not tested...

WebClient webClient = new WebClient();

webClient.UploadFile("http://www.url.com/ReceiveUploadedFile.aspx", "POST", @"c:\myfile.txt");

Here is the MSDN reference if you are interested.

http://msdn.microsoft.com/en-us/library/system.net.webclient.uploadfile.aspx

Hope this helps.

share|improve this answer
That would work if I would just uploading the file. However, I need to include a bunch of other form variables along with it. – Jesse Weigert Jul 30 '09 at 23:57

I've had success with the code posted at aspnetupload.com. I ended up making my own version of their UploadHelper library which is compatible with the Compact Framework. Works well, seems to do exactly what you require.

share|improve this answer
I should add that "make my own version" == try to compile library in a Compact Framework project, see what's broken, use another CF-compatible object or code segment to do the same thing, repeat. I was pleasantly surprised at how simple that process was. – Ryan Barton Apr 19 '11 at 22:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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