Note that there are some explanatory texts on larger screens.

plurals
  1. PONamespace Manager or XsltContext needed
    primarykey
    data
    text
    <p>I have the following xml;</p> <pre><code> &lt;env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'&gt;    &lt;env:Header&gt;        &lt;mm7:TransactionID xmlns:mm7='http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4' env:mustUnderstand='1'&gt;6797324d&lt;/mm7:TransactionID&gt;    &lt;/env:Header&gt;    &lt;env:Body&gt;        &lt;DeliveryReportReq xmlns='http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-4'&gt;            &lt;MM7Version&gt;6.8.0&lt;/MM7Version&gt;&lt;MMSRelayServerID&gt;TARAL&lt;/MMSRelayServerID&gt; &lt;MessageID&gt;T*3*T\*4\*855419761&lt;/MessageID&gt; &lt;Recipient&gt; &lt;RFC2822Address&gt;+61438922562/TYPE=hidden&lt;/RFC2822Address&gt; &lt;/Recipient&gt; &lt;Sender&gt; &lt;RFC2822Address&gt;61418225661/TYPE=hidden&lt;/RFC2822Address&gt; &lt;/Sender&gt; &lt;Date&gt;2011-08-15T12:57:27+10:00&lt;/Date&gt; &lt;MMStatus&gt;Retrieved&lt;/MMStatus&gt; &lt;StatusText&gt;The message was retrieved by the recipient&lt;/StatusText&gt; &lt;/DeliveryReportReq&gt;   &lt;/env:Body&gt; &lt;/env:Envelope&gt; </code></pre> <p>So then i have the following c# code;</p> <pre><code>XmlDocument xDoc = new XmlDocument(); xDoc.LoadXml(file); XmlNode xNode = xDoc.SelectSingleNode("env:Envelope"); </code></pre> <p>and i get the error;</p> <blockquote> <p>Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function.</p> </blockquote> <p>anyone know how to fix this?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload