.Net4の場合、次の間に違いはありますか
Uri baseAddress = new Uri("http://localhost:8080/test");
ServiceHost host = new ServiceHost(typeof(TestService), baseAddress);
host.Open();
と
Uri baseAddress = new Uri("http://localhost:8080/test");
WebServiceHost host = new WebServiceHost(typeof(TestService), baseAddress);
host.Open();
すべての本がwebServiceHostの使用を推奨していますが、なぜ違いがわからないのですか?