[vfs] traversing http directories

2005-06-08 Thread Torsten Curdt
Am I wrong or do I have to implement protected String[] doListChildren() throws Exception { throw new Exception(Not implemented.); } in HttpFileObject in order make this work? final FileSystemManager fsManager = VFS.getManager(); final FileObject base =

Re: [vfs] traversing http directories

2005-06-08 Thread Mario Ivankovits
Torsten Curdt wrote: Am I wrong or do I have to implement protected String[] doListChildren() No you are not wrong if you really would like to spider a http server. Even if the webserver presents you a directory listing its a html page which needs to be parsed. There were people