you might try something like the following:

    <scp todir="${u}:[EMAIL PROTECTED]:${build.dir}"
                        trust="true" verbose="true">
      <fileset dir="${src.dir}">
        <include name="${src.file}"/>
      </fileset>
    </scp>

trust is important
verbose will give you more details.

--glenn

On Tue, Apr 22, 2008 at 10:20 AM, Steve Loughran <[EMAIL PROTECTED]> wrote:
> Sam Hamilton wrote:
>
> > Hi,
> >
> > Up until now, I have been manually copying over my files that have been
> > checked out of subversion by ANT on Windows, to an AIX server. I've
> decided
> > to try to implement ANT so it does this copy for me. I have add the below
> > lines of code:
> >
> >  <scp todir="userName:[EMAIL PROTECTED]:/home/user">
> >        <fileset dir="filetoFTP"/>
> >    </scp>
> >
> > But when i run my ANT script, i have the error message:
> > 265: No response from server
> >
> > I can ping this IP address and previously I had been using WinSCP to
> connect
> > using the same IP address without any problems.
> > I am using ANT 1.6 and jsch-0.1.37.jar.
> >
> > Am I missing something obvious here like a missing flag in my SCP task?
> >
>
>  Try
>  telnet IPAddress 22
>  to see if the server is reachable from the client.
>
>  --
>  Steve Loughran                  http://www.1060.org/blogxter/publish/5
>  Author: Ant in Action           http://antbook.org/
>
>
>
>  ---------------------------------------------------------------------
>  To unsubscribe, e-mail: [EMAIL PROTECTED]
>  For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to