我正在编写我的第一个Web服务类。我相信我已经遵循http://msdn.microsoft.com/en-us/library/bb398998.aspx的所有指示,但javascript失败,因为网络服务的名称空间未知。
我的WebService:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using BusinessLogicLayer;
namespace AVWebService
{
[WebService(Namespace = "http://MyTestSite.Com/webservices/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class FillDropLists : System.Web.Services.WebService
{
[WebMethod]
public Lookup[] GetRooms(string DataCenterId)
{
return BLL.getRooms(DataCenterId).ToArray();
}
}
}
我的网站配置
<system.web>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" type="System.Web.Script.Services.ScriptHandlerFactory" validate="false"/>
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>
</system.web>
我的ScriptManager在我的母版页中。
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="AVWebService.asmx" />
</Services>
</asp:ScriptManager>
最后,我的javascript
function FillRoomsList(e) {
var idx = e.selectedIndex;
var dcId = e.options[idx].value;
AVWebService.FillDropLists.GetRooms(dcId, OnRoomsReceived);
}
我收到的错误“AVWebService未定义”似乎表明根本没有识别出命名空间。
答案 0 :(得分:0)
您需要使用ajax将javascript与您的网络服务集成。 有关jQuery实现的说明,请参阅以下链接。
http://api.jquery.com/jQuery.ajax/
实施例
$.ajax({
url : 'yourWebService.asmx',
data: 'data you are sending to the web service'
success: 'function to execute on success'
});