Wrox Programmer Forums
|
Classic ASP XML Using ASP 3 and XML. See also the XML category for more XML discussions not relating to ASP. NOT for ASP.NET 1.0, 1.1, or 2.0
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP XML section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 4th, 2010, 02:42 PM
Registered User
 
Join Date: Oct 2010
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default asp form post and response xml

hi friends
im doing an xm hotel reservation b2c projects where im supposed to
send xml request to the main server and get response in return.
here is a the sample request

Quote:
<form action="http://www.servername.com/xml_req_parser.php" method="post">
<textarea name="xml" cols="90" rows="20">
<?xml version="1.0" encoding="UTF-8" ?>
<XMLRequest>
<RequestType>DestinationListRequest</RequestType>
<RequestLogin>
<AffiliateCode>AF0001</AffiliateCode>
<AffiliateUsername>myUserName</AffiliateUsername>
<AffiliatePassword>myPassword</AffiliatePassword>
<AffRequestId>5</AffRequestId>
<AffRequestTime><%=now()%></AffRequestTime>
</RequestLogin>
<DestinationListInfo>
<CompleteList>false</CompleteList>
</DestinationListInfo>
</XMLRequest>
</textarea><br>
<input type="submit">
</form>
in return i get the response from http://www.servername.com/xml_req_parser.php
which is the form target.

Quote:
<?xml version="1.0" encoding="UTF-8" ?>
<XMLResponse>
<ResponseType>HotelListResponse</ResponseType>
<RequestInfo>
<AffiliateCode>AF001</AffiliateCode>
<AffRequestId>5</AffRequestId>
<AffRequestTime>2010-09-30T14:43:24</AffRequestTime>
</RequestInfo>
<TotalNumber>51397</TotalNumber>
<Hotels>
<Hotel>
<HotelCode>ABCDE</HotelCode>
<DestinationId>NFUE</DestinationId>
<Destination>Nice</Destination>
<Country>France</Country>
<HotelName>One Spa Hotel</HotelName>
<StarRating>4</StarRating>
</Hotel>
<Hotel>
<--record 2 here-->
</Hotel>
<Hotel>
<--record 3 here-->
</Hotel>
<Hotel>
<--record 51397 here-->
</Hotel>
</Hotels>
</XMLResponse>
as the response is only after submiting a form how can i load the xml
into my asp program so that i can display the result in web page.
kindly help

neon

Last edited by neontwenty; October 5th, 2010 at 04:01 AM..
 
Old October 4th, 2010, 08:25 PM
Friend of Wrox
 
Join Date: Jun 2008
Posts: 1,649
Thanks: 3
Thanked 141 Times in 140 Posts
Default

See my answer here:
http://www.codingforums.com/showthread.php?t=206235
 
Old October 5th, 2010, 03:54 AM
Registered User
 
Join Date: Oct 2010
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

old pedant, thank you for the reply

it failed to load the xml, showing

XML load failed: XML document must have a top level element.

the xml actually having top level element in the response xml that i could see. i assume
it is not get loaded here.

below is the code i wrote

Quote:
<%
req=request.Form("xml") '// i changed the form ACTION to this page

Set httpObj = Server.CreateObject("msxml2.ServerXMLHTTP")
httpObj.Open "POST", "http://www.servername.com/xml_req_parser.php", False
httpObj.Send req



Set xmlObj = Server.CreateObject("Microsoft.XMLDOM")
'//xmlObj.Load httpObj.ResponseXML
xmlObj.Load httpObj.ResponseXML.xml


if xmlObj.parseError.reason <> "" then
Response.Write "XML load failed: " & xmlObj.parseError.reason & "<br>"
response.end
else
response.Write "load success"
end if

set rootObj=xmlObj.getElementsByTagName("Rooms")

response.Write rootObj.length
%>

Last edited by neontwenty; October 5th, 2010 at 04:02 AM..





Similar Threads
Thread Thread Starter Forum Replies Last Post
C# post xml using HttpWebRequest/Response datakix ASP.NET 1.0 and 1.1 Professional 6 June 14th, 2016 07:47 AM
How to post a XML file to a remote server and get a XML response back surendran ASP.NET 3.5 Professionals 2 January 29th, 2010 03:39 AM
POST response cached keenlearner BOOK: Professional Ajax ISBN: 978-0-471-77778-6 0 March 27th, 2007 03:12 PM
XML Post From VB to asp page LanceAtCti VB How-To 2 July 13th, 2006 08:58 AM
Reading an XML post in an ASP.NET web site spudgun2005 ASP.NET 1.0 and 1.1 Basics 0 November 3rd, 2005 05:40 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.