0

我想在 SOAP 请求中编辑一个元素的 xml 数据,以便发送唯一的 SOAP 请求。

以下是示例请求

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:web="http://webservice/">
   <soapenv:Header/>
   <soapenv:Body>
      <web:ca>
         <type1>
            <ad>2013-07-19</ad>
            <name>abcd 13071502</name>
            <taker>
               <taker>TEST</taker>
               <emailAddress>test@test.com</emailAddress>
               <name>nameTest</name>
               <phoneNo>007007007</phoneNo>
               <takerUid>1234</takerUid>
            </taker>
         </type1>
         <type2>4</type2>
         <type3>peace</type3>
         <type4>test</type4>
      </web:ca>
   </soapenv:Body>
</soapenv:Envelope>

我想将“name”元素值从“abcd 13071502”更改为“abcd”。我能够从“名称”元素中提取数据并通过在 C# 中使用以下代码来编辑值

System.Xml.XmlTextReader xr = new XmlTextReader(@filePath);
while (xr.Read())
{
if (xr.LocalName == "name")
    {
        xr.Read();
        currentNameValue = xr.Value;
        int cnvLen = currentNameValue.Length;
        string cnvWOdate = currentNameValue.Substring(0, cnvLen-8);
        string newNameValue = cnvWOdate+currTimeDate;
        break;
    }
}

但是,我不知道如何编辑该值并保存文件。任何帮助,将不胜感激。谢谢你。

4

2 回答 2

1

使用XmlDocument类而不是XmlTextReader类。

System.Xml.XmlDocument xd = new XmlDocument();
xd.Load(@"filepath");

foreach(XmlNode nameNode in xd.GetElementsByTagName("name"))
{
    if(nameNode.ParentNode.Name == "type1")
    {
        string currentNameValue = nameNode.InnerText;
        int cnvLen = currentNameValue.Length;
        string cnvWOdate = currentNameValue.Substring(0,cnvLen-8);
        string newNameValue = cnvWOdate+currTimeDate;

        nameNode.InnerText = newNameValue;
    }
}

xd.Save(@"newFilePath");
于 2013-07-23T14:15:47.817 回答
0
XmlDocument doc = new XmlDocument();
doc.Load("file path");

XmlNode nameNode = doc.SelectSingleNode("/Envelope/Body/ca/type1/name");

string currentNameValue = nameNode != null ? nameNode.InnerText : "name not exist";
int cnvLen = currentNameValue.Length;
string cnvWOdate = currentNameValue.Substring(0, cnvLen-8);
string newNameValue = cnvWOdate+currTimeDate;

nameNode.InnerText = newNameValue; //set new value to tag

要获取Value或获取InnerText节点,您必须确保该节点存在。该行string currentNameValue的格式如下:

var variable = condition ? A : B;

基本上是说如果条件为真,则变量等于A,否则,变量等于B。

于 2013-07-23T17:14:38.333 回答