Return-Path: Delivered-To: apmail-camel-users-archive@www.apache.org Received: (qmail 21852 invoked from network); 26 Nov 2010 07:41:41 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Nov 2010 07:41:41 -0000 Received: (qmail 87105 invoked by uid 500); 26 Nov 2010 07:41:41 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 86868 invoked by uid 500); 26 Nov 2010 07:41:41 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Received: (qmail 86860 invoked by uid 99); 26 Nov 2010 07:41:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 07:41:40 +0000 X-ASF-Spam-Status: No, hits=3.0 required=10.0 tests=FORGED_YAHOO_RCVD,FREEMAIL_FROM,RFC_ABUSE_POST,SPF_HELO_PASS,SPF_NEUTRAL,T_TO_NO_BRKTS_FREEMAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Nov 2010 07:41:35 +0000 Received: from sam.nabble.com ([192.168.236.26]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1PLsvi-0000jC-MK for users@camel.apache.org; Thu, 25 Nov 2010 23:41:14 -0800 Date: Thu, 25 Nov 2010 23:41:14 -0800 (PST) From: "manoj.sahu" To: users@camel.apache.org Message-ID: <1290757274665-3280951.post@n5.nabble.com> Subject: SFTP file retrieval does not seem to work but no exception MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi - I am trying to get a file from a remote sftp server. It does not give me any exception but does not work either. Here is my route : from("sftp://dwsftp@10.0.0.149:2222//sftp/?initialDelay=8000&move=.done&password=xxxx") .to("log:input") .unmarshal(bindy) .process(new CbProcessor()); I have tried many combination. I gave the filename ... nothing worked. Here is the logfile: 02:29:20,093 DEBUG SftpConsumer:111 - Not connected/logged in, connecting to: sftp://dwsftp@10.0.0.149:2222 02:29:20,124 DEBUG SftpOperations:152 - Using StrickHostKeyChecking: no 02:29:20,124 INFO SftpOperations:216 - JSCH -> Connecting to 10.0.0.149 port 2222 02:29:20,155 INFO SftpOperations:216 - JSCH -> Connection established 02:29:20,171 INFO SftpOperations:216 - JSCH -> Remote version string: SSH-2.0-mod_sftp/0.9.7 02:29:20,171 INFO SftpOperations:216 - JSCH -> Local version string: SSH-2.0-JSCH-0.1.42 02:29:20,171 INFO SftpOperations:216 - JSCH -> CheckCiphers: aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,3des-ctr,arcfour,arcfour128,arcfour256 02:29:20,186 INFO SftpOperations:216 - JSCH -> SSH_MSG_KEXINIT sent 02:29:20,186 INFO SftpOperations:216 - JSCH -> SSH_MSG_KEXINIT received 02:29:20,186 INFO SftpOperations:216 - JSCH -> kex: server->client aes128-ctr hmac-md5 none 02:29:20,186 INFO SftpOperations:216 - JSCH -> kex: client->server aes128-ctr hmac-md5 none 02:29:20,202 INFO SftpOperations:216 - JSCH -> SSH_MSG_KEXDH_INIT sent 02:29:20,202 INFO SftpOperations:216 - JSCH -> expecting SSH_MSG_KEXDH_REPLY 02:29:20,436 INFO SftpOperations:216 - JSCH -> ssh_rsa_verify: signature true 02:29:20,436 WARN SftpOperations:213 - JSCH -> Permanently added '10.0.0.149' (RSA) to the list of known hosts. 02:29:20,436 INFO SftpOperations:216 - JSCH -> SSH_MSG_NEWKEYS sent 02:29:20,452 INFO SftpOperations:216 - JSCH -> SSH_MSG_NEWKEYS received 02:29:20,468 INFO SftpOperations:216 - JSCH -> SSH_MSG_SERVICE_REQUEST sent 02:29:20,483 INFO SftpOperations:216 - JSCH -> SSH_MSG_SERVICE_ACCEPT received 02:29:20,499 INFO SftpOperations:216 - JSCH -> Authentications that can continue: password 02:29:20,499 INFO SftpOperations:216 - JSCH -> Next authentication method: password 02:29:20,530 INFO SftpOperations:216 - JSCH -> Authentication succeeded (password). Then nothing. I have debug level on. That's all I get. Can someone give me some pointers? Thanks -- View this message in context: http://camel.465427.n5.nabble.com/SFTP-file-retrieval-does-not-seem-to-work-but-no-exception-tp3280951p3280951.html Sent from the Camel - Users mailing list archive at Nabble.com.