问题描述
分析器错误
说明: 在分析向此请求提供服务所需资源时出错。请检查下列特定分析错误详细信息并适当地修改源文件。
分析器错误信息: 未能创建类型“Service1”。
源错误:
行 1:
源文件: /WEB/Service.asmx 行: 1
解决方法
在web.config中添加
<!--Webservice配置__begin--> <location path="WebServices"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> <location path="Client"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> <system.web> <webServices> <protocols> <add name="HttpPost" /> <add name="HttpGet" /> </protocols> </webServices> </system.web> <!--Webservice配置__end-->