cancel
Showing results for 
Search instead for 
Did you mean: 

FTP Adapter Problem

Former Member
0 Kudos

Hello,

i get an exception on my File Adapter and have no idea what it means.

Error: Message processing failed with com.sap.aii.adapter.file.ftp.FTPEx: Malformed PASV reply: 227 Entering Passive Mode (192, 0, 1, 17, 5, 149)

Any Idea what is wrong in my configuration ?

Regards,

Robin

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

In general the PASV command tells the server to prepare for

a new socket connection by creating a new socket and then listening

for a connection from the client (here the FTP Adapter).

The server reply (from your FTP server) includes an IP address and a

port number, encoded as 6 different number values separated by commas ->

(h1,h2,h3,h4,p1,p2). The spaces here are not allowed (According to the

PASV-Reply format RFC-959).

Therefore the corresponding FTP-Server is here the cause of the error

(its implementation is not RFC-959 compliant, please refer also to http:

//www.faqs.org/rfcs/rfc959.html [1] for further details).

Regards,

Beata

Former Member
0 Kudos

Hi,

But this FTP server works with other FTP clients or WinXP Command Line FTP.

Regards,

Robin