Code Comments
Programming Forum and web based access to our favorite programming groups.I have a file named file1.xml also under C:/tarun/file1.xml
file1.xml looks like:-
<?xml version="1.0" encoding="UTF-8" ?>
- <elemNames>
<name>elem1</name>
</elemNames>
Method 1:
ASP Script
set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("C:/tarun/file1.xml")
NumberOfBuilds = xmlDoc.getElementsByTagName("name").length
Response.write(NumberOfBuilds)
The return value from the previous statement is 1 as there is an
element named 'elem1' with tagName 'name' in file1.xml
Method 2:
I version controlled 'file1.xml' using 'Rational Clear Case' on some
server. (Say the name of the server is 'abc.xyz.com'). I have a file
under 'tarun/file1.xml' on it.
I am able to open the file, file.xml in the broswer (IE) using the
following link:
http://abc.xyz.com/tarun/file1.xml
ASP Script:-
set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("http://abc.xyz.com/tarun/file1.xml")
NumberOfBuilds = xmlDoc.getElementsByTagName("name").length
Response.write(NumberOfBuilds)
The retun value from the previous statement is 0 but I expect it to be
1 as there is an element named 'elem1' with tagName 'name' in
file1.xml
Question:
What is the issue with Method 2. Can any one help?
Post Follow-up to this message<tarundevnani@gmail.com> wrote in message
news:1187070385.888880.219380@g12g2000prg.googlegroups.com...
> I have a file named file1.xml also under C:/tarun/file1.xml
>
> file1.xml looks like:-
>
> <?xml version="1.0" encoding="UTF-8" ?>
> - <elemNames>
> <name>elem1</name>
> </elemNames>
>
> Method 1:
>
> ASP Script
>
> set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
> xmlDoc.async="false"
> xmlDoc.load("C:/tarun/file1.xml")
> NumberOfBuilds = xmlDoc.getElementsByTagName("name").length
>
> Response.write(NumberOfBuilds)
>
> The return value from the previous statement is 1 as there is an
> element named 'elem1' with tagName 'name' in file1.xml
>
> Method 2:
>
> I version controlled 'file1.xml' using 'Rational Clear Case' on some
> server. (Say the name of the server is 'abc.xyz.com'). I have a file
> under 'tarun/file1.xml' on it.
>
> I am able to open the file, file.xml in the broswer (IE) using the
> following link:
> http://abc.xyz.com/tarun/file1.xml
>
> ASP Script:-
>
> set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
> xmlDoc.async="false"
> xmlDoc.load("http://abc.xyz.com/tarun/file1.xml")
> NumberOfBuilds = xmlDoc.getElementsByTagName("name").length
>
> Response.write(NumberOfBuilds)
>
> The retun value from the previous statement is 0 but I expect it to be
> 1 as there is an element named 'elem1' with tagName 'name' in
> file1.xml
>
> Question:
> What is the issue with Method 2. Can any one help?
>
Try this:-
Set xmlDoc = Server.CreateObject("MSXML2.DOMDocument.3.0")
xmlDoc.setProperty "ServerHTTPRequest", True
xmlDoc.async = False
xmlDoc.load "C:/tarun/file1.xml"
If xmlDoc.parseError.errorCode = 0 Then
Response.Write xmlDoc.getElementsByTagName("name").length
Else
Response.Write xmlDoc.parseError.reason
End If
--
Anthony Jones - MVP ASP/ASP.NET
Post Follow-up to this messageYoung Natasha is used in all holes! Click the picture to watch for free! [IMG]http://shocking-p0rn-videos.info/th umb.jpg[/IMG] More videos: Links to here homo sexual original shirt sold free gay barebac k video Li nks to homosexual video free gay military video[/UR L] [URL=http://oceanic.wsisiz.edu.pl/~waskowie/forum/viewtopic.php?p=370871]Amateur g ay videos from Zaza vin diesel homosexual[/ URL] [URL=http://me.emu.edu.tr/asme/forum/viewtopic.php?p=11337]Links to homosexual pic Amateur g ay videos from Emdegh5 Links to homosexual video[/UR L] [URL=http://student.educ.umu.se/~joshio03/sda07v03/phpBB2/viewtopic.php?p=14079]Am ateur gay videos from Pune
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.