我想在asp.net中返回一個XML文件作爲Web服務方法的輸出。任何人都可以幫助一個例子。如何在asp.net中爲Web服務方法返回一個xml文件
這是Web服務方法,我有done.But時,我稱之爲「海」的方法,我得到一個錯誤和error.The我得到的是如下:
有一個在XML文檔錯誤(1,287)。
[WebMethod]
public XElement hai()
{
try
{
XElement xmlTree1 = new XElement("Root",
new XElement("Child1", 1),
new XElement("Child2", 2),
new XElement("Child3", 3),
new XElement("Child4", 4),
new XElement("Child5", 5),
new XElement("Child6", 6)
);
return xmlTree1;
}
catch
{
throw;
}
}
你可以看到下面的鏈接。 http://stackoverflow.com/questions/3000934/return-xml-data-from-a-web-service –
僅供參考,您是否知道ASMX不應該用於新開發? –