Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2012-09-11 21:49:45 +0000
committerslewis2012-09-11 21:49:45 +0000
commit49e5f73c29c5053492657af32bd52d0f1c1225fa (patch)
tree0a19d8289f6c5361d89618600557972652bf61e9 /providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4
parent3a33149335bfd4599be216725ade2e69449111f4 (diff)
downloadorg.eclipse.ecf-49e5f73c29c5053492657af32bd52d0f1c1225fa.tar.gz
org.eclipse.ecf-49e5f73c29c5053492657af32bd52d0f1c1225fa.tar.xz
org.eclipse.ecf-49e5f73c29c5053492657af32bd52d0f1c1225fa.zip
Fix to httpclient4 provider plugin.xml to include browse and retrieve
factories with priority < 50. These had been commented out previously in order to diagnose. Also added httpclient4 launch configs in org.eclipse.ecf.tests.filetransfer for local running of httpclient4 filetransfer tests. Changed timeout value for waitForDone so that even slow links would have 6 minutes to download large (e.g. 15M) files via ftp before timing out.
Diffstat (limited to 'providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/plugin.xml14
1 files changed, 5 insertions, 9 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/plugin.xml b/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/plugin.xml
index e5f38f0c5..a526acea6 100644
--- a/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/plugin.xml
+++ b/providers/bundles/org.eclipse.ecf.provider.filetransfer.httpclient4/plugin.xml
@@ -3,34 +3,30 @@
<plugin>
<extension
point="org.eclipse.ecf.provider.filetransfer.retrieveFileTransferProtocolFactory">
- <!--
<retrieveFileTransferProtocolFactory
class="org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransferFactory"
protocol="http"
- priority="55">
+ priority="45">
</retrieveFileTransferProtocolFactory>
<retrieveFileTransferProtocolFactory
class="org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientRetrieveFileTransferFactory"
protocol="https"
- priority="55">
+ priority="45">
</retrieveFileTransferProtocolFactory>
- -->
</extension>
<extension
point="org.eclipse.ecf.provider.filetransfer.browseFileTransferProtocolFactory">
- <!--
<browseFileTransferProtocolFactory
class="org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientBrowseFileTransferFactory"
protocol="http"
- priority="55">
+ priority="45">
</browseFileTransferProtocolFactory>
<browseFileTransferProtocolFactory
class="org.eclipse.ecf.provider.filetransfer.httpclient4.HttpClientBrowseFileTransferFactory"
protocol="https"
- priority="55">
+ priority="45">
</browseFileTransferProtocolFactory>
- -->
- </extension>
+ </extension>
</plugin>

Back to the top