silverlight - Silverlight4 client timouts on long running WCF calls -


hi have silverlight client timeout problem tried

timespan getsessionmaptimout = new timespan(0, 20, 0);  client.endpoint.binding.closetimeout = getsessionmaptimout; client.endpoint.binding.receivetimeout = getsessionmaptimout; client.endpoint.binding.sendtimeout = getsessionmaptimout; client.endpoint.binding.opentimeout = getsessionmaptimout; client.innerchannel.operationtimeout = getsessionmaptimout; 

options including innerchannel.operationtimeout , none of them work silverlight client still timesout in 30 secs .

the interesting thing ie regestry settings "receivetimeout"=dword:00007530 seem override silverlight client settings, cause if remove registry, works fine.

how make these timeout working in silverlight , override ie registry settings.

what kind of binding using? i'm using duplex binding hours / days @ time , there's no issue.

did check timeout on server side? there's asp.net connection timeout take consideration (i think it's set 30s or default).


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -