Rank: Member Groups: Member
Joined: 11/13/2009 Posts: 15
|
Hi,
I am handling the following File Explorer events and calling a web service method on another application in the event handler.
EO.Web.FileExplorer.FileRenamed EO.Web.FileExplorer.FileDeleted EO.Web.FileExplorer.FileUploaded
Is there any impact on how the file grid refreshes depending on the duration of my web service call?
Any other considerations that I should be aware of?
I am catching exceptions then logging any error but not re-throwing the exception.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Yes. The calls are syncrhonous so the FileExplorer will not refresh until you return. Eating exceptions is also necessary if you anticipate a relatively high failure rate.
Thanks!
|