1
發現客戶端代碼。未找到發現接口
var dc = new DiscoveryClient(new UdpDiscoveryEndpoint());
FindCriteria fc = new FindCriteria(typeof(IService1));
fc.Duration = TimeSpan.FromSeconds(20);
FindResponse fr = dc.Find(fc);
我託管WCF和我已經能夠檢查,看看它用自己實現的發現工作,但我已經被告知,這是更快,更安全。我不知道爲什麼我會收到以下錯誤消息。
System.ArgumentException occurred
Message: A first chance exception of type 'System.ArgumentException' occurred in mscorlib.dll
Additional information: Interface not found.
有關如何解決此問題的任何想法?
事實證明,我可以運行代碼,它可以從.exe運行,但在Visual Studio調試器中運行時它不起作用。
Iservice1接口是否存在? – Mukund 2014-10-16 07:48:29
是的,它在那裏。 – ZoomVirus 2014-10-16 09:00:12