的xmlns =""被不必要地添加

时间:2016-12-14 09:02:00

标签: c# xml xslt xml-parsing xmlhttprequest

以下是我的XML请求,我是初学者。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://www.juniper.es/webservice/2007/">
<soapenv:Header/>
<soapenv:Body>
<HotelAvail>
<HotelAvailRQ Version="1.1" Language="en">
<Login Email="user@mydomain.com" Password="pass" />
<Paxes>
<Pax IdPax="1">
<Age>8</Age>
</Pax> 
</Paxes> 
<HotelRequest> 
<SearchSegmentsHotels> 
<SearchSegmentHotels Start="2013-08-20" End="2013-08-22" DestinationZone="1953"/> 
<CountryOfResidence>ES</CountryOfResidence> 
<Boards> 
<Board Type="AD"/> 
</Boards> 
</SearchSegmentsHotels> 
<RelPaxesDist> 
<RelPaxDist> 
<RelPaxes> 
<RelPax IdPax="1"/> 
</RelPaxes> 
</RelPaxDist> 
</HotelRequest> 
<AdvancedOptions> 
<ShowHotelInfo>true</ShowHotelInfo> 
</AdvancedOptions> 
</HotelAvailRQ> 
</HotelAvail> 
</soapenv:Body> 
</soapenv:Envelope>

我正在尝试为此创建c#请求,但我得到的是xmlns =&#34;&#34;在Hotelavail标签,我不想要。

//Declaration
          const string SOAPENV_NS = "http://schemas.xmlsoap.org/soap/envelope/";
          const string WKSP_NS = "http://www.juniper.es/webservice/2007/";
          XmlDeclaration xmlDeclaration = XMLDoc1.CreateXmlDeclaration("1.0", "utf-16", null);
            //root
            XMLsoapenv = XMLDoc1.CreateElement("soapenv", "Envelope", SOAPENV_NS);
            XMLsoapenv.SetAttribute("xmlns:soapenv", SOAPENV_NS);
            XMLsoapenv.SetAttribute("xmlns", WKSP_NS);
            //XMLDoc1.AppendChild(XMLsoapenv);
            //header
            XMLsoapenvHeader = XMLDoc1.CreateElement("soapenv", "Header", SOAPENV_NS);
            XMLsoapenv.AppendChild(XMLsoapenvHeader);
            XMLsoapenvBody = XMLDoc1.CreateElement("soapenv", "Body", SOAPENV_NS);
            XMLsoapenv.AppendChild(XMLsoapenvBody);
            //XMLDoc1.AppendChild(XMLsoapenv);
            XMLHotelAvail = XMLDoc1.CreateElement("HotelAvail");
            XMLHotelAvailRQ = XMLDoc1.CreateElement("HotelAvailRQ");
            XMLHotelAvailRQ.SetAttribute("Version", "1.1");
            XMLHotelAvailRQ.SetAttribute("Language", language1);
            XMLLogin = XMLDoc1.CreateElement("Login");
            XMLLogin.SetAttribute("Email", email);
            XMLLogin.SetAttribute("Password", password);
            XMLHotelAvailRQ.AppendChild(XMLLogin);
            XMLPaxes = XMLDoc1.CreateElement("Paxes");
            XMLPaxFirstChild = XMLDoc1.CreateElement("Pax");
            XMLPaxFirstChild.SetAttribute("IdPax", "1");
            XMLPaxFirstChild.SetAttribute("Age", searchCriteria.FirstChild);
            XMLPaxes.AppendChild(XMLPaxFirstChild);
            XMLHotelAvailRQ.AppendChild(XMLPaxes);
            XMLHotelRequest = XMLDoc1.CreateElement("HotelRequest");
            XMLSearchSegmentsHotels = XMLDoc1.CreateElement("SearchSegmentsHotels");
            XMLSearchSegmentHotels = XMLDoc1.CreateElement("SearchSegmentHotels");
            XMLSearchSegmentHotels.SetAttribute("Start", searchCriteria.CheckInDate);
            XMLSearchSegmentHotels.SetAttribute("End", searchCriteria.CheckOutDate);
            XMLSearchSegmentHotels.SetAttribute("DestinationZone", "628");
            XMLCountryOfResidence = XMLDoc1.CreateElement("CountryOfResidence", searchCriteria.Country);
            XMLSearchSegmentHotels.AppendChild(XMLCountryOfResidence);
            XMLSearchSegmentsHotels.AppendChild(XMLSearchSegmentHotels);
            XMLHotelRequest.AppendChild(XMLSearchSegmentsHotels);
            XMLRelPaxesDist = XMLDoc1.CreateElement("RelPaxesDist");
            XMLRelPaxDist = XMLDoc1.CreateElement("RelPaxDist");
            XMLRelPaxes = XMLDoc1.CreateElement("RelPaxes");
            XMLRelPax = XMLDoc1.CreateElement("RelPax");
            XMLRelPax.SetAttribute("IdPax", "1");
            XMLRelPaxes.AppendChild(XMLRelPax);
            XMLRelPaxDist.AppendChild(XMLRelPaxes);
            XMLRelPaxesDist.AppendChild(XMLRelPaxDist);
            XMLHotelRequest.AppendChild(XMLRelPaxesDist);
            XMLHotelAvailRQ.AppendChild(XMLHotelRequest);
            XMLHotelAvail.AppendChild(XMLHotelAvailRQ);
            XMLsoapenv.AppendChild(XMLHotelAvail);
            //XMLsoapenvBody.AppendChild(XMLHotelAvail);
            //XMLsoapenv.AppendChild(XMLsoapenvBody);
            XMLDoc1.AppendChild(XMLsoapenv);

我试过给#34; SOAPENV_NS&#34;在Hotelavail标签中我读到它的某处xmlns =&#34;&#34;不会被添加,但没有用我也得到了网址。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

您隐式创建HotelAvail及其所有子节点的空命名空间(因为您未在CreateElement调用中指定一个)。

“默认”命名空间在xmlns="http://www.juniper.es/webservice/2007/"的XML根目录中定义。

CreateElementHotelAvail和孩子的来电更改为:

XMLDoc1.CreateElement("HotelAvail", WKSP_NS);

有关正常工作的演示,请参阅this fiddle

顺便说一下,我同意Jon Skeet的说法,你应该调查LINQ to XML,而不是使用旧的XmlDocument API。合作起来要好得多。