I have a REST Service method and need to load test it. Unfortunately i don't have admin rights to my laptop and can not install/download any tool.
Need to know the capacity of the REST service (web project in tomcat) like how many concurrent requests it can handle. I don't require any other information or details.
Here are some details about the REST api:
Method: POST
Technology: Spring MVC
Response object is very complex and huge form, requiring 100's of objects.
Is there any way to do it using core java application (post to a REST URL, get the response, and find maximum concurrent requests supported by API)
In core java i can use apache http, spring or core java 7/8