Jader Dias
Jader Dias

Reputation: 90475

How to enable WCF server side caching?

Is it possible without writing your own proxy? I have thought of using an open source proxy but it would only work with http bindings.

Upvotes: 0

Views: 655

Answers (1)

Rubens Farias
Rubens Farias

Reputation: 57956

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

Upvotes: 2

Related Questions