Re: Bug 43234

2008-02-14 Thread Atsuhiko Yamanaka
Hi, 2008/2/15, Stephen Wrathall <[EMAIL PROTECTED]>: > I am experiencing the exact same problems as described in this bug > (43234: Get random failure after multiple sshexec calls: Remote command > failed with exit status -1). > This bug was submitted on 2007-08-29, so I was wondering if there

SCP Task - Problems with directories

2004-12-20 Thread Atsuhiko Yamanaka
Hi there, Mike Dikan has reported us that there is a problem in scp task in transferring directories to sshd from OpenSSH 3.9, at http://sourceforge.net/mailarchive/message.php?msg_id=10325346 and here is a patch for that problem, http://sourceforge.net/mailarchive/message.php?msg_id=10344277

'Auth fail' on scp/sshexec tasks

2005-06-23 Thread Atsuhiko Yamanaka
f you have such an environment, may I ask you to try it? Thanks, -- Atsuhiko Yamanaka JCraft,Inc. 4-1 OHMACHI 1-CHOME AOBA-KU, SENDAI, MIYAGI 980-0804 Japan. Tel +81-22-723-2150 +1-415-578-3454 Fax +81-22-224-8773 Skype callto://jcraft/

Re: Multiple invocations

2005-08-17 Thread Atsuhiko Yamanaka
t? [1] org.apache.tools.ant.util.TeeOutputStream [2] org.apache.tools.ant.taskdefs.optional.ssh.SSHExec Sincerely, -- Atsuhiko Yamanaka JCraft,Inc. 4-1 OHMACHI 1-CHOME AOBA-KU, SENDAI, MIYAGI 980-0804 Japan. Tel +81-22-723-2150 +1-415-578-3454 Fax +81-22-224-8773 Skype callto://jcraft/

a problem on scptask for huge files bigger than 2GB.

2005-09-05 Thread Atsuhiko Yamanaka
Hi, It seems there is a problem in transfering huge files bigger than 2GB by using scptask, because, in its implementation, the file size has been handled as 'int' instead of 'long'. That has come from my fault in examples included in jsch lib. I'll post a fix here.

Re: Scp is this possible?

2006-05-09 Thread Atsuhiko Yamanaka
Hi, 2006/5/9, Kev Jackson <[EMAIL PROTECTED]>: 2 - any work arounds if it's impossible I have posted a patch[1] to implement sftp task. By using sftp task, you can do as follows, If you are interested in it, please try it. [1] http://issues.apache.org/bugzilla/show_bug.cgi?

Re: Scp is this possible?

2006-05-09 Thread Atsuhiko Yamanaka
Hi, 2006/5/10, Stefan Bodewig <[EMAIL PROTECTED]>: On Wed, 10 May 2006, Kevin Jackson <[EMAIL PROTECTED]> wrote: > Thanks, I will certainly try it and use it if it works. If you want to apply ymnk's patch, I committed everything except fpr the files starting with all uppercase SCP. FYI, that

Re: Scp is this possible?

2006-05-09 Thread Atsuhiko Yamanaka
Hi, 2006/5/10, Kev Jackson <[EMAIL PROTECTED]>: Damnit! "selectors are not supported on remote filesets" Basically that's what I need, the ability to select the files based on the last modified - I don't want to pull back files if they are not within the search criteria :( By following task,

Re: Scp is this possible?

2006-05-10 Thread Atsuhiko Yamanaka
Hi, 2006/5/10, Kev Jackson <[EMAIL PROTECTED]>: In the SFTP code, there's mention of selectors not supported on remote filesystems. Why is taht? The SFTPDirectoryScanner inherits from the normal DirectoyScanner (which does support selectors), is there a problem with the SFTP protocol that will

Re: svn commit: r405300 - in /ant/core/trunk: ./ src/main/org/apache/tools/ant/taskdefs/optional/ssh/

2006-06-07 Thread Atsuhiko Yamanaka
Hi, 2006/6/8, Martijn Kruithof <[EMAIL PROTECTED]>: when retrieving the libraries using fetch.xml I get a jsch-0.1.17.jar that does not contain LsEntry. How can we update the environment so that a newer jsch is downloaded? You can grab it at http://sourceforge.net/project/showfiles.php?group

[PATCH] resultproperty for sshexec

2006-06-16 Thread Atsuhiko Yamanaka
Hi, The attached patch will add the 'resultproperty' attribute support to sshexec task. You know that 'resultproperty' is supported by exec task. There is no problem even if this patch is ignored, but I strongly recommend to use channel.isClosed() instead of channel.isEOF() in SSHExec.java. T