SCP Task - No response from server

View: New views
3 Messages — Rating Filter:   Alert me  

SCP Task - No response from server

by Sam Hamilton :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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:pwd@IPAddress:/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?

Re: SCP Task - No response from server

by Steve Loughran :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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:pwd@IPAddress:/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: user-unsubscribe@...
For additional commands, e-mail: user-help@...


Re: SCP Task - No response from server

by glenn opdycke-hansen :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

you might try something like the following:

    <scp todir="${u}:${pw}@${host}:${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 <stevel@...> 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:pwd@IPAddress:/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: user-unsubscribe@...
>  For additional commands, e-mail: user-help@...
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...