access to file using Java with Samba JCIFS
I have a question about accessing file with Samba JCIFS. So there is a server I want to access, let's call it server.unv.edu and the workgroup is WKGRP. there is a share in this server: \\server.unv.edu\pcb$ the way I am trying to access to the server is : public class SMBAuthenticator extends NtlmAuthenticator{ private String username = "username"; private String password = "password"; private String domain = "smb://server.unv.edu/WKGRP/"; public SMBAuthenticator(){ NtlmAuthenticator.setDefault(this); } and public class SMBConnection{ public String urlString = "smb://server.unv.edu/pcb$/path