Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E98FD200B41 for ; Thu, 7 Jul 2016 08:57:12 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E8191160A68; Thu, 7 Jul 2016 06:57:12 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3BA67160A59 for ; Thu, 7 Jul 2016 08:57:12 +0200 (CEST) Received: (qmail 6615 invoked by uid 500); 7 Jul 2016 06:57:11 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 6600 invoked by uid 99); 7 Jul 2016 06:57:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jul 2016 06:57:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id EB9822C0003 for ; Thu, 7 Jul 2016 06:57:10 +0000 (UTC) Date: Thu, 7 Jul 2016 06:57:10 +0000 (UTC) From: "Hiroki Taniura (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (NET-597) FTP fails for Solaris 10 FTPd in Japanese MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 07 Jul 2016 06:57:13 -0000 Hiroki Taniura created NET-597: ---------------------------------- Summary: FTP fails for Solaris 10 FTPd in Japanese Key: NET-597 URL: https://issues.apache.org/jira/browse/NET-597 Project: Commons Net Issue Type: Bug Components: FTP Affects Versions: 3.4, 3.5 Environment: Server: Solaris 10 Japanese Client: Windows 7 Reporter: Hiroki Taniura Priority: Minor Commons Net lists no files for Solaris 10 FTPd (or WU-FTPD) when the server= language is Japanese. Here is the result of the sample client. {panel} java -jar commons-net-examples-3.5.jar FTPClientExample -l 192.168.2.160 ro= ot password 220 unknown FTP server ready. Connected to 192.168.2.160 on 21 USER ******* 331 Password required for root. PASS ******* 230 User root logged in. SYST 215 UNIX Type: L8 Version: SUNOS Remote system is UNIX Type: L8 Version: SUNOS TYPE A 200 Type set to A. PASV 227 Entering Passive Mode (192,168,2,160,235,174) LIST 150 Opening ASCII mode data connection for /bin/ls. 226 Transfer complete. NOOP 200 NOOP command successful. QUIT 221-You have transferred 0 bytes in 0 files. 221-Total traffic for this session was 3426 bytes in 1 transfers. 221-Thank you for using the FTP service on unknown. 221 Goodbye. {panel} I identified the cause in the source code. I'm attaching a patch later. On Japanese Solaris 10, the result of "ls -l" is like below; {panel} drwxrwxrwt 10 root sys 875 7=E6=9C=88 7=E6=97=A5 14:18 tmp drwxr-xr-x 40 root sys 1024 6=E6=9C=88 13=E6=97=A5 2014=E5=B9= =B4 usr drwxr-xr-x 47 root sys 1024 6=E6=9C=88 13=E6=97=A5 2014=E5=B9= =B4 var dr-xr-xr-x 6 root root 512 2=E6=9C=88 25=E6=97=A5 15:11 vol {panel} As you can see, the timestamp has the postfixes of "month", "date", and "ye= ar" in Japanese. The current REGEX of UnixFTPEntryParser doesn't work for it because of the = Japanese postfixes. -- This message was sent by Atlassian JIRA (v6.3.4#6332)