Reputation: 23
In Jmeter when submitting a POST request which includes Json string in the body the transaction is failing with below message and HTTP 500 error-
`{"Message":"There was an error processing the request.","StackTrace":"","ExceptionType":""}`
Can someone please tell what I am doing wrong here?
Below is how the failing sample (REQ_2_1) request body looks like-
Screenshot: Header for the POST request
Upvotes: 0
Views: 306
Reputation: 34526
You JSON body is wrong and break the JSON request:
It should probably be:
"jsonString":"${MyJSONString}"
Upvotes: 0