Guys I am trying to use xml based api and I am sending xml soap based request to the server and I am getting the response.Up to this point I have response from the server its about domestic flight information from yatra but problem is I am getting response something like this:\[quote\] \[quote\] E0BLRMAA2140.0INRADTR1380E0BLRMAA2013-01-26T21:35:00.000Z02013-01-26T20:45:00.000Z320falseBLRJ+0530MAAn 6E 2722013-01-26T20:45:00.000Z2013-01-26T21:35:00.000Z1802013-01-26T20:45:00.000Z2BLR320falsefalse320J+0530180+0530MAA+05302726E4568 6E 0 0.0000 F C BF 0.0000 P 1.5000 P BF 2700.0000 9W 1 0.0000 F C BF 1.0000 P 0.0000 P B 1100.0000 AI 1 0.0000 F C BF 1.0000 P 0.0000 P B 1100.0000 DN 0 0.0000 F C BF 3.0000 P 2.0000 P BF 3250.0000 G8 0 0.0000 F C BF 0.0000 P 3.0000 P BF 2700.0000 IC 1 0.0000 F C BF 0.0000 P 0.0000 P B 1100.0000 IT 1 0.0000 F C BF 3.0000 P 0.0000 P BF 1100.0000 S2 1 0.0000 F C BF 0.0000 F 75.0000 F B 1100.0000 SG 0 0.0000 F C BF 0.0000 P 1.5000 P BF 2000.0000 1 0 C B 0.0000 XXXXX \[/quote\]\[/quote\]I want to display it in proper format but dont know how to display it in proper format , In the sample response it is showed response as xml based but I am getting this its like binary response . Help would be strongly appreciatedMy code is:\[code\] Dim s = "" s = s & "<?xml version=""1.0"" encoding=""UTF-8""?>" & vbCrLf s = s & "<soap:Envelope xmlns=""http://www.opentravel.org/OTA/2003/05"" xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"" xmlns:wsse=""http://schemas.xmlsoap.org/ws/2002/12/secext"">" s = s & "<soap:Body>" & vbCrLf s = s & "<OTA_AirLowFareSearchRQ EchoToken=""0"" SequenceNmbr=""0"" TransactionIdentifier=""0"" Version=""1.001"" xmlns=""http://www.opentravel.org/OTA/2003/05"" DirectFlightsOnly=""false"" >" & vbCrLf s = s & "<POS xmlns=""http://www.opentravel.org/OTA/2003/05"">" & vbCrLf s = s & "<Source AgentSine="""" PseudoCityCode=""NPCK"" TerminalID=""1"">" & vbCrLf s = s & "<RequestorID ID=""AFFILIATE""/>" & vbCrLf s = s & "</Source>" & vbCrLf s = s & "<YatraRequests>" & vbCrLf s = s & "<YatraRequest DoNotHitCache=""false"" DoNotCache=""false"" YatraRequestTypeCode=""SMPA"" Description="""" MidOfficeAgentID=""28737"" AffiliateID=""YTFABTRAVEL"" />" & vbCrLf s = s & "</YatraRequests>" & vbCrLf s = s & "</POS>" & vbCrLf s = s & "<OriginDestinationInformation>" & vbCrLf s = s & "<DepartureDateTime WindowAfter=""POD"" WindowBefore=""POD"">" & txtDeparture.Text & "</DepartureDateTime>" & vbCrLf s = s & "<OriginLocation CodeContext=""IATA"" LocationCode=""" & drpFrom.SelectedValue & """>" & drpFrom.SelectedValue & "</OriginLocation>" & vbCrLf s = s & "<DestinationLocation CodeContext=""IATA"" LocationCode=""" & drpTo.SelectedValue & """>" & drpTo.SelectedValue & "</DestinationLocation>" & vbCrLf s = s & "</OriginDestinationInformation>" & vbCrLf s = s & "<TravelerInfoSummary>" & vbCrLf s = s & "<AirTravelerAvail>" & vbCrLf s = s & "<PassengerTypeQuantity Code=""ADT"" FareBasisCode=""T"" Quantity=""" & drAdult.SelectedValue & """/>" & vbCrLf s = s & "<PassengerTypeQuantity Code=""CHD"" FareBasisCode=""T"" Quantity=""" & drpChil.SelectedValue & """/>" & vbCrLf s = s & "<PassengerTypeQuantity Code=""INF"" FareBasisCode=""T"" Quantity=""" & drpInfant.SelectedValue & """/>" & vbCrLf s = s & "</AirTravelerAvail>" & vbCrLf s = s & "</TravelerInfoSummary>" & vbCrLf s = s & "<TravelPreferences>" & vbCrLf s = s & "<CabinPref Cabin=""" & drpClass.SelectedValue & """/>" & vbCrLf s = s & "</TravelPreferences>" & vbCrLf s = s & "</OTA_AirLowFareSearchRQ>" & vbCrLf s = s & "</soap:Body>" & vbCrLf s = s & "</soap:Envelope>" & vbCrLf Dim url = "http://203.189.91.127:9090/services/spm/spm" Dim doc As New XmlDocument() doc.LoadXml(s) Dim req As HttpWebRequest = WebRequest.Create(url) req.Headers.Add("SOAPAction", "") req.ContentType = "text/xml;charset=""utf-8""" req.Accept = "text/xml" req.Method = "POST" Dim stm As Stream = req.GetRequestStream() doc.Save(stm) stm.Close() Dim resp As WebResponse = req.GetResponse() stm = resp.GetResponseStream() Dim r As StreamReader = New StreamReader(stm) 'process SOAP return doc here. For now, we'll just send the XML out to the browser ... string respServer=r.ReadToEnd(); Response.Write(respServer)\[/code\]