0

I encounter {"result":560,"type":"exception"} response for axs request in jmeter while designing a script to do a load test for a mendix web application. First I encountered untheorized response on login so i used reg. expression extractor to extract CSRF-TOKEN and then login worked fine. after login and try to submit an application, i got {"result":560,"type":"exception"} response. what might be the issue and how can it be solved?

Response body

Response header

Request body

Request header

1 Answers1

0

The issue is that you're sending an incorrect request. Unfortunately we cannot state what exactly is wrong because we need to see both:

  1. Reference successful request including URL, headers and body from i.e. real browser
  2. The request from JMeter which fails including URL, headers and body

So I can only suggest to use a 3rd-party sniffer tool like Wireshark or Fiddler to capture the requests from the real browser and JMeter and compare them. Request must be exactly the same (apart from dynamic parameters which need to be correlated). Given you send the same request as browser does you should get the same (successful) response

Other things to consider:

  • Check your server log, it might be the case you will figure out the reason from there like it was in this forum thread
  • Given you have Arabic characters in the request body ensure to use proper encoding, i.e. UTF-8 is always a good choice
Dmitri T
  • 159,985
  • 5
  • 83
  • 133