哦,你在 服务的Global.asax.cs 加上
1 void Application_Start(object sender, EventArgs e) 2 { 3 RegisterRoutes(); 4 } 5 6 private void RegisterRoutes() 7 { 8 // Edit the base address of Service1 by replacing the "Service1" string below 9 RouteTable.Routes.Add(new ServiceRoute("data", new WebServiceHostFactory(), typeof(Service))); 10 }
这样 你就可以通过 Jquery
function getProducts() { $.ajax({ url: "http://localhost:15060/data/GetCollection",
访问了
有没有通过修改wcf的配置文件来先这个效果的??就是web.config里
@yahue: 没遇到过,如果有高手实现了,教我,谢谢!