Tagged Questions

4
votes
4answers
991 views

Why can't I open a JBoss vfs:/ URL?

We are upgrading our application from JBoss 4 to JBoss 6. A couple of pieces of our application get delivered to the client in an unusual way: jars are looked up inside of our application and sent to ...
1
vote
0answers
50 views

SSH URI error with Apache VFS

I'm getting the following error in an Android application with Apache VFS and I can't find much on the google to help. I'm trying to upload a file via SSH and I get this rather vague error. The URI, ...
1
vote
1answer
170 views

Serving jetty webapp from two directories simultaneously

In development I use jetty as the servlet container. I have the following development configuration: master project which has wabapp directory derived project which overrides some of the files in ...
1
vote
2answers
585 views

Trying to set up Amazon S3 filesystem in Apache Commons VFS in java

I'm trying to use VFS S3 a plugin for the Apache Commons VFS for Amazon S3. I've included the jar and it's recognising the s3 schema. However when I try to open a file (which is public, I can open ...
1
vote
8answers
533 views

caching a tar inside jvm for faster file I/O?

I'm working on a java web application that uses thousands of small files to build artifacts in response to requests. I think our system could see performance improvements if we could map these files ...
0
votes
2answers
86 views

Errors reading directory on JBoss 5 due to vfszip protocol

I need to parse a number of files in my web application. The files are sitting in a directory (called "edms") at the top level of my .war file. When I try to get a handle on the directory for ...
0
votes
3answers
117 views

How to change a file that used to be a directory back to directory on linux?

I was playing around with Apache VFS API to move files back and forth between my local machine and remote linux host over sftp and it converted some directories to files somehow on my linux host from ...
0
votes
1answer
228 views

Why does DefaultFileMonitor keep listing the files in my FTP location in a loop?

An edited version of the java code: FileSystemOptions opts = new FileSystemOptions(); DefaultFileSystemConfigBuilder.getInstance().setUserAuthenticator(opts, auth); // fileToMonitor is the FTP ...
0
votes
2answers
289 views

Commons VFS and IBM MVS System

I'm using Apache Commons VFS / SFTP, we are trying to download files from the IBM MVS system. The download part is all good, however, we can not open up the zipped files after downloading. Seems ...
0
votes
1answer
579 views

Ideas for implementing a VFS

I have multimedia files and its metadata stored in a RDBMS (actually, the actual media files are stored in the FS, but let's not dwell on that). I would like to present a filesystem view of this ...