Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Disabling Apache Httpclient"

(Changed from 45 to 5)
m (Slewis.composent.com moved page Disabling Apache Httpclient45 to Disabling Apache Httpclient over redirect: Generalized)
 
(No difference)

Latest revision as of 16:43, 8 November 2021

Disabling Httpclient5

The new default filetransfer provider (httclient5) may be changed from httpclient5 to the URLConnection provider (using the underlying JVM's impl of URLConnection) by setting the following system property upon eclipse (or other app) startup:

org.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient5

For example, to set this property when starting Eclipse:

eclipse -vmargs -Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient5

This will disable the Apache HttpClient5 provider, and force using the URLConnection provider.

Back to the top