By chance I’ve to work with classic asp. I’m wondering how I can create an xml string so easily in classic ASP?
EDITED: I’ve a web service that takes xml strings as input parameters and the xml strings are created for that.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In classic ASP (3.0 I believe) you need to use COM objects. For handling XML you can use Microsoft MSXML (latest version 6.0) more info here: http://en.wikipedia.org/wiki/MSXML
The XMLDocument object represents an entire XML document.
The IXMLDOMNode object represents a single entity (node in the tree).
The IXMLDOMNodeList object represents a collection of child nodes for a particular entity.
Or you can build your XML using brutal force lol