「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 を実行すると、「Internal Server Error」というエラーが表示されます。誰かが私が間違っていること、または少なくともこれをトラブルシューティングするために何ができるか教えてもらえますか?