2014-09-22 75 views
0

我已經創建了WCF服務,它返回大量內存大小的數據。它讓我很頭疼,有時會給出結果,幾個小時後,當我嘗試調用時,它會給出錯誤。在Windows Phone 8.1中沒有發生WCF調用

"System.ServiceModel.Commmunication Exception" 

這裏是我的web.config文件:

<bindings> 
<basicHttpBinding> 
<binding name="webBinding" sendTimeout="00:25:00" openTimeout="00:25:00" receiveTimeout="00:25:00" closeTimeout="00:25:00" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" 
    maxReceivedMessageSize="2147483647"> 
    <readerQuotas maxDepth="32" maxStringContentLength="2147483647" 
    maxArrayLength="2147483647" /> 
</binding> 
</basicHttpBinding> 
</bindings> 

請給我建議和幫助我。謝謝!!

回答

相關問題