Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to transfer ear file from Unix server to local machine. But I am not able to get the ear . I am using :

JSch jsch = new JSch(); 
Session session = null; 
try { 
    session = jsch.getSession("user", "10.213.31.123", 22); 
    session.setConfig("StrictHostKeyChecking", "no"); 
    session.setPassword("pwd"); 
    session.connect(); 
    Channel channel = session.openChannel("sftp"); 
    channel.connect(); 
    ChannelSftp sftpChannel = (ChannelSftp) channel; 
    sftpChannel.get("/osszone/cramer/users/xpi012/JEE/tsrpwl7/WLS/tsrpwl7/servers/CramerServer/stage/CramerServer_CramerAPI/CramerAPI.ear", "C:/sftp"); 
    sftpChannel.exit(); 
    session.disconnect(); 
} catch (JSchException e) { 
    e.printStackTrace();  
} catch (SftpException e) { 
    e.printStackTrace(); 
} 
share|improve this question
Please format your code and tell us what does happen as well as what doesn't. – Quentin Oct 4 '10 at 9:07
what is error message or exception / – Jigar Joshi Oct 4 '10 at 9:07
I am trying to get ear from remote server using above code at C:/sftp folder on my local machine. I am getting ear name only and I am not getting anything inside that. – Kushal Oct 4 '10 at 9:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.