我正在創建一個asmx Web服務。 在項目名稱的Visual Studio 2012我右點擊,並增加了網絡服務名稱UserDetails.asmx在asp.net中創建新的Asmx頁面
現在我想在js文件中使用的Web服務。這樣
$.ajax({
type: "POST",
url: "UserDetails.asmx/HelloWorld",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
alert('success');
},
error: function() {
alert("Error");
}
});
它顯示錯誤POST HTTP://192.168.9.185/GPS/UserDetails.asmx/HelloWorld 500(內部服務器錯誤)
有沒有在我的代碼或我的任何故障我錯過了一些東西,以致它顯示錯誤。 我ASMX頁
<%@ WebService Language="C#" CodeBehind="~/App_Code/UserDetails.cs" Class="UserDetails" %>
我的代碼背後
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
/// <summary>
/// Summary description for UserDetails
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class UserDetails : System.Web.Services.WebService {
public UserDetails() {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public string HelloWorld() {
return "Hello World";
}
}
當您直接從瀏覽器或Fiddler請求ASMX時會發生什麼? HTTP 500響應應該包含具有更多信息的堆棧跟蹤。 – Eilon
我試過 ** http://192.168.9.185/GPS/UserDetails.asmx/HelloWorld** 其工作正常顯示結果 ** Hello World ** –
user1926138
@ user1926138只是取消註釋[System.Web.Script.Services.ScriptService] – ZedBee