WCF RIA服务超时

时间:2013-05-17 10:04:06

标签: c# silverlight silverlight-3.0 wcf-ria-services

我有这样的背景:

[EnableClientAccess()]
public class MyRiaService : LinqToEntitiesDomainService<EntityFrameworkContext>

使用Silverlight客户端我启动繁重的数据库操作需要1分钟以上。结果我得到超时异常:

  

未捕获错误:Silverlight应用程序中出现未处理的错误:     提交操作失败。对于https://localhost/MyProject/ClientBin/myservice.svc/binary的HTTP请求已超过分配的超时。分配给此操作的时间可能是较长超时的一部分。

     

堆栈追踪:
    在System.Windows.Ria.OperationBase.Complete(异常错误)
    在System.Windows.Ria.SubmitOperation.Complete(异常错误)
    在System.Windows.Ria.DomainContext.CompleteSubmitChanges(IAsyncResult asyncResult)
    在System.Windows.Ria.DomainContext。&lt;&gt; c_ DisplayClassd.b _5(Object)

我很乐意在那里更改发送超时,但我不知道,如何。 我试过这个:

((WebDomainClient<LibraryDomainContext.ILibraryDomainServiceContract>)this.DomainClient).ChannelFactory.Endpoint.Binding.SendTimeout = new TimeSpan(0, 5, 0);

但我没有属性 DomainClient

1 个答案:

答案 0 :(得分:3)

可以在域服务的端点上的客户端设置连接的超时。但是如何抓住这个呢?通过为域上下文创建扩展方法:

public static class DomainServiceExtensions
{
    /// <summary>
    /// This method changes the send timeout for the specified 
    /// <see cref="DomainContext"/> to the specifified <see cref="TimeSpan"/>.
    /// </summary>
    /// <param name="domainContext">
    /// The <see cref="DomainContext"/> that is to be modified.
    /// </param>
    /// <param name="newTimeout">The new timeout value.</param>
    public static void ChangeTimeout(this DomainContext domainContext, 
                                          TimeSpan newTimeout)
    {
        // Try to get the channel factory property from the domain client 
        // of the domain context. In case that this property does not exist
        // we throw an invalid operation exception.
        var channelFactoryProperty = domainContext.DomainClient.GetType().GetProperty("ChannelFactory");
        if(channelFactoryProperty == null)
        {
            throw new InvalidOperationException("The 'ChannelFactory' property on the DomainClient does not exist.");
        }

        // Now get the channel factory from the domain client and set the
        // new timeout to the binding of the service endpoint.
        var factory = (ChannelFactory)channelFactoryProperty.GetValue(domainContext.DomainClient, null);
        factory.Endpoint.Binding.SendTimeout = newTimeout;
    }
}

有趣的问题是何时会调用此方法。端点使用后,无法再更改超时。因此,在创建域上下文后立即设置超时:

DomainContext - 类本身是sealed,但幸运的是,该类也标记为partial - 方法OnCreated()也可以很容易地扩展。

public partial class MyDomainContext
{
    partial void OnCreated()
    {
        this.ChangeTimeout(new TimeSpan(0,10,0));
    }
}

Pro Tipp:在实现部分类时,类的所有部分的名称空间必须相同。此处列出的代码属于客户端项目(例如,使用名称空间RIAServicesExample),上面显示的部分类仍然需要驻留在服务器端名称空间中(例如RIAServicesExample.Web)。