可能这个问题之前已被多次询问但是我发布了这个问题,因为即使在stackoverflow上引用很多帖子之后,我的问题仍未解决。
这是我的问题:
我在asp.net中使用3.5版本构建了一个Web服务。
我正在部署此应用程序的Windows服务器版本:
Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18447
在localhost上,服务正常运行,但是当我将其托管到Web服务器上时,我收到了解析错误。
您也可以在此处查看错误:
http://beatjunkie.com.gridhosted.co.uk/DAW.Service/AudioMixingService.asmx
以下是几个文件的代码段:
文件:AudioMixingService.asmx
<%@ WebService Language="C#" CodeBehind="AudioMixingService.asmx.cs" Class="DAW.Service.AudioMixingService" %>
文件:AudioMixingService.asmx.cs
namespace DAW.Service
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class AudioMixingService : System.Web.Services.WebService
{
//code
}
}
请帮助我在服务器上运行此应用程序有什么问题?