rdmenezes / crashrpt

Automatically exported from code.google.com/p/crashrpt
0 stars 0 forks source link

CHttpRequestSender::InternalSend() sends bad request header #95

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Well, at least my django server choked on it. It seems like the comma in the 
line:

    CString sHeaders = _T("Content-type: multipart/form-data, boundary=") + m_sBoundary;

in CHttpRequestSender::InternalSend() should be replaced by a semicolon:

    CString sHeaders = _T("Content-type: multipart/form-data, boundary=") + m_sBoundary;

Original issue reported on code.google.com by asch...@gwdg.de on 30 Jun 2011 at 9:50

GoogleCodeExporter commented 9 years ago

Original comment by zexspect...@gmail.com on 31 Jul 2011 at 3:39

GoogleCodeExporter commented 9 years ago
Ok, I'll replace the comma with semicolon. It seem that semicolon is the 
standard separator http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html

Original comment by zexspect...@gmail.com on 6 Oct 2011 at 3:51

GoogleCodeExporter commented 9 years ago
Fixed in v.1.3.0

Original comment by zexspect...@gmail.com on 22 Oct 2011 at 11:03

GoogleCodeExporter commented 9 years ago

Original comment by zexspect...@gmail.com on 22 Oct 2011 at 11:03