I'm trying to upload a small file to the server in c#. The basic upload code can be found here.

Here's what the requests look like (through fiddler):

POST <website address> HTTP/1.1
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: <referrer>
Content-Type: multipart/form-data; boundary=---------------------------634654273909448579
Host: <host>
Content-Length: 3378
Expect: 100-continue


-----------------------------634654273909448579
Content-Disposition: form-data; name="action"

ADDFILE
-----------------------------634654273909448579
Content-Disposition: form-data; name="username"

user
-----------------------------634654273909448579
Content-Disposition: form-data; name="password"

password
-----------------------------634654273909448579
Content-Disposition: form-data; name="file"; filename="tmp15A5.tmp"
Content-Type: application/octet-stream
    <file content>

This always causes error 504 when calling wr.GetResponse().

The same request, submitted with firefox:

POST <web page> HTTP/1.1
Host: <host>
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.8,uk;q=0.5,ru;q=0.3
Accept-Encoding: gzip, deflate
Connection: keep-alive
Referer: <referrer>
Content-Type: multipart/form-data; boundary=---------------------------265001916915724
Content-Length: 4227

-----------------------------265001916915724
Content-Disposition: form-data; name="action"

ADDFILE
-----------------------------265001916915724
Content-Disposition: form-data; name="username"

user
-----------------------------265001916915724
Content-Disposition: form-data; name="password"

password
-----------------------------265001916915724
Content-Disposition: form-data; name="file"; filename="tmpDCD8.tmp"
Content-Type: application/octet-stream
<file content>

always works perfectly fine.

Any ideas why this happens and how to fix it?

link|improve this question

69% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.