Can anyone please explain me how to discover a WCF service if you do not know the type of the service Interface. I am very new to WCF services and I need to write an application to discover some WCF services hosted in the subnet. I found that you need to specify the service interface in inorder to create a FindCriteria object.
FindCriteria criteria new FindCriteria(typeof(IService1)
Please explain me how this works generally.