Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Warning
The java.net.http.HttpClient is reported to be considerably slower than java.net.HttpURLConnection (see please https://bugs.openjdk.org/browse/JDK-8277519), so there is an option to revert the default to URLConnectionHTTPConduit by setting "force.urlconnection.http.conduit" contextual property to true  .


Warning

The java.net.http.HttpClient is very heavy and hungry for resources (heap and threads primarily). Apache CXF tries to countermeasure that by sharing a single  java.net.http.HttpClient instance across many HTTP client conduits if possible (subject to HTTP client policy and SSL/TLS settings). This behaviour could be changed by setting share.httpclient.http.conduit contextual property to false (the default value is true), in this case a new java.net.http.HttpClient instance is going to be created per HTTP client conduit.

Authentication

Basic Authentication

...