gpt4 book ai didi

.NET网络服务 "Could not create type"

转载 作者:行者123 更新时间:2023-12-02 08:58:19 24 4
gpt4 key购买 nike

我的 .NET Web 服务的标记和代码隐藏文件内容如下(与 VS 生成的内容差不多):

服务.asmx:

<%@ WebService Language="VB" CodeBehind="Services.asmx.vb" Class="Services" %>

Services.asmx.vb:

Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.ComponentModel

<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class Services
Inherits System.Web.Services.WebService

<WebMethod()> _
Public Function HelloWorld() As String
Return "Hello World"
End Function
End Class

当我尝试访问网络服务时,我得到:

解析器错误消息:无法创建类型“服务”

我尝试使用命名空间来限定标记中的服务类规范,但无济于事。

当我将隐藏代码与 .asmx 放在同一个文件中时,一切正常。

最佳答案

因此,当我将构建配置更改为“任何 CPU”时,它会起作用,因为包含该类型的 .dll 最终位于 bin 文件夹中。当构建配置设置为 x86 时,.dll 最终仅出现在 bin/x86/Debug 或 bin/x86/Release 中,而 IIS 不会在其中查找。看起来很傻。我错过了什么吗?

关于.NET网络服务 "Could not create type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3182761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com