I'm currently working on a WCF service that reaches out to another service to submit information in a few of its operations. The proxy for the second service is generated through the strongly typed ProxyFactory<T>
class. I haven't experienced any issues but have heard I should do something like the following when making the call:
using (new OperationContextScope((IContextChannel)_service))
_service.Send(message);
So my question is: when is creating this new OperationContextScope
appropriate, and why?
Thanks!
If you are using callbacks or if you want to modify the message or headers then you need to use OperationContextScope
. Your service might need to modify outgoing headers while calling that another service.
When you establish OperationContextScope
then you can:
OperationContext
object or (if the channel implements System.ServiceModel.Channels.ISession
) the associated channel's session identifier.The other service which you call, is it a session-based service? Probably you need to look at its sample client code or documentation if available.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With