2016-12-14 45 views
0

以下是我的XML請求,我是一名初學者。xmlns =「」被無意中添加

<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="[email protected]" 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 =「」在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); 

我都試過,因爲我在其他地方見過這麼的xmlns =「」不會加入,但沒有用,我得到的URL以及給予「SOAPENV_NS」在Hotelavail標籤。

任何幫助將不勝感激。

+0

歡迎來到Stack Overflow。請把它降低到[mcve] - 我相信你不需要這麼多的XML或代碼來代表問題。然後請確保您的代碼格式儘可能可讀 - 在發佈之前使用預覽來查看您的文章的外觀。 –

+0

(不清楚這與XSLT或xmlhttprequest有什麼關係 - 如果可能的話,我強烈建議使用LINQ to XML而不是舊的'XmlDocument' API。) –

+1

只需將正確的名稱空間傳入'CreateElement'電話,你應該設置 –

回答

0

您隱式地創建了HotelAvail及其所有子級空名稱空間(因爲您在CreateElement的調用中沒有指定一個子級)。

「默認」命名空間在您的XML的根目錄中定義爲xmlns="http://www.juniper.es/webservice/2007/"

更改您的CreateElement呼籲HotelAvail和兒童:

XMLDoc1.CreateElement("HotelAvail", WKSP_NS); 

this fiddle了工作演示。另外,我同意Jon Skeet的觀點,你應該研究LINQ to XML,而不是使用舊的XmlDocument API。與它合作更好。