I am trying to access a folder on my local computer using an smb URL. my project is using the jars: commons-vfs2-2.0.jar and jcifs-1.3.17.jar (and all the other required jar
I use different authentication method and it works, you may give it a shot.
String url = "smb://10.0.2.2/TimeOut/"; NtlmPasswordAuthentication authen = new NtlmPasswordAuthentication(,,); SmbFile smbFile = new SmbFile(url,authen);