我在我的vb.net 4.0网络应用程序(或网站......创建了一个脚本服务...不确定它是什么 - 这有关系吗?)因为我想从客户端调用它。我收到客户端错误,说我的命名空间无法识别(下面代码中的HomepageService)。我已经尝试使用项目中配置的名称将其命名为“Root namespace”,但js表示它也不识别该命名空间。
应用程序已经过时了 - 我们最近将它从dotnet 2.1转换为4.0。
我找到了以下相关主题,因为当我尝试在我的HomepageServices.asmx.vb中导入System.Web.Extensions时,visual studio表示即使我能看到它也无法识别它,列在那里参考文献下的工作室。
[System.Web.Extensions Assembly无法解析] [1]
我尝试在该主题上发布后续问题,因为我尝试按照答案中的说明进行操作但是它们不起作用(我在Project> Properties> Application)中没有“Target Framework”,但是有人删除了它,因为我猜我不被允许问跟进问题?
我咨询过各种网站并遵循说明,这是一个例子: http://www.asp.net/ajax/documentation/live/tutorials/ConsumingWebServicesWithAJAXTutorial.aspx
以下是位于我网站根文件夹中的HomepageService.asmx的内容:
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel
Imports System.Collections.Generic
<System.Web.Services.WebService(Namespace:="http://localhost/appname")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
<System.Web.Script.Services.ScriptService()> _
Public Class HomepageService
Inherits System.Web.Services.WebService
Shared _rand As Random = New Random(Environment.TickCount)
<WebMethod()> _
Public Function Test(ByVal s As String) As Integer
Return _rand.Next(0, 120)
End Function
End Class
母版页中的代码段:
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="Scriptmanager1" runat="server" EnablePageMethods="true">
<Scripts>
<asp:ScriptReference Path="CallWebServiceMethods.js" />
</Scripts>
<Services>
<asp:ServiceReference Path="HomepageService.asmx" />
</Services>
</asp:ScriptManager>
并在我的页面顶部导入js:
PageRequestManager.js:
HomepageService.set_defaultSucceededCallback(
OnLookupComplete);
HomepageService.set_defaultFailedCallback(
OnError);
function OnLookup() {
HomepageService.Test(stb.value);
}
function OnLookupComplete(result, userContext) {
// userContext contains symbol passed into method
var res = document.getElementById("_resultLabel");
res.innerHTML = userContext + " : <b>" + result + "</b>";
}
function OnError(result) {
alert("Error: " + result.get_message());
}
我的web.config很乱,但我很乐意发布它......
答案 0 :(得分:0)
终于搞定了。这就是我做到的。虽然不确定是什么问题..但是遵循以下过程就行了。
步骤1.使用新的网站项目,按照http://msdn.microsoft.com/en-us/library/bb532367(v=vs.90).aspx的演练进行操作 有用。我称之为模型项目。
步骤2.在我现有的Web应用程序中创建文件并复制模型项目中的所有代码: - 在我项目的根文件夹中创建了WebService HelloWorld.asmx(studio也给了我一个嵌套文件Helloworld.asmx.vb)。这与模型项目不同,因为当我在该项目中创建web服务时,它将.asmx放在我的根文件夹中,但它将.asmx.vb粘贴在App_Code文件夹中。不确定我是应该手动移动还是其他东西?在过去,当我尝试在这个网络应用程序中使用App_Code或App_data文件夹时,一切都变得糟透了......
步骤3.编辑网络服务以使用我的网络应用而不是网站: - 命名空间Samples.Aspnet已注释掉,而不是替换为不同的命名空间,因为我的应用程序有一个默认命名空间'Fubar',这与我的应用程序的项目名称相同。
以下是我的网络应用程序根文件夹中HelloWorld.asmx.vb中的结果代码:
Imports System
Imports System.Web
Imports System.Collections
Imports System.Web.Services
Imports System.Web.Services.Protocols
'Namespace Samples.Aspnet
<WebService([Namespace]:="http://mycompany.org/"), _
WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1), _
System.Web.Script.Services.ScriptService()> _
Public Class HelloWorld
Inherits System.Web.Services.WebService
Public Sub New()
End Sub 'New
'Uncomment the following line if using designed components
'InitializeComponent();
<WebMethod()> _
Public Function Greetings() As String
Dim serverTime As String = _
String.Format("Current date and time: {0}.", DateTime.Now)
Dim greet As String = "Hello World. <br/>" + serverTime
Return greet
End Function 'Greetings
End Class 'HelloWorld
'End Namespace
以下是HelloWorld.asmx中的代码,也在根文件夹中:
<%@ WebService Language="vb" CodeBehind="HelloWorld.asmx.vb" Class="Fubar.HelloWorld" %>
步骤4.创建js“HelloWorld.js”,将其粘贴在根文件夹中,就像在模型项目中一样,然后粘贴模型项目中的代码。进行一次编辑以匹配我的应用程序的命名空间。这是结果代码:
var helloWorldProxy;
// Initializes global and proxy default variables.
function pageLoad() {
// Instantiate the service proxy.
// helloWorldProxy = new Samples.Aspnet.HelloWorld();
helloWorldProxy = new Fubar.HelloWorld();
// Set the default call back functions.
helloWorldProxy.set_defaultSucceededCallback(SucceededCallback);
helloWorldProxy.set_defaultFailedCallback(FailedCallback);
}
// Processes the button click and calls
// the service Greetings method.
function OnClickGreetings() {
var greetings = helloWorldProxy.Greetings();
}
// Callback function that
// processes the service return value.
function SucceededCallback(result) {
var RsltElem = document.getElementById("Results");
RsltElem.innerHTML = result;
}
// Callback function invoked when a call to
// the service methods fails.
function FailedCallback(error, userContext, methodName) {
if (error !== null) {
var RsltElem = document.getElementById("Results");
RsltElem.innerHTML = "An error occurred: " +
error.get_message();
}
}
if (typeof (Sys) !== "undefined") Sys.Application.notifyScriptLoaded();
步骤5.在我的母版页中将代码添加到我的ScriptManager标记中。这对应于Default.aspx中的模型项目代码; 下面的ScriptManager标记与模型项目中的标记相同:
<body>
<form id="form1" runat="server">
<asp:ScriptManager runat="server" ID="ScriptManager">
<Services>
<asp:ServiceReference path="~/HelloWorld.asmx" />
</Services>
<Scripts>
<asp:ScriptReference Path="~/HelloWorld.js" />
</Scripts>
</asp:ScriptManager>
步骤5.将控件添加到我的测试页面,就像它们在模型项目中的Default.aspx中一样:
<div id="divTestWebServices">
<button id="Button1" onclick="OnClickGreetings(); return false;">Greetings</button>
<div>
<span id="Results"></span>
</div>
</div>
步骤6.运行Fubar并导航到测试页面,然后点击按钮。
有效!!!我不知道为什么它以前不会起作用,但是在这三天之后我就准备继续前进......