0

編集:

ここで 3 つのことを達成しようとしています: XmlNode クエリを取得し、XmlNode QueryId を取得し、a:schemaLocation の値を取得しますが、解析後は null になります。XML から修飾名を削除すると、C# ビットは正常に機能します。コードをどのように書き直す必要がありますか?

XML:

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:loc="localhost">
   <soapenv:Header/>
   <soapenv:Body>
      <loc:Service>
         <!--Optional:-->
         <loc:input>?</loc:input>
         <Query a:schemaLocation="http://www.xyz.com/xml.xsd" xmlns:payload="http://www.xyz.com" xmlns:a="http://www.w3.org/2001/XMLSchema-instance" xmlns="loc4">
            <QueryId>Data</QueryId>
         </Query>
      </loc:Service>
   </soapenv:Body>
</soapenv:Envelope>

C#:

private NamespaceManager nsmgr;
private XmlDocument doc = new XmlDocument();
private Stream receiveStream = new Stream(HttpContext.Current.Request.InputStream);
private XmlNode Query, QueryId;

using (this.receiveStream){

using (StreamReader readStream = new StreamReader(this.receiveStream, Encoding.UTF8)){

     doc.Load(readStream);

     this.nsmgr = new XmlNamespaceManager(this.doc.NameTable);
     this.nsmgr.AddNamespace("soapenv", "http://schemas.xmlsoap.org/soap/envelope/");
     this.nsmgr.AddNamespace("loc", "http://localhost");
     this.nsmgr.AddNamespace("schemaLocation", "http://www.xyz.com/xml.xsd");
     this.nsmgr.AddNamespace("payload", "http://www.xyz.com");
     this.nsmgr.AddNamespace("a", "http://www.w3.org/2001/XMLSchema-instance");
     this.nsmgr.AddNamespace("x", this.doc.DocumentElement.NamespaceURI);
     this.Query = doc.SelectSingleNode("//x:Query", this.nsmgr);
     this.QueryId= doc.SelectSingleNode("//x:QueryId", this.nsmgr);
     }
 }
4

2 に答える 2

1

どうぞ...

XmlDocument xDoc = new XmlDocument();
xDoc.Load("Query.xml");

XmlNamespaceManager xnm = new XmlNamespaceManager(xDoc.NameTable);
xnm.AddNamespace("schemaLocation", "loc");
xnm.AddNamespace("payload", "loc2");
xnm.AddNamespace("a", "http://www.w3.org/2001/XMLSchema-instance");
xnm.AddNamespace("x", xDoc.DocumentElement.NamespaceURI);

クエリの内部テキスト:

xDoc.SelectNodes("//x:Query", xnm)[0].InnerText

QueryId の内部テキスト:

xDoc.SelectNodes("//x:QueryId", xnm)[0].InnerText

a:schemaLocation 属性:

string namespaceURI = xnm.GetNamespacesInScope(XmlNamespaceScope.Local).FirstOrDefault(el => string.Equals(el.Key, "a")).Value;
var x = xDoc.DocumentElement.Attributes["schemaLocation", namespaceURI].Value;
于 2013-08-07T06:31:25.710 に答える
0

これが私が思いついた簡単な解決策です:

次の行を削除しました。

 this.nsmgr.AddNamespace("soapenv", "http://schemas.xmlsoap.org/soap/envelope/");
     this.nsmgr.AddNamespace("loc", "http://localhost");
     this.nsmgr.AddNamespace("schemaLocation", "http://www.xyz.com/xml.xsd");
     this.nsmgr.AddNamespace("payload", "http://www.xyz.com");

変更:

this.nsmgr.AddNamespace("x", "loc4");

a:schemaLocation の値を見つけることは、Prash の提案どおりに機能しました。

于 2013-08-09T11:51:03.483 に答える