我写了一个网络服务 -
[WebGet(UriTemplate = "/", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
[OperationContract]
String GetShift();
我也用javascript写了一个网络应用程序 -
var response = $http.jsonp("http://localhost:53035/JuleSService.svc/");
response.success(function (data) {
alert("success");
});
response.error(function (data, status) {
alert(data+"\r\n"+status);
});
但它始终与404代码
错误