Re: [svg-developers] parseXML doesnt split up XML nodes

2005-10-17 Thread Olaf Schnabel
Hi nasenma25 In my opinion you get the root element back, if you ask for xmldoc.childNodes. Try xmldoc.documentElement.childNodes; > var xmldoc = parseXML(obj.content); > var nodes = xmldoc.childNodes; > alert("ln: "+nodes.length)

Re: [svg-developers] parseXML doesnt split up XML nodes

2005-10-17 Thread Peter Thompson
I think that you need to Response.write something like "" after you set the content type but before Response.write mydoc.xml (to make what you send be a valid XML document). I've only done this in Java, so I may not be correct for ASP. Depending on your application, you may be able to test se

[svg-developers] parseXML doesnt split up XML nodes

2005-10-17 Thread nasenma25
I am on a project reading Data from an Access DB with some Serverside ASP code, putting it into an XML and sending to to a clientside SVG. The XML data created by the ASP code displays OK so far in my IE when calling the page directly. But when i pass the ASP XML Output to my SVG i just get 1 bi