I thought I'd share this observation in the interest of coding practices for the WCF. For client applications invoking services, you'll see lots of samples already out there that use the following syntax:
ChannelFactory<IService> factory = new ChannelFactory<IService>("");IService proxy = factory.CreateChannel();string s = proxy.HelloIndigo();
using (ServiceProxy proxy = new ServiceProxy("")){ string s = proxy.HelloIndigo();}
There are probably cases where you will need to interact with the channel directly, though none come to mind at the moment...for the most part you should be able to configure the channel using binding configurations.
Remember Me
Designed by NUKEATION STUDIOS