- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在我的 Windows Phone 应用程序中,我需要使用 XmlDocument 类。但是还是报错
错误 1 找不到类型或命名空间名称“XmlDocument”(是否缺少 using 指令或程序集引用?)
我添加了引用和使用 System.Xml
但这并没有帮助。
这是我的 SOAP 示例代码,我需要修改它才能使用 XDocument编辑 - 添加了 SOAP 示例代码
public static void CallWebService()
{
var _url = "http://xxxxxxxxx/Service1.asmx";
var _action = "http://xxxxxxxx/Service1.asmx?op=HelloWorld";
XmlDocument soapEnvelopeXml = CreateSoapEnvelope()
HttpWebRequest webRequest = CreateWebRequest(_url, _action);
InsertSoapEnvelopeIntoWebRequest(soapEnvelopeXml, webRequest);
// begin async call to web request.
IAsyncResult asyncResult = webRequest.BeginGetResponse(null, null);
// suspend this thread until call is complete. You might want to
// do something usefull here like update your UI.
asyncResult.AsyncWaitHandle.WaitOne();
// get the response from the completed web request.
string soapResult;
using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult))
using (StreamReader rd = new StreamReader(webResponse.GetResponseStream()))
{
soapResult = rd.ReadToEnd();
}
Console.Write(soapResult);
}
private static HttpWebRequest CreateWebRequest(string url, string action)
{
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
webRequest.Headers.Add("SOAPAction", action);
webRequest.ContentType = "text/xml;charset=\"utf-8\"";
webRequest.Accept = "text/xml";
webRequest.Method = "POST";
return webRequest;
}
private static XmlDocument CreateSoapEnvelope()
{
XmlDocument soapEnvelop = new XmlDocument();
soapEnvelop.LoadXml(@"<SOAP-ENV:Envelope xmlns:SOAP-ENV=""http://schemas.xmlsoap.org/soap/envelope/"" xmlns:xsi=""http://www.w3.org/1999/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/1999/XMLSchema""><SOAP-ENV:Body><HelloWorld xmlns=""http://tempuri.org/"" SOAP-ENV:encodingStyle=""http://schemas.xmlsoap.org/soap/encoding/""><int1 xsi:type=""xsd:integer"">12</int1><int2 xsi:type=""xsd:integer"">32</int2></HelloWorld></SOAP-ENV:Body></SOAP-ENV:Envelope>");
return soapEnvelop;
}
private static void InsertSoapEnvelopeIntoWebRequest(XmlDocument soapEnvelopeXml, HttpWebRequest webRequest)
{
using (Stream stream = webRequest.GetRequestStream())
{
soapEnvelopeXml.Save(stream);
}
}`
最佳答案
Linq 的例子在这里: http://www.windowsphonegeek.com/tips/wp7-working-with-xml-reading-filtering-and-databinding
源代码示例: http://www.c-sharpcorner.com/UploadFile/74f20d/read-local-xml-file-from-windows-phone-7/
关于c# - Windows Phone - 找不到 XmlDocument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10237809/
我有一个 XmlDocument 并获取对象的字节如下: XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load("C:\\myxml.xml"); b
我创建了一个具有一个节点的基本 XmlDocument: XmlDocument bigDoc = new XmlDocument(); bigDoc.LoadXml(""); 我得到了另一个 Xml
我刚刚在使用 XmlDocument.LoadXml 时遇到问题。 应用程序崩溃,出现以下错误: "Data at the root level is invalid. Line 1, positio
我想知道执行以下操作的最佳方法是什么: 目录“Input.xml”和“Metadata.xml”中有 2 个 XML 文件。 输入.xml: 1 Test
我使用以下 VB.NET 代码将一些 XML 转换为新的 XML,然后继续处理。这是一次性过程,而不是多次完成的过程,因此据我所知,缓存不会提高效率。 代码有效,但我发现性能问题。我知道性能问题可能与
我有两个 XmlDocuments。像这样的东西: 和 我想将 document2 放在 document1 的内部节点中,这样我最终得到一个包含以下内容的文档:
我已经尝试了一些将新子添加到 XML 文件的代码。我注意到使用 XmlDocument.Load(String filename) 和 XmlDocument.Load(FileStream fs)
当我使用 TXMLDocument 加载 XML 时,元素不包含任何值。我阅读了以下 example file带有元素 TOSL108 ,它确实找到了节点,但它不将其识别为文本元素并且值为空且没有子元
我正在尝试处理 uwp 应用程序中的 xml,我添加了引用和用法: using System.Xml; using System.Xml.XPath; 但是 private XmlDocument d
我试图找出 CreateDocumentType() 在 C# 中的工作原理,虽然我已经找到并阅读了它的 msdn 页面,但我无法让它为我工作。 我只是想在我的 xml 文档中创建这一行: 谁能帮我
我有以下代码: var xmlString = ajaxRequest.responseText.toString(); parser = new DOMParser() doc = parser.p
我相信我的一些使用 XmlDocument 类的代码存在内存泄漏。 我的程序在 Windows 6.1.4 设备 (C#) 上运行并从另一台服务器上的数据库中读取以查看是否需要卸载设备上安装的任何程序
我正在使用流创建 XmlDocument 并在 XmlDocument 中进行一些更改并将 XmlDocument 保存到流本身。 XmlDocument xmlDocument = new XmlD
我想处理 XML 文档,并在 Foundation 包中找到了 XMLDocument 类,这似乎足以满足我的目的。但是我在使用它时遇到了一些问题。我有以下 Swift 代码: import UIKi
我有一堆与 XmlDocument 的空格处理相关的问题.请参阅下面示例中的编号评论。 在混合模式下,所有空格都不应该有意义吗?为什么 a 标签之间的空格不重要? 虽然我知道实际的空白元素仍然是 Xm
我目前必须遍历大量的 .xml 文件,并且绑定(bind)到 Mono(所以没有全新的 .NET LINQ 等)。 我用 XmlDocument加载每个 XML 文件,现在我的问题是,我可以为所有文件
我目前正在使用 Xmldocument 读取一个 xml 文件并写入一些值。我正在阅读的部分看起来像这样: Windows 3
我使用 XmlDocument.Load() 解析从嵌入式资源中读取的 XML 文本。有包含多行的文本元素。我读过 XML 解析器应该规范化换行符,将 CR-LF 对转换为单个 LF 字符。但我发现在
我有一个简单的 c# 函数,它创建一个基本的 XML 文件并保存: private void CreateXMlFile(string Filename, string Name, string Co
为了在SoapException.Detail中返回有用的信息对于 asmx web 服务,我从 WCF 中汲取灵感并创建了一个故障类来包含上述有用信息。然后将该故障对象序列化为所需的 XmlNode
我是一名优秀的程序员,十分优秀!