Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.12.4
-
None
-
IBM Websphere Liberty Core 17.0.0.1
IBM Websphere Liberty Core 17.0.0.2
Reproducible using both IBM JDK 8 and Oracle JDK 8
-
Unknown
Description
Dear Camel team,
While working on one integration we found issue related to camel-http component when solution is deployed on IBM Liberty core.
Same issue is not reproducible on Jetty and Tomcat.
Issue is connected to the code in IOHelper and CachedOutputStream$WrappedInputStream
We are using version 2.12.4 but I can see that same code is used also in latest versions.
Problematic part are lines 196, 198 and 204.
Basically stream reader which is used org.apache.camel.converter.stream.CachedOutputStream$WrappedInputStream is not returning -1 like response of read method if empty string is provided on input.
This is wrong by specification of InputReader interface.
// in the case there is input which is empty string
while ( -1 != n)
For our use case we have applied change in IOHelper to check and directly cover if stream reader produce same (non-valid) response to not produce infinitive loop.
If any questions around reproducing issue please let me know
Best regards,
Zeljko