I am trying to send POST request with a large payload using Jetty client 9.3.3 But seems like my jetty client is not sending the whole payload.
Is there a payload size limitation by default? How can I make it able to send a large payload?
[EDIT] here is my code (in short):
httpClient = new HttpClient(new SslContextFactory(true));
httpClient.start();
request = httpClient.newRequest(url.trim());
request.method("POST");
request.content(new StringContentProvider(LargePayload,"UTF-8"));
response = request.send();
stopHttpClient();
Thanks in advance for your help!