WCF请求/响应包大小
我想知道是否有可配置的设置来限制 WCF 的最大请求/响应数据包大小? 我正在使用 VSTS 2008 + WCF 3.5。 我将自托管 WCF 服务作为 Windows 服务。
提前致谢, 乔治
I am wondering if there are configurable settings for restriction of the maximum request/respose data package size for WCF? I am using VSTS 2008 + WCF 3.5. I am self-host WCF service as a Windows Service.
thanks in advance,
George
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,绑定具有获取/设置最大接收数据字节的属性:检查“maxReceivedMessageSize”属性(表示以字节为单位的大小)。
但是,将其设置为较大的值可能不是一个好主意,因为如果传输中发生错误,您必须重新发送整个(大)消息。
编辑:此处您可以找到有关所有绑定配置属性的详细信息。
Yes, the binding has properties for getting/setting max receive data bytes: check "maxReceivedMessageSize" property (representing the size in bytes).
However, setting this to a big value could not be a good idea since if an error occures in the transport you have to resend the whole (big) message.
Edit: Here you can find details about all binding configuration properties.