有没有一种简单的方法来控制这个和其他WCF设置?
我的第一个想法是尝试在RIA服务测试版之前提供的RIA服务概述pdf文件中提到的DomainContext OnCreated挂钩点. DomainContext对象的MSDN文档不再提及该方法,尽管它仍然存在?我不确定这是文档落后的情况还是我不应该使用此扩展点的指示.
namespace Example.UI.Web.Services{ public sealed partial class CustomDomainContext { partial voID OnCreated() { // Try and get hold of the WCF config from here } }}解决方法 http://blogs.objectsharp.com/CS/blogs/dan/archive/2010/03/22/changing-timeouts-in-wcf-ria-services-rc.aspx
创建域上下文后的任一行:
((WebDomainClIEnt<libraryDomainContext.IlibraryDomainServiceContract>)this.DomainClIEnt).ChannelFactory.Endpoint.Binding.SendTimeout = new TimeSpan(0,5,0);
或部分课程
public partial class libraryDomainContext{ partial voID OnCreated() { if(DesignerPropertIEs.GetIsInDesignmode(App.Current.RootVisual)) ((WebDomainClIEnt<libraryDomainContext.IlibraryDomainServiceContract>)this.DomainClIEnt).ChannelFactory.Endpoint.Binding.SendTimeout = new TimeSpan(0,0); }}总结
以上是内存溢出为你收集整理的从Silverlight 3客户端配置WCF RIA Services调用的超时全部内容,希望文章能够帮你解决从Silverlight 3客户端配置WCF RIA Services调用的超时所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)