我遇到解析從Web Service接收到的xml的問題。解決xml與linq到xml的問題
的XML看起來很簡單:
<Result xsi:schemaLocation="urn:yahoo:developer http://developer.yahooapis.com/TimeService/V1/GetTimeResponse.xsd" type="web"><Timestamp>1320677359</Timestamp></Result>
但是,當我嘗試用下面的代碼我越來越沒有返回結果,解析它。
XDocument doc = XDocument.Load("http://developer.yahooapis.com/TimeService/V1/getTime?appid=StackSolution");
var datestamp = from ds in doc.Descendants("Result")
select new { currentstamp = ds.Element("Timestamp").Value };
有沒有解決方法或解析它的方法?
感謝您提前
不用那麼多,你可以包含一個XML樣例嗎? –
是的,在原始郵件中,包裝在代碼標籤中的第一行是實際的XML。 – Dmitris
哦,廢話,我應該滾動:-) –