[ 
https://issues.apache.org/jira/browse/VFS-85?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12778068#action_12778068
 ] 

Ralph Goers commented on VFS-85:
--------------------------------

No one has commented on this issue in over a year and has no watchers or votes. 
Should this be closed as wontfix?

> unexpected http connect
> -----------------------
>
>                 Key: VFS-85
>                 URL: https://issues.apache.org/jira/browse/VFS-85
>             Project: Commons VFS
>          Issue Type: Improvement
>            Reporter: Philippe Poulard
>             Fix For: later
>
>
> when I try to create a file object with "http://www.somehost.com/";, VFS fails 
> when the host is unreachable (e.g. when not connected to internet)
> this is because org.apache.commons.vfs.provider.http.HttpFileSystem has a 
> constructor that has an argument HttpClient, whereas it should be an 
> HttpClientFactory
> the HttpClient should be resolved only when required :
>     protected HttpClient getClient()
>     {
>         if ( this.client == null ) {
>             this.client = clientFactory.createConnection(...);
>         }
>         return client;
>     }
> I didn't check it, but this issue is certainly present with FTP and others...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to