2016-05-30 82 views
0

我有一个WPF应用程序调用API并使用XDocument.Parse(string)创建System.Xml.Linq.XDocument。我遇到了一个问题,我试图这样做时抛出了XmlException(“根元素丢失”),但是我的XML完全有效。我尝试通过在浏览器中调用API并检查其语法,在我的应用程序中调用API以及使用各种XML语法验证程序(所有这些验证程序都不返回错误)来尝试进行语法检查。
从API的示例XML响应如下:XmlException解析XML时有效

<?xml version="1.0" encoding="UTF-8"?> 
<response> 
    <event title="Event 1" id="75823347" icon="www.example.com/images/event1-icon.png" uri="www.example.com/rsvp/event1" mode="none" price="10.00" cover="www.example.com/event1-cover.png" enddate="2016-06-01 14:00:00" startdate="2016-06-01 12:00:00" address="1 Example St, Example City State 12345" location="Example Place" description="This is an event" shortdescription="This is an event" theme="auto" color="#FF000000"/> 
</response> 

这是我的应用程序的代码:

public static WebRequest CreateRequest(string baseUrl, string httpMethod, Dictionary<string, string> requestValues) { 
    var requestItems = requestValues == null ? null : requestValues.Select(pair => string.Format("&{0}={1}", pair.Key, pair.Value)); 
    var requestString = ""; 
    if (requestItems != null) 
     foreach (var s in requestItems) 
      requestString += s; 
    var request = WebRequest.CreateHttp(baseUrl + CredentialRequestString + requestString); 
    request.Method = httpMethod.ToUpper(); 
    request.ContentType = "application/x-www-form-urlencoded"; 
    request.Credentials = CredentialCache.DefaultCredentials; 
    return request; 
} 

public static WebRequest CreateRequest(string apiEndpoint, string endpointParam, int apiVersion, string httpMethod, Dictionary<string, string> requestValues) { 
    return CreateRequest(string.Format("http://www.example.com/api/v{0}/{1}/{2}", apiVersion, apiEndpoint, endpointParam), httpMethod, requestValues); 
} 

public static async Task<string> GetResponseFromServer(WebRequest request) { 
    string s; 
    using (var response = await request.GetResponseAsync()) { 
     using (var responseStream = response.GetResponseStream()) { 
      using (var streamReader = new StreamReader(responseStream)) { 
       s = streamReader.ReadToEnd(); 
      } 
     } 
    } 
    return s; 
} 

public static async Task<List<Event>> GetEvents() { 
    var response = await GetResponseFromServer(CreateRequest("events", "", 1, "GET", null)); 
    Console.WriteLine(response); //validation 
    var data = XDocument.Parse(response).Root; //XmlException: Root element is mising 
    return new List<Event>(data.Elements("event").Select(e => Event.FromXml(e.Value))); 
} 

这究竟是为什么?

+0

如果XML是有效的它不会抛出该异常。你如何做“语法检查”? – Crowcoder

+0

@Crowcoder我仔细检查格式以确保所有标签都关闭,所有引号都关闭,并且没有使用保留字符。我还使用了[W3School的XML验证器](http://www.w3schools.com/xml/xml_validator.asp)。 –

+0

当“<?xml”不是数据中的第一个字符时,通常会发生此错误。通常在开头的空格或额外的字符将导致此错误。 – jdweng

回答

1

下面的代码工作

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Xml.Linq; 

namespace ConsoleApplication1 
{ 
    class Program 
    { 
     const string FILENAME = @"c:\temp\test.xml"; 
     static void Main(string[] args) 
     { 
      var data = XDocument.Load(FILENAME); 
      Event _event = Event.FromXml(data.Descendants("event").FirstOrDefault()); 
     } 
    } 
    public class Event 
    { 
     public string title { get ; set; } 
     public string icon {get; set; } 
     public string uri { get; set; } 
     public string mode { get;set; } 
     public decimal price { get; set; } 
     public string cover { get; set; } 
     public DateTime enddate { get; set; } 
     public DateTime startdate { get; set; } 
     public string address { get; set; } 
     public string location { get; set; } 
     public string description { get; set; } 
     public string shortdescription { get; set; } 
     public string theme { get; set; } 
     public uint color { get; set; } 


     public static Event FromXml(XElement data) 
     { 
      Event _event = new Event(); 

      _event.title = (string)data.Attribute("title"); 
      _event.icon = (string)data.Attribute("icon"); 
      _event.uri = (string)data.Attribute("uri"); 
      _event.mode = (string)data.Attribute("mode"); 
      _event.price = (decimal)data.Attribute("price"); 
      _event.cover = (string)data.Attribute("cover"); 
      _event.enddate = (DateTime)data.Attribute("enddate"); 
      _event.startdate = (DateTime)data.Attribute("startdate"); 
      _event.address = (string)data.Attribute("address"); 
      _event.location = (string)data.Attribute("location"); 
      _event.description = (string)data.Attribute("description"); 
      _event.shortdescription = (string)data.Attribute("shortdescription"); 
      _event.theme = (string)data.Attribute("theme"); 
      _event.color = uint.Parse(data.Attribute("color").Value.Substring(1), System.Globalization.NumberStyles.HexNumber) ; 

      return _event; 
     } 

    } 
} 
+0

我接受这个解决方案,因为我自己实现'FromXml'对我来说非常奇怪,有点愚蠢。我重写它的工作类似于你的,现在一切工作正常。 –

+0

您的第一个错误是由于在您的linq查询中使用了'Root',它从xml中删除了标识行。我很快注意到这个错误,但是你的xml linq查询看起来不正确,所以我决定解决这两个问题。 – jdweng