我目前正在处理 ac# asp.net web 项目,我正在尝试安装要在 iis7 中使用的soap服务。
Only files need to run the application
我已经使用 Visual Studio 通过在包/发布设置窗口中进行选择来构建部署包。
然后,我已将构建包的内容复制到我网站内的某个位置,但是当我尝试使用并访问该服务http://localhost/EmailSoapService/EmailSoapService.asmx
时,却出现错误。我得到的错误是
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not create type 'EmailSoapService.EmailSoapService'.
Source Error:
Line 1: <%@ WebService Language="C#" CodeBehind="EmailSoapService.asmx.cs" Class="EmailSoapService.EmailSoapService" %>
Source File: /EmailSoapService/EmailSoapService.asmx Line: 1
Version Information: Microsoft .NET Framework Version:2.0.50727.5456; ASP.NET Version:2.0.50727.5456
我不明白为什么它说它找不到 .cs 文件。诚然,这不在服务器上,但由于我选择仅导出运行应用程序所需的内容,因此我假设网络服务器上不需要 .cs 文件。
感谢您的任何帮助,您可以提供。