使用 ServiceRoute 时指定 WCF 绑定
我目前正在使用以下代码注册 WCF 服务:
var factory = new DefaultServiceHostFactory();
RouteTable.Routes.Add(new ServiceRoute("XXXEndPoint", factory, IXXXEndPoint)));
这一切都很好,但是我还需要更改读取器配额设置的 MaxStringContentLength 属性。似乎使用了默认值 8192,无论我如何尝试更改它,我猜这是来自 DefaultServiceModel?
是否有任何合适的挂钩来覆盖 DefaultServiceModel 上的此设置,或者我应该派生自己的服务主机/模型类,或者我是否以错误的方式处理此问题?
任何建议表示赞赏。
编辑:请注意,绑定的配置必须以编程方式执行(而不是通过配置文件)。
谢谢
I am currently registering a WCF service using the following code:
var factory = new DefaultServiceHostFactory();
RouteTable.Routes.Add(new ServiceRoute("XXXEndPoint", factory, IXXXEndPoint)));
This is all well and good however I also need to change the MaxStringContentLength property of the reader quota settings. It appears that the default value of 8192 is used, regardless of my attempts to change this and I guess this is from the DefaultServiceModel?
Are there any suitable hooks to override this setting on the DefaultServiceModel, or should I be deriving my own service host/model classes, or am I going about this the wrong way?
Any suggestions appreciated.
EDIT: Please note that the configuration of the binding must be performed programatically (not via configuration files).
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过扩展主机工厂来实现。
通过对下面的代码进行少量修改,您可以将附加参数传递给 WCFServiceHostFactory 以从 Global.asax 进行设置
我使用下面的类始终将其设置为 Int32.MaxValue
//in Global.asax
//WCFServiceHostFactory.cs
//WCFServiceHost.cs
You can make it by extending host factory.
By little modification of code bellow you can pass an additional parameter to WCFServiceHostFactory to set it from Global.asax
I have used the classes bellow to always set it to Int32.MaxValue
//in Global.asax
//WCFServiceHostFactory.cs
//WCFServiceHost.cs