Collections:
HTTP POST with JSON Message
How to use HTTP protocol to post a JSON message to a server?
✍: FYIcenter.com
You can follow this tutorial to post a JSON message to a server with JMeter.
1. Create a Test Plan called Azure-Echo-API-JSON.jmx with the following HTTP Request in a Thread Group:
Protocol: http
Server Name: echoapi.cloudapp.net
Method: POST
Path: /api
Body Data:
{
"TestRun": {
"ID": 1,
"Name": "First Run",
"Success": true,
"Reference": null
}
}
2. Add a "View Results Tree" listener to the test plan. And run it.
3. Open the "View Results Tree" listener, select the HTTP Request, and click on "Response Data". You see the same JSON message returned back from the saver.
⇒ Set Content-Type to application/json
⇐ Working With JSON Body Messages
2018-10-08, ∼4135🔥, 0💬
Popular Posts:
How to convert a date and time to a standard format? Date and time can be displayed in a number of s...
Where to find online test tools? FYIcenter.com has prepared a number of online test tools: Data Look...
How to validate Mod 10 (Luhn Algorithm) checksum? In order to help your programming or testing tasks...
Where to find test data generators? FYIcenter.com has prepared a number of test data generators for ...
What are JMeter command line options? You can get see JMeter command line options by running this co...