How to access hosted WCF service methods?
        Posted  
        
            by Qutbuddin Kamaal
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Qutbuddin Kamaal
        
        
        
        Published on 2010-03-17T09:55:05Z
        Indexed on 
            2010/03/17
            10:01 UTC
        
        
        Read the original article
        Hit count: 198
        
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..
© Stack Overflow or respective owner