Re: MVS Fixed Records - WeOnlyDo Discussion board

Re: MVS Fixed Records (General questions)

by cvmbor, Friday, May 25, 2007, 04:40 (6392 days ago) @ wodDamir

Hi Craig,

Can you send me an FTPReply Event dump?

Also, i would suggest you try setting ListParams Property to . By default, wodFtpDLX tries to send LIST -al. The ListParams Property allows you to customize which parameters are sent when sending LIST command.

Please try it out and let me know the result.

Regards,
Damba

So indeed I was already using the ListParams trick. I connect and just before I issue the ListDir I issue my CWD command which returns the 200 Command OK. I have code in Done and Pretranslate to capture a 40200 and I change the code to 0 but I get a Run Time Error 40200 Command OK.

Not sure what dump you request. I put a debug print in Pretranslate so you could see the command issued

STATECHANGE to Connecting to server (from Disconnected from server)
Reply => 220-TCP/IP for VSE FTP Daemon Version 01.05 D 03/16/04 12.26
Copyright (c) 1995,2003 Connectivity Systems Incorporated
220 FTPD ready for new user.
STATECHANGE to Sending authentication data (from Connecting to server)
Command in => USER

Command out => USER

Reply => 331 User name okay, need password.
Command in => PASS

Command out => PASS

Reply => 230 User logged in, proceed.
Command in => FEAT

Command out => FEAT

Reply => 211-Supported extensions:
AUTH TLS
PBSZ
PROT
211 END
Command in => PWD

Command out => PWD

Reply => 257
STATECHANGE to Connected to server - idle (from Sending authentication data)
STATECHANGE to Downloading directory list from the server (from Connected to server - idle)
STATECHANGE to Setting transfer mode (from Downloading directory list from the server)
Command in => TYPE A

Command out => TYPE A

Reply => 250 Requested file action okay, completed.
STATECHANGE to Downloading directory list from the server (from Setting transfer mode)
STATECHANGE to Getting secondary data channel (from Downloading directory list from the server)
Command in => PASV

Command out => PASV

Reply => 200 Command okay.
STATECHANGE to Connected to server - idle (from Getting secondary data channel)



Complete thread: