404 Error when trying to execute web service
问题 I have a simple web service I have created. I'm using Visual Studio 2012 .NET 4.5. Here is the service contract: using System.Runtime.Serialization; using System.ServiceModel; namespace GEMS.Core.WCFService { [ServiceContract] public interface IMenuService { [OperationContract] void AddMenuItem(string menuId, string parentId, string title, string description, string url); [OperationContract] void UpdateMenuItem(string menuId, string parentId, string title, string description, string url);