How to check notification after successfully trans (General questions)

by venkat @, (7220 days ago)

Hi All

Thanks in advance.

I am using ASP and using (WeOnlyDo.wodFtpDLXCom.1) component I have successfully connected to remote server and my file has been transferred successfully. How to write ASP code to get notification on successful transfer

Please help????

locked

Re: How to check notification after successfully t

by Jasmine, (7220 days ago) @ venkat

Venkat,

usually Done event is fired as notification, but since it's unavailable in ASP, you can't get notified this way. Instead, you use Blocking = True, and all methods are blocking execution until they are completed. So, once you call PutFile/GetFile, it will transfer file, and when it returns to your code that means file is transferred. Do determine if any errors occurred, you should check if Error is set in Err object.

locked