我有以下用于测试Web服务的简单代码:
using System;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
using System.Collections.Generic;
namespace Testing_xmlReturn
{
class MainClass
{
public static void Main (string[] args)
{
// Default namespaces
XNamespace df = @"http://oss.dbc.dk/ns/opensearch";
XNamespace dkdcplus = @"http://biblstandard.dk/abm/namespace/dkdcplus/";
XNamespace ac = @"http://biblstandard.dk/ac/namespace/";
XNamespace dcterms = @"http://purl.org/dc/terms/";
XNamespace dkabm = @"http://biblstandard.dk/abm/namespace/dkabm/";
XNamespace dc = @"http://purl.org/dc/elements/1.1/";
XNamespace oss = @"http://oss.dbc.dk/ns/osstypes";
XNamespace xsi = @"http://www.w3.org/2001/XMLSchema-instance";
XDocument xd = new XDocument();
xd = XDocument.Load(@"http://opensearch.addi.dk/next_2.0/?action=search&query=mad&stepValue=1&sort=date_descending&outputType=xml");
var q = from result in xd.Descendants(dkabm + "record").Elements(dc + "title")
where result.Attribute(xsi + "type").Value == "dkdcplus:full"
select result;
foreach(XElement xe in q)
Console.WriteLine("Name: " + xe.Name +" Value: " + xe.Value);
Console.ReadLine();
}
}
}
我需要从响应中获得的XElement是:
<dc:title xsi:type="dkdcplus:full">Dynastiet præsenterer D-Dag!</dc:title>
我不断收到System.NullReferenceException。显然我没有得到XElement,但为什么?
通过删除“where”可以轻松获取所有dc:title元素,这样就成了问题。
我不是Linq-to-Xml master,但这个带有属性的命名空间业务真的很混乱。
答案 0 :(得分:1)
这是因为dc:title
返回了2个Descendants()
个元素。一个xsi:type
属性,一个没有。当您在.Value
中没有where
时调用var q = from result in xd.Descendants(dc + "title")
where (String)result.Attribute(xsi + "type") == "dkdcplus:full"
select result;
时,它会为您提供空引用异常。在检查值之前,需要检查属性是否为null。
以下是一些有用的代码:
{{1}}