我正在尝试使用asp.net建立一个简单的Web服务。这是我的文件背后的代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace MyFirstWebServiceApplication
{
/// <summary>
/// Summary description for Service1
/// </summary>
[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 Service1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
[WebMethod]
public String MyFirstWebMethod(String firstName, String lastName)
{
//return "How are you " + firstName + " " + lastName + "?";
return String.Format("How are you {0} {1}?", firstName, lastName);
}
}
}
解决方案成功构建。但是当我运行它,然后尝试调用它时,它不会显示预期的XML并且只显示以下消息
此XML文件似乎没有与之关联的任何样式信息。文档树如下所示。
这是我得到的截图 http://i45.tinypic.com/2roixvr.png
答案 0 :(得分:0)
用Firefox运行它,然后按ctrl + shift + J,你会得到错误控制台,从中找到错误。