How to enable WCF server side caching?
Is it possible without writing your own proxy? I have thought of using an open source p开发者_开发百科roxy but it would only work with http bindings.
If you're planning to support other transports than HTTP, you'll need to deal with cache yourself.
This not meant to write your own host: you can to implement IOperationInvoker
as in this sample: Extending WCF with Custom Behaviors
精彩评论