0

我在我的 vb.net 4.0 Web 应用程序(或网站......不确定它是什么 - 有关系吗?)中创建了一个脚本服务,因为我想从客户端调用它。我收到客户端错误,说我的命名空间无法识别(下面代码中的 HomepageService)。我尝试使用在项目中配置为“根命名空间”的名称对其进行限定,但 js 表示它也不识别该命名空间。

该应用程序很旧 - 我们最近将其从 dotnet 2.1 转换为 4.0。

我找到了以下相关主题,因为当我尝试在我的 HomepageServices.asmx.vb 中导入 System.Web.Extensions 时,Visual Studio 说即使我可以看到它,它也无法识别它,在 Studio 中的 References 下列出.

[System.Web.Extensions 程序集无法解析][1]

我尝试发布该主题的后续问题,因为我尝试按照答案中的说明进行操作,但它们没有用(我在项目>属性>应用程序中没有“目标框架”),但有人删除了它,因为我猜我不允许问后续问题?

我咨询了各种网站并按照说明进行操作,这里有一个示例: 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 是一团糟,但我很乐意发布它......

4

1 回答 1

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 文件夹中。不确定我是否应该手动移动它或其他什么?过去,当我尝试在此 Web 应用程序中使用 App_Code 或 App_data 文件夹时,一切都陷入了困境......

步骤 3. 编辑 web 服务以使用我的 web 应用程序而不是网站: - Namespace Samples.Aspnet 已注释掉,没有替换为不同的命名空间,因为我的应用程序有一个默认命名空间“Fubar”,这与我的应用程序的项目相同姓名。

这是我的 Web 应用程序根文件夹中 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 并导航到测试页面,然后点击按钮。

有用!!!我不知道为什么它以前不起作用,但是在这三天之后,我现在准备继续前进......

于 2012-01-27T15:36:05.463 回答