You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We faced an issue while trying to call an endpoint while passing through a proxy that adds the "Expect 100-continue" header.
The gateway did not answer "100" so the whole call falls in timeout.
While crawling the code we found here that a variable is supposed to handle that:
Hello,
We faced an issue while trying to call an endpoint while passing through a proxy that adds the "Expect 100-continue" header.
The gateway did not answer "100" so the whole call falls in timeout.
While crawling the code we found here that a variable is supposed to handle that:
this.handle100Continue(environment.getProperty(prefix + ".handle100Continue", Boolean.class, FAULT_HANDLE_100_CONTINUE));
but by default set to false.
Fixed by setting the config:
This parameter is not described in the documentation or maybe somewhere else.
The text was updated successfully, but these errors were encountered: