XML parser
Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: General Discussion
Forum Description: General discussion and chat on any topic.
URL: https://forums.webwiz.net/forum_posts.asp?TID=10465
Printed Date: 28 March 2026 at 10:26am Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com
Topic: XML parser
Posted By: huwnet
Subject: XML parser
Date Posted: 16 May 2004 at 11:50am
|
How do I write an ASP XML parser?
|
Replies:
Posted By: Mart
Date Posted: 16 May 2004 at 12:00pm
Why write one when there is already one that comes as standard
|
Posted By: huwnet
Date Posted: 16 May 2004 at 12:21pm
Posted By: zonelinks
Date Posted: 18 May 2004 at 2:01am
What is the basic function of an XML parser?
-------------------------
http://www.zonelinks.com
-------------------------
The Power Link Dimension
|
Posted By: Mart
Date Posted: 18 May 2004 at 2:47am
To parse XML
|
Posted By: dpyers
Date Posted: 18 May 2004 at 2:23pm
MS, w3schools, 4guysfromrolla, and other learning sites all have turorials. Chilikat also has a free asp xml parser.
-------------
Lead me not into temptation... I know the short cut, follow me.
|
Posted By: huwnet
Date Posted: 19 May 2004 at 1:03pm
|
I am trying to use the MSXML parser. I can't find a complete ASP script for reading XML and then displaying it.
|
Posted By: huwnet
Date Posted: 19 May 2004 at 3:24pm
|
Could someone basically give me an example XML script and then an ASP script for reading the xml.
|
Posted By: michael
Date Posted: 19 May 2004 at 5:06pm
<?xml version="1.0"?> <root> <name>huwnet</name> <root>
|
Set xml = Server.CreateObject("Microsoft.XMLDOM") xml.async = False xml.load (Server.MapPath("yourxmlfile.xml")) Response.Wrtite xml.documentElement.childNodes(0).text Set xml = Nothing
|
------------- http://baumannphoto.com" rel="nofollow - Blog | http://mpgtracker.com" rel="nofollow - MPG Tracker
|
Posted By: pmormr
Date Posted: 19 May 2004 at 10:14pm
|
Mart wrote:
To parse XML |

------------- Paul A Morgan
http://www.pmorganphoto.com/" rel="nofollow - http://www.pmorganphoto.com/
|
Posted By: huwnet
Date Posted: 20 May 2004 at 12:12pm
michael wrote:
<?xml version="1.0"?><root> <name>huwnet</name><root> |
Set xml = Server.CreateObject("Microsoft.XMLDOM")xml.async = Falsexml.load (Server.MapPath("yourxmlfile.xml"))Response.Wrtite xml.documentElement.childNodes(0).textSet xml = Nothing |
|
Microsoft VBScript runtime error '800a01a8'
Object required: 'xml.documentElement'
/xml.asp, line 5
Spelling!
|
Posted By: huwnet
Date Posted: 20 May 2004 at 12:15pm
Posted By: michael
Date Posted: 22 May 2004 at 11:12am
well is just a gudieline, never tested it. should just give you an idea.... didn't do any asp in over a year.
------------- http://baumannphoto.com" rel="nofollow - Blog | http://mpgtracker.com" rel="nofollow - MPG Tracker
|
|