[ServiceContract(Namespace="www.waha.com")] public interface IEmployees { [WebGet(UriTemplate="getall",RequestFormat=WebMessageFormat.Json,ResponseFormat=WebMessageFormat.Json)] string GetAll(); } public string GetAll() { return "wcf rest test!"; }
我用控制的台应用程序自托管时,调用是对的!
http://127.0.0.1:8756/MyService/getall
但托管为was
http://localhost/wcftest5/WCFTest6.Classs.EmployeesService.svc/getall/
调用的时候却提示说404,是为什么?
我擦,其实试试iis的中功能没有启用!