How to check notification after successfully trans - WeOnlyDo Discussion board

How to check notification after successfully trans (General questions)

by venkat, Tuesday, July 26, 2005, 10:36 (7059 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????

Re: How to check notification after successfully t

by wodSupport, Tuesday, July 26, 2005, 12:50 (7059 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.