SSH URI error with Apache VFS

1.1k views Asked by At

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, as reported in logcat, looks correct to me according to the VFS docs. The only thing I can figure is that it only expects to see a local network host instead of a TLD. Is this true, and if so, how do I fix it? If not, what looks wrong about this URI to you?

Caused by: org.apache.commons.vfs2.FileSystemException: Expecting / to follow the hostname in URI "sftp://username:***@mydomain.com/public_html/". 

The errors are the same with or without a specific destination filename.

Here's the full logcat output.

01-22 19:41:15.660: E/AndroidRuntime(1997): FATAL EXCEPTION: main
01-22 19:41:15.660: E/AndroidRuntime(1997): java.lang.RuntimeException: org.apache.commons.vfs2.FileSystemException: Invalid absolute URI "sftp://username:***@mysite.com/public_html/".
01-22 19:41:15.660: E/AndroidRuntime(1997):     at app.specialsauce.myapp.SiteEditor.upload(SiteEditor.java:279)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at app.specialsauce.myapp.SiteEditor.testSFTPSite(SiteEditor.java:289)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at app.specialsauce.myapp.SiteEditor$10.onClick(SiteEditor.java:629)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.view.View.performClick(View.java:2532)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.view.View$PerformClick.run(View.java:9293)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.os.Handler.handleCallback(Handler.java:587)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.os.Handler.dispatchMessage(Handler.java:92)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.os.Looper.loop(Looper.java:150)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at android.app.ActivityThread.main(ActivityThread.java:4263)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at java.lang.reflect.Method.invokeNative(Native Method)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at java.lang.reflect.Method.invoke(Method.java:507)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at dalvik.system.NativeStart.main(Native Method)
01-22 19:41:15.660: E/AndroidRuntime(1997): Caused by: org.apache.commons.vfs2.FileSystemException: Invalid absolute URI "sftp://username:***@mysite.com/public_html/".
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.provider.AbstractOriginatingFileProvider.findFile(AbstractOriginatingFileProvider.java:61)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveFile(DefaultFileSystemManager.java:693)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveFile(DefaultFileSystemManager.java:621)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at app.specialsauce.myapp.SiteEditor.upload(SiteEditor.java:265)
01-22 19:41:15.660: E/AndroidRuntime(1997):     ... 13 more
01-22 19:41:15.660: E/AndroidRuntime(1997): Caused by: org.apache.commons.vfs2.FileSystemException: Expecting / to follow the hostname in URI "sftp://username:***@mysite.com/public_html/".
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.provider.HostFileNameParser.extractToPath(HostFileNameParser.java:155)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.provider.URLFileNameParser.parseUri(URLFileNameParser.java:50)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.provider.AbstractFileProvider.parseUri(AbstractFileProvider.java:188)
01-22 19:41:15.660: E/AndroidRuntime(1997):     at org.apache.commons.vfs2.provider.AbstractOriginatingFileProvider.findFile(AbstractOriginatingFileProvider.java:57)
01-22 19:41:15.660: E/AndroidRuntime(1997):     ... 16 more
1

There are 1 answers

0
eckes On

I suspect you have a problematic character in the password (as this is the only info not shown). You need to percent-encode the username and password before adding it to the URL.