我在Silverlight应用程序的SilverlightApplication1.Web命名空间中添加了新的Web服务。但是,当我尝试在SilvelightApplication中添加对服务的引用并选择此服务时,会出现以下错误:“从地址下载元数据时出错。请确认您输入的是有效地址”。添加后我没有更改服务。我在这里做错了什么?
以下是Web服务的代码:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
更新:当我在浏览器中输入服务地址时:http://localhost:1130/WebService1.asmx
我收到以下错误:Line 1: <%@ WebService Language="C#" CodeBehind="WebService1.asmx.cs" Class="SilverlightApplication1.Web.WebService1" %>