-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
5.0.1
-
None
In QHttpMultiPart the boundary-attribute in the http-header is surrounded by double quotes.
QHttpMultiPart:
Content-Type: multipart/form-data; boundary="1360855324439"
In my server-application the boundary-value therefore is regognized as "1360855324439", but 1360855324439 is expected, as QHttpMultiPart sets correctly --1360855324439 as delimiter for one part.
Here is what Mozilla and Chrome do:
Content-Type: multipart/form-data; boundary=1360855324439
Can this be changed?