You have a WCF service/resource. when you get a message/request your codes needs to send another message to another service.
var webBinding = new WebHttpBinding();var channel = new ChannelFactory(webBinding, controlUri);channel.Endpoint.Behaviors.Add(new WebHttpBehavior());var proxy = channel.CreateChannel();using( new OperationContextScope((IContextChannel) proxy)){ proxy.Dostuff()}I already spent the time figuring this bugger out- I hope this post will save you the trouble
Subscribe to RSS headline updates from: