wcf - How to change timeout in machine config in azure platform and/or emulator? -
we hosting wcf service in azure webrole. timeoutexception if want send large files. we've adjusted send , receive timeout in config files on client on serverside.
even after these adjustments exception still occuring after +- 10 minutes.
we think have adjust machine config in azure, don't know how this.
help appreciated.
you working blobs.
with blobs can specify blobrequestoptions in timeout value.
try change this:
blobrequestoptions largeblobdownloadoptions = new blobrequestoptions() { timeout = timespan.fromminutes(60) // larger timeout larger file }; blob.downloadtofile(largeblobdownloadoptions);
Comments
Post a Comment