wcftestclient.exe是一个GUI的工具用于测试WCF,只需在Visual studio command line 窗口中键入 wcftestclient,就启动这个程序.如下图: 然后通过File菜单增加一个endpoint address后如下图: 双击Greeting方法,然后传递值点击Invoke按钮,可以查看Response结果.…
添加System.ServiceModel 引用 Wcf 服务端 class Program { static void Main(string[] args) { ServiceHost host = new ServiceHost(typeof(GreetService), new Uri("http://localhost:20000")); host.AddServiceEndpoint(typeof (IGreetService), new BasicHttpBinding(…