我們正在運行到以下錯誤:WCF + REST,增加MaxStringContentLength
There was an error deserializing the object of type Project.ModelType. The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be increased by changing the MaxStringContentLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader.
有一噸的文章,論壇帖子等,展示瞭如何增加MaxStringContentLength
大小的WCF服務。我遇到的問題是所有這些示例都使用了Binding,我們不使用它。我們的服務項目的web.config
中沒有設置綁定或端點配置。我們使用.cs文件,而不是.svc文件。我們已經實現了RESTful WCF服務。
在客戶端,我們使用WebChannelFactory
來調用我們的服務。
ASP.NET 4.0
任何想法?
你能告訴我們**你的服務器端'web.config'和客戶端上的代碼來創建代理嗎? –
錯誤顯示在哪裏?在客戶端還是服務器? – carlosfigueira
錯誤發生在服務器端,當它試圖反序列化對象時。 – mtm927