Web Service是ASMX Web服务(不是WCF)
我收到一个错误
The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota,use the MaxReceivedMessageSize property on the appropriate binding element
我在使用Visual Studio为您添加“Web引用”时生成的代理(请注意我不添加“服务引用”,而是使用Web引用)…这将创建一个继承自SoapHttpClientProtocol的代理
任何人都可以帮我弄清楚如何为这个方法设置等效的MaxReceivedMessageSize? (如果我使用WCF,我要求相当于做HttpBinding.MaxReceivedMessageSize = Int32.MaxValue)