[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16243448#comment-16243448
 ] 

Sudhakar commented on VFS-648:
--

Sharing list of commands implemented by the server (as per FTP HELP command), 
might come handy for our invistigation

Command:HELP
Response:   214-The following commands are implemented:
Response:  ABORACCTAPPEAUTHCCC CDUPCWD DELE 
   
Response:  EPRTEPSVFEATHELPLISTMDTMMKD MODE 
   
Response:  NLSTNOOPOPTSPASSPASVPBSZPORTPROT 
   
Response:  PWD QUITRESTRETRRMD RNFRRNTOSIZE 
   
Response:  STATSTORSTOUSTRUSYSTTYPEUSERXMKD 
   
Response:  XPWD
Response:   214 Use 'HELP command' for more information.

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16243196#comment-16243196
 ] 

Sudhakar commented on VFS-648:
--

Originally this code is written for testing sftp that is why the variable is 
named as sftp, but this issue is with ftp.

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16243177#comment-16243177
 ] 

Sudhakar commented on VFS-648:
--

Yes remote directory value is "/inbound"
String remoteDir = "/inbound";

URL for FTP server is created as follows 
String startPath = "ftp://; + this.host + ":" + this.port;

//FileObject for root folder is created as follows
FileObject sftpFile  = this.fsManager.resolveFile(startPath, opts);

//Directory listing
FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
FileObject[] children = outboundDirectory.getChildren();

Notes: I also tried above directory listing by enabiling passive mode, but 
without any success 
FtpFileSystemConfigBuilder.getInstance().setPassiveMode(opts, true);

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Bernd Eckenfels (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242874#comment-16242874
 ] 

Bernd Eckenfels commented on VFS-648:
-

Thanks for the details, don’t worry about the formatting, we can read it.
Just for completeness, doess remoteDir contain „/inbound“ and is sftpFile a 
sftp URL with no path component?

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

 [ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sudhakar updated VFS-648:
-
Attachment: (was: ftp.jpg)

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:10 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
[^ftp.jpg]


was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
!ftp.jpg|thumbnail!

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
> Attachments: ftp.jpg
>
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:09 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
!ftp.jpg|thumbnail!


was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
[^ftp.jpg]

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
> Attachments: ftp.jpg
>
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar commented on VFS-648:
--

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|
--inbound
|
test.txt



> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:12 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 

{code:java}
/
|-inbound 
  |-input.txt
{code}



was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
-inbound 
-input.txt

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:11 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
-inbound 
-input.txt


was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
[^ftp.jpg]

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
> Attachments: ftp.jpg
>
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:09 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
[^ftp.jpg]


was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|--inbound
 |---input.txt


> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
> Attachments: ftp.jpg
>
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

 [ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sudhakar updated VFS-648:
-
Attachment: ftp.jpg

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
> Attachments: ftp.jpg
>
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:07 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|--inbound
 |---input.txt



was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|--inbound
|test.txt



> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:02 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
--inbound
test.txt




was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|
--inbound
|
test.txt



> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242779#comment-16242779
 ] 

Sudhakar edited comment on VFS-648 at 11/7/17 8:02 PM:
---

Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
|--inbound
|test.txt




was (Author: sanivella):
Stack trace from sample program

org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 
"inbound/test.txt".
at 
org.apache.commons.vfs2.impl.DefaultFileSystemManager.resolveName(DefaultFileSystemManager.java:796)
at 
org.apache.commons.vfs2.provider.AbstractFileObject.getChildren(AbstractFileObject.java:1045)
at 
org.apache.commons.vfs2.provider.ftp.FtpFileObject.getChildren(FtpFileObject.java:420)
at com.rnd.App.process(App.java:158)
at com.rnd.App.main(App.java:81)

Since this server endpoint belongs to a customer, I won't be able to share. FTP 
folder hierarchy is as follows 
/
--inbound
test.txt



> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Bernd Eckenfels (JIRA)

[ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242746#comment-16242746
 ] 

Bernd Eckenfels commented on VFS-648:
-

Do you have a test endpoint, do you have a network trace/dump or trace/log from 
the server? Can you please paste the complete Stacktrace of the Exception 

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[GitHub] commons-lang pull request #305: Remove unnecessary testing comments

2017-11-07 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/commons-lang/pull/305


---


[GitHub] commons-lang issue #305: Remove unnecessary testing comments

2017-11-07 Thread PascalSchumacher
Github user PascalSchumacher commented on the issue:

https://github.com/apache/commons-lang/pull/305
  
Thanks!


---


[GitHub] commons-lang issue #306: .travis: add IBM JDK 8

2017-11-07 Thread PascalSchumacher
Github user PascalSchumacher commented on the issue:

https://github.com/apache/commons-lang/pull/306
  
Looks like the IBM JDK is not yet supported by the travis jdk-switcher, so 
let's wait some time.


---


[GitHub] commons-lang pull request #306: .travis: add IBM JDK 8

2017-11-07 Thread PascalSchumacher
Github user PascalSchumacher closed the pull request at:

https://github.com/apache/commons-lang/pull/306


---


[GitHub] commons-lang issue #306: .travis: add IBM JDK 8

2017-11-07 Thread coveralls
Github user coveralls commented on the issue:

https://github.com/apache/commons-lang/pull/306
  

[![Coverage 
Status](https://coveralls.io/builds/14083090/badge)](https://coveralls.io/builds/14083090)

Coverage remained the same at 95.164% when pulling 
**0c7b554561d534fecda44b4140122583917aa981 on 
PascalSchumacher:travis_add_ibm_jdk** into 
**425d8085cfcaab5a78bf0632f9ae77b7e9127cf8 on apache:master**.



---


[GitHub] commons-lang pull request #306: .travis: add IBM JDK 8

2017-11-07 Thread PascalSchumacher
GitHub user PascalSchumacher opened a pull request:

https://github.com/apache/commons-lang/pull/306

.travis: add IBM JDK 8



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/PascalSchumacher/commons-lang 
travis_add_ibm_jdk

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/commons-lang/pull/306.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #306


commit 7af80077e4d547dfe6da1f961dfaf4673abec285
Author: pascalschumacher 
Date:   2017-11-07T19:18:23Z

.travis: add IBM JDK 8




---


[jira] [Updated] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

 [ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sudhakar updated VFS-648:
-
Affects Version/s: 2.2

> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0, 2.2
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (CODEC-240) Add Percent-Encoding Codec (described in RFC3986 and RFC7578)

2017-11-07 Thread Gary Gregory (JIRA)

[ 
https://issues.apache.org/jira/browse/CODEC-240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16242311#comment-16242311
 ] 

Gary Gregory commented on CODEC-240:


Please pick up the current version from trunk and explain something that is not 
clear to me:

Encoding a space ({{" "}}) should give me the bytes for %20 right?

> Add Percent-Encoding Codec (described in RFC3986 and RFC7578)
> -
>
> Key: CODEC-240
> URL: https://issues.apache.org/jira/browse/CODEC-240
> Project: Commons Codec
>  Issue Type: New Feature
>Reporter: Ioannis Sermetziadis
>Priority: Minor
>
> Similar but more generic than the URLCodec.
> Reference: https://tools.ietf.org/html/rfc3986#section-2.1



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (CODEC-240) Add Percent-Encoding Codec (described in RFC3986 and RFC7578)

2017-11-07 Thread Gary Gregory (JIRA)

 [ 
https://issues.apache.org/jira/browse/CODEC-240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary Gregory updated CODEC-240:
---
Description: 
Similar but more generic than the URLCodec.

Reference: https://tools.ietf.org/html/rfc3986#section-2.1


  was:Similar but more generic than the URLCodec.


> Add Percent-Encoding Codec (described in RFC3986 and RFC7578)
> -
>
> Key: CODEC-240
> URL: https://issues.apache.org/jira/browse/CODEC-240
> Project: Commons Codec
>  Issue Type: New Feature
>Reporter: Ioannis Sermetziadis
>Priority: Minor
>
> Similar but more generic than the URLCodec.
> Reference: https://tools.ietf.org/html/rfc3986#section-2.1



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (CODEC-240) Add Percent-Encoding Codec (described in RFC3986 and RFC7578)

2017-11-07 Thread Gary Gregory (JIRA)

 [ 
https://issues.apache.org/jira/browse/CODEC-240?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Gary Gregory updated CODEC-240:
---
Summary: Add Percent-Encoding Codec (described in RFC3986 and RFC7578)  
(was: Support Percent-Encoding (described in RFC3986 and RFC7578))

> Add Percent-Encoding Codec (described in RFC3986 and RFC7578)
> -
>
> Key: CODEC-240
> URL: https://issues.apache.org/jira/browse/CODEC-240
> Project: Commons Codec
>  Issue Type: New Feature
>Reporter: Ioannis Sermetziadis
>Priority: Minor
>
> Similar but more generic than the URLCodec.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)

 [ 
https://issues.apache.org/jira/browse/VFS-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sudhakar updated VFS-648:
-
Description: 
getChildren on sub directory method returns “Invalid descendent file name” with 
Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
getChildren on root folder without any issues.


//Code
FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
children = outboundDirectory.getChildren();

//Exception thrown 
org.apache.commons.vfs2.FileSystemException: Invalid descendent file name

I was able to use FTP clients like FileZill etc to connect and get list of 
files from the same server.

  was:
getChildren on sub directory method returns “Invalid descendent file name” with 
Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
getChildren on root folder without any issues.


//Code
FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
children = outboundDirectory.getChildren();

//Exception thrown 
org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 


> “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP 
> server
> ---
>
> Key: VFS-648
> URL: https://issues.apache.org/jira/browse/VFS-648
> Project: Commons VFS
>  Issue Type: Bug
>Affects Versions: 2.0
> Environment: VLTrader by Cleo on CentOS6
>Reporter: Sudhakar
>Priority: Critical
>
> getChildren on sub directory method returns “Invalid descendent file name” 
> with Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
> getChildren on root folder without any issues.
> //Code
> FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
> children = outboundDirectory.getChildren();
> //Exception thrown 
> org.apache.commons.vfs2.FileSystemException: Invalid descendent file name
> I was able to use FTP clients like FileZill etc to connect and get list of 
> files from the same server.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (CODEC-240) Support Percent-Encoding (described in RFC3986 and RFC7578)

2017-11-07 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CODEC-240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16241782#comment-16241782
 ] 

ASF GitHub Bot commented on CODEC-240:
--

GitHub user sermojohn opened a pull request:

https://github.com/apache/commons-codec/pull/11

CODEC-240 Percent-Encoding codec proposal

@garydgregory thank you for the advice, I really appreciate your feedback.

Re-based from trunk, so had to delete and recreate the feature branch, 
which resulted in closing the initial PR. Please let me know if another process 
should be followed when merging changes from the trunk.

The changes of the last commit increase of test coverage and decrease 
slightly the complexity. 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/sermojohn/commons-codec CODEC-240

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/commons-codec/pull/11.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #11


commit 33aaa7a44a17b674a4bd4ebc3fd163afb7666815
Author: Ioannis Sermetziadis 
Date:   2017-10-02T19:34:52Z

CODEC-240 Percent-Encoding codec proposal. Due to the requirement of 
supporting a dynamic set of characters to always encode (apart from the 
non-ASCII that are always encoded), I added a constructor that takes an array 
of characters to force encode. This is useful because different encoding 
requirements apply in different parts of the HTTP 1.1 protocol (e.g. for URL, 
Multipart entity fields, etc.)

commit 67f97973a9442a98f96a2c420e976cbe7c35ecb1
Author: Ioannis Sermetziadis 
Date:   2017-10-13T20:23:10Z

CODEC-240 Refactored PercentCodec to optimize encoding and decoding in 
regard to performance. Also implemented support for space to '+' conversion.

commit f4a04da253fdf659389e4cb2163b53d695129d68
Author: Ioannis Sermetziadis 
Date:   2017-11-07T09:49:09Z

CODEC-240 Increased test coverage and did minor modification to decrease 
complexity.




> Support Percent-Encoding (described in RFC3986 and RFC7578)
> ---
>
> Key: CODEC-240
> URL: https://issues.apache.org/jira/browse/CODEC-240
> Project: Commons Codec
>  Issue Type: New Feature
>Reporter: Ioannis Sermetziadis
>Priority: Minor
>
> Similar but more generic than the URLCodec.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (CODEC-240) Support Percent-Encoding (described in RFC3986 and RFC7578)

2017-11-07 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/CODEC-240?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16241754#comment-16241754
 ] 

ASF GitHub Bot commented on CODEC-240:
--

Github user sermojohn closed the pull request at:

https://github.com/apache/commons-codec/pull/9


> Support Percent-Encoding (described in RFC3986 and RFC7578)
> ---
>
> Key: CODEC-240
> URL: https://issues.apache.org/jira/browse/CODEC-240
> Project: Commons Codec
>  Issue Type: New Feature
>Reporter: Ioannis Sermetziadis
>Priority: Minor
>
> Similar but more generic than the URLCodec.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Created] (VFS-648) “Invalid descendent file name” with Cleo Managed file transfer (MFT) FTP server

2017-11-07 Thread Sudhakar (JIRA)
Sudhakar created VFS-648:


 Summary: “Invalid descendent file name” with Cleo Managed file 
transfer (MFT) FTP server
 Key: VFS-648
 URL: https://issues.apache.org/jira/browse/VFS-648
 Project: Commons VFS
  Issue Type: Bug
Affects Versions: 2.0
 Environment: VLTrader by Cleo on CentOS6
Reporter: Sudhakar
Priority: Critical


getChildren on sub directory method returns “Invalid descendent file name” with 
Cleo Managed file transfer (MFT) FTP server. Where I was able to use 
getChildren on root folder without any issues.


//Code
FileObject outboundDirectory = sftpFile.resolveFile(remoteDir);
children = outboundDirectory.getChildren();

//Exception thrown 
org.apache.commons.vfs2.FileSystemException: Invalid descendent file name 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)