How to access hosted WCF service methods?
- by Qutbuddin Kamaal
Hi,
I created a WCF service name 'WasSettingsService' have method 'GetWASSettings'
and Hosted this service like this:
ServiceHost myServiceHost = new ServiceHost(typeof(LocalMachineSettingsService.WasSettingsService));
myServiceHost.Open();
Now How can I access 'GetWASSettings'
Thanks in advance
will really appreciate this..