Reputation: 33
I have a requirement to select multiple files in my application and need to download the zip files after processsing. Using Jmeter I am unable to download the file , getting the error message:
{"exception_body":{"http_response_code":400,"message":"The request could not be understood due to malformed syntax.","debug_message":"HTTP 400 Bad Request","error_code":1000}}
Thanks in Advance
Upvotes: 0
Views: 699
Reputation: 1999
As per you error screenshot:-
1-The request is not formatted correctly. Need to correct this. Once done, it will show status 200 but will not download anything. Considering this is the request to download the zip.
Update for regular expression, check below:-
Upvotes: 1
Reputation: 15
I had the same issue with JMeter and solved it used Postman to send the request. You can save the response using "Send and Download". This will download the zipfile.
Upvotes: 0