C# 如何向SOAP XML添加新元素

C# 如何向SOAP XML添加新元素,c#,xml,linq,soap,C#,Xml,Linq,Soap,我有一个SOAP XML文件名“LogEvents.XML”,我想从中添加/删除元素 <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2001/12/soap-envelope" SOAP-ENV:encodingStyle="http://www.w3.org/2001/1

我有一个SOAP XML文件名“LogEvents.XML”,我想从中添加/删除元素

<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2001/12/soap-envelope" SOAP-ENV:encodingStyle="http://www.w3.org/2001/12/soap-encoding" >
  <SOAP-ENV:Body xmlns:lle="http://www.examplee.org/logevents" >

  <Event>
    <eventid>ID-1</eventid>
    <title>title1</title>
    <description>desc1</description>
    <location>
      <lat>1.357207</lat>
      <long>103.944880</long>
      <address>address1</address>
    </location>
    <datetimestamp>datetime1</datetimestamp>
  </Event>
  <Event>
    <eventid>ID-2</eventid>
    <title>title2</title>
    <description>desc2</description>
    <location>
      <lat>1.304121</lat>
      <long>103.831950</long>
      <address>addres2</address>
    </location>
    <datetimestamp>datetime2</datetimestamp>
  </Event>
    
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我试图删除XML文件中的SOAP信封,并用“事件”替换它,并相应地编辑C#代码,其工作原理如下所示

<?xml version="1.0" encoding="utf-8"?>
<!--Changed to Events-->
<Events>
  <Event>
    <eventid>ID-1</eventid>
    <title>title1</title>
    <description>desc1</description>
    <location>
      <lat>1.357207</lat>
      <long>103.944880</long>
      <address>address1Edge</address>
    </location>
    <datetimestamp>datetime1</datetimestamp>
  </Event>
  <Event>
    <eventid>ID-2</eventid>
    <title>title2</title>
    <description>desc2</description>
    <location>
      <lat>1.304121</lat>
      <long>103.831950</long>
      <address>addres2</address>
    </location>
    <datetimestamp>datetime2</datetimestamp>
<!--Changed to Events-->
  </Event>
<Events>

有没有什么方法可以忽略SOAP信封,或者有什么方法可以绕过它?

使用Root。需要时,您始终可以从根目录获取默认名称空间

           XDocument xDoc1 = XDocument.Load(FILENAME);
            XElement soap = xDoc1.Root;
            XNamespace ns = soap.GetDefaultNamespace();

            soap.Add(new XElement("Event", new XElement("eventid", "strEventID"),
                                                    new XElement("title", "title2"),
                                                    new XElement("description", "desc3"),
                                                    new XElement("location", new XElement("lat", "lat3"),
                                                                             new XElement("long", "long3"),
                                                                             new XElement("address", "addresses3")),
                                                    new XElement("datetimestamp", "DateTime3")));
XDocument xDoc1 = XDocument.Load(@"C:\LogEvents.xml");
                     
// Changed SOAP-ENV to Events
xDoc1.Element("Events").Add(new XElement("Event", new XElement("eventid", "ID-3"),
                                                    new XElement("title", "title3"),
                                                    new XElement("description", "desc3"),
                                                    new XElement("location", new XElement("lat", "lat3"),
                                                                             new XElement("long", "long3"),
                                                                             new XElement("address", "addresses3")),
                                                    new XElement("datetimestamp", "DateTime3")));
           XDocument xDoc1 = XDocument.Load(FILENAME);
            XElement soap = xDoc1.Root;
            XNamespace ns = soap.GetDefaultNamespace();

            soap.Add(new XElement("Event", new XElement("eventid", "strEventID"),
                                                    new XElement("title", "title2"),
                                                    new XElement("description", "desc3"),
                                                    new XElement("location", new XElement("lat", "lat3"),
                                                                             new XElement("long", "long3"),
                                                                             new XElement("address", "addresses3")),
                                                    new XElement("datetimestamp", "DateTime3")));