我有一个名为“WebMethods”的 WCF 服务。下面是我的代码。
在 IWebMethods.cs 中:
[ServiceContract(Name = "WebMethods")]
public interface IWebMethods
{
[OperationContract]
[WebInvoke(BodyStyle = WebMessageBodyStyle.Wrapped, Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
String Test();
}
在 WebMethods.cs 中:
public class WebMethods : IWebMethods
{
public String Test()
{
return "This is a test YEAH!!";
}
}
和调用javascript:
$.ajax({
url: 'WebMethods.svc/Test',
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: null,
async: false,
success: function (data) {
alert(data);
},
error: function (xhr, textStatus, errorThrown) {
alert(errorThrown);
}
});
当我执行我的 javascript 时,我收到错误“内部服务器错误”。有人可以告诉我我做错了什么,或者至少我能做些什么来解决这个问题?