-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to send big headers #42
Comments
Some more info: if I send in HTTPS 4 headers of 8 K each, I get the following exception
The same request in HTTP (h2c):
|
Hi @marcstern We would need to know a bit more about which plugin version you are using, jmeter version and java version. It also asks you if you configured the maximum buffer size allocated for requests as indicated in the manual. We are waiting for the version information. |
Same with -DhttpJettyClient.maxBufferSize=120000000 JMeter 5.5 |
Hi @marcstern the use of -D is for "java system property" you need to use the -J for "jmeter property". |
Sorry, I didn't know that difference. |
Any other test I could try? |
Hi @marcstern Sorry but looking at the implementation of the used http client, Jetty, the property we are using applies only to the response buffer, and not to the send buffer with headers included. Currently the plugin does not have a method that allows you to assign that property in the Jetty client. Thanks for reporting the issue, we're sorry we don't have a solution right now. |
has there been a solution? |
I'm trying to send a request with a header containing 90.000 bytes and I receive the error
I launch the JVM with -Dserver.maxHttpHeaderSize=100000 and the same request works in HTTP 1.1 (HttpClient4).
Is there an inherent limit or can I adapt the behaviour?
Thanks a lot
The text was updated successfully, but these errors were encountered: