Reputation: 11
I'm getting following error for file transfer using SOA FTP Adapter.
BINDING.JCA-11430 Error in listing files in the remote directory. Error in listing files in the remote directory. Unable to list file in remote directory. Please make sure that the ftp server settings are correct.
at oracle.tip.adapter.ftp.FTPAgent.getFileList(FTPAgent.java:419).....
Upvotes: 1
Views: 3214
Reputation: 481
according to Oracle Support note 467720.1:
The problem is caused by the list command (ls) command executed by the FTP adapter returning an FTP error code of 550 (Requested action not taken: file unavailable). This error code will cause the adapter to be shut down, failing the FTP adapter operation.
This can be overcome by following these steps:
(1) File name patterns should be provided in the FTP adapter wizard field "Include Files with Name Pattern", for example such as can*.txt, i.e. it needs to have some characters and then * in the pattern, this solution will not work if providing only * as the file name pattern.
(2) A file with a different pattern that does not match with the pattern provided above should always be present in the input ftp directory. Such as a file called test.txt is put into the ftp directory and the BPEL/ESB process file pattern name in "Include Files with Name Pattern" is can*.txt, as in (1) above.
Upvotes: 0
Reputation: 338
i also have faced similar issue with FTP file adapter.To use file adapter is soa you need to do two things mainly
here, weblogic console is for the domain created while installation on SOA Suite. you can open console by "https://HOST-NAME:7001/console". port number can be different according to your setup.
to setup the FTP Adapter from console here is the link goto step 11 directly.LINK
Upvotes: 0