-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is the Boundary headers right? #9
Comments
I've observed same in 0.0.9 version. The request made by Following is the content sent by When I post gzip file using command RFC Reference: https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html |
@Anurag--Singh We started using |
@endeepak Thank-you. |
I have the same the problem, are you going to resolve this? We observe that the file content is not coming in the request: and searching how the file has to be uploaded with Volley we have seen this: We do not know if this is the problem but we do not get the file in our server. Thanks in advance. |
Thanks for the great library.
We are moving away from our custom remote logger to hyperlog. Our old backend was not able to support the new request of hyperlog.
One thing we observed was the boundary mismatch.
In headers we observed
('Content-Type', 'multipart/form-data;boundary=HyperLog -1520361605154')
which was coming from the java codeprivate final String boundary = "HyperLog -" + System.currentTimeMillis();
But the request's body didn't have the timeinmillis part in the boundary.
'--HyperLog\r\nContent-Disposition: form-data; name="<ngx_upload_module_dummy>"\r\n\r\n\r\n--HyperLog--\r\n'
We got the error line as
Invalid multipart/form-data: no final boundary
We wanted to cross check with you guys whether there is any issue from the library.
The text was updated successfully, but these errors were encountered: