For Programmers: Free Programming Magazines  


Home > Archive > ASP > August 2007 > Accesing version controlled files using asp scripts









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Accesing version controlled files using asp scripts
tarundevnani@gmail.com

2007-08-14, 3:59 am

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?

Anthony Jones

2007-08-14, 6:56 pm

<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


Cortneys

2007-08-20, 5:31 am

Young Natasha is used in all holes! Click the picture to watch for free!
http://shocking-p0rn-videos.info/thumb.jpg








More videos:
Links to here homosexual original shirt sold
free gay bareback video
Links to homosexual video
free gay military video
Amateur gay videos from Zaza
vin diesel homosexual
Links to homosexual pic
Amateur gay videos from Emdegh5
Links to homosexual video
Amateur gay videos from Pune
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com