vote up 1 vote down star
1

Is there a way to tell a WCF service to response to a request (with or without aborting it's processing) after a certain amount of time, even if it didn't finish yet, something like a server-side timeout policy?

flag

69% accept rate
but if it does not finish processing the request, what is the kind of response you want? – Ahmed Said Jul 19 at 9:08
just an exception that's part of the FaultContract. – Meidan Alon Jul 19 at 9:18
If it doesn't complete in time, you'll get a TimeoutException - isn't that good enough? – marc_s Jul 19 at 12:10
@marc_s: I guess you are talking about a client timeout, I have a non-WCF client, that can't set the timeout. – Meidan Alon Jul 19 at 12:59

2 Answers

vote up 2 vote down check

I suppose you could do this by starting a new Thread as soon as the WCF operation starts. The real work then happens on the new thread and the original WCF request thread waits using a Thread.Join() with a specific timeout. If the timeout occurs the worker thread can be canceled using a Thread.Abort().

Something like this:

public string GetData(int value)
{
    string result = "";
    var worker = new Thread((state) =>
    {
        // Simulate l0ng running
        Thread.Sleep(TimeSpan.FromSeconds(value));
        result = string.Format("You entered: {0}", value);
    });

    worker.Start();

    if (!worker.Join(TimeSpan.FromSeconds(5)))
    {
        worker.Abort();
        throw new FaultException("Work took to long.");
    }

    return result;
}
link|flag
thanks, but I don't want to use Thread.Abort on my worker thread, too risky. I'm looking for something that's part of WCF. – Meidan Alon Jul 19 at 10:04
AFAIK There is no standard WCF option to do this. There is the option to have the client timeout when a request takes to long but the sever is not aware of this and will continue processing the request and will return the result even though no one is listening. BTW The .NET 4.0 Task model makes the treading on the sever somewhat nicer. – Maurice Jul 19 at 10:33
ended up using such a manual timer, just without aborting the worker. – Meidan Alon Jul 20 at 12:55
vote up 0 vote down

I don't know why you want to do this - you should probably edit your question to say what you're trying to accomplish.

If I had to do this, then I would have the web service pass the request off to a separate Windows Service, possibly by using WCF over MSMQ. I would have a timeout on that request. If the request didn't finish in time, I'd simply return a Timeout fault. The actual request would not be impacted.

link|flag
that's exactly what I wanted WCF to do for me, just without the overhead of an extra process. – Meidan Alon Jul 20 at 12:54
I don't believe it will do this. I've never heard this request before. Maybe you should suggest this as new functionality on Connect (connect.microsoft.com/visualstudio). – John Saunders Jul 20 at 12:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.