簡體   English   中英

xmlns =“”被不必要地添加

[英]xmlns=“” is unwantedly being added

以下是我的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#請求,但是我在Hotelavail標記中得到了xmlns =“”,這是我不想要的。

//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);

我嘗試在Hotelavail標記中提供“ SOAPENV_NS”,因為我在某處讀取它,因此不會添加xmlns =“”,但也無濟於事。

任何幫助將非常感激。

您正在使用空名稱空間隱式創建HotelAvail及其所有子級(因為您在對CreateElement的調用中未指定一個)。

“默認”名稱空間是通過xmlns="http://www.juniper.es/webservice/2007/"在XML的根目錄中定義的。

將您對HotelAvail和子級的CreateElement調用更改為:

XMLDoc1.CreateElement("HotelAvail", WKSP_NS);

請參閱此小提琴以獲得有效的演示。

順便說一句,我同意Jon Skeet的觀點,您應該研究LINQ to XML,而不是使用舊的XmlDocument API。 與它一起工作要好得多。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM