- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 ASP.NET (C#) 4.0 WCF 应用程序。我收到消息错误:
Error : 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.
我把它增加到
maxBufferSize="2097152" maxBufferPoolSize="524288" maxReceivedMessageSize="2097152"
它工作正常。不过恐怕下次又要超额了。
我可以无限制地设置此 maxBufferSize
和 maxReceivedMessageSize
吗?
提前谢谢你
最佳答案
Can I set this maxBufferSize and maxReceivedMessageSize with no limit ?
不可以。你不能那样做。
将您的值设置为最大,例如:
maxBufferSize="2147483647" maxReceivedMessageSize="2147483647"
MaxBufferSize是 int
类型。所以它能支持的最大值是Int32.MaxValue (2147483647) 以利用最大允许大小。 (Int.MaxValue
仅差 2 GB 数据的一个字节)
MaxReceivedMessageSize另一方面是 long
或 Int64
类型它支持的最大值是:9,223,372,036,854,775,807
关于c# - 如何不限制 maxBufferSize 和 maxReceivedMessageSize,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18955772/
这是我在 Stack Overflow 上发表的第一篇文章,如果其中有任何不符合规定的地方,请道歉。 问题 我开发了一个基于 Windows Azure 的网站(类似于 eBay)并将其托管在 Azu
使 maxBufferPoolSize 值小于 maxBufferSize 是否有意义?根据我的理解,答案是“否”。然而true explanation of these values来自 .NET
我最近更改了一个 wcf REST 服务的 web.config 文件,我只是向它添加了 maxBufferSize="10485760" 属性。请在下面找到代码段... 进
我有一个 ASP.NET (C#) 4.0 WCF 应用程序。我收到消息错误: Error : The maximum message size quota for incoming messages
我正在以编程方式设置 WCF 客户端参数,如下所示: try { ServiceReference1.MyDbServiceClient webService = new ServiceRef
如何在运行应用程序之前将 app.config 文件中的 maxReceivedMessageSize 和 maxBufferSize 参数增加到 2000000。 最佳答案 您需要在绑定(bind)
这是我在 Windows Azure 服务项目上的 Web.config
我是一名优秀的程序员,十分优秀!