XML has a built in HTTPRequest to access XML document anywhere here is some code that will get an XML document and display the contents.
<%option explicit%>
<%
on error resume next
' Set the source and stylesheet locations here
dim sourceCategory
dim sourceFile
dim styleFile
dim source
dim style
dim result
sourceCategory = Request.QueryString("c"

If sourceCategory = "" Then
sourceCategory = "Videogame news"
End If
sourceFile = "
& sourceCategory & "&o=xml"
styleFile = "
' Load the XML
Set source = Server.CreateObject("Msxml2.DOMDocument.3.0"

source.async = false
source.setProperty "ServerHTTPRequest", true
source.load sourceFile
' Load the XSL
Set style = Server.CreateObject("Msxml2.DOMDocument.3.0"

style.async = false
style.setProperty "ServerHTTPRequest", true
style.load styleFile
'Check for errors - Display errors or perform the transformation and output the results.
If source.parseError.errorCode Then
result = "source error: " & source.parseError & " --"
Else
If style.parseError.errorCode Then
result = "style error " & style.parseError & "//-->"
Else
result = source.transformNode(style)
End If
End If
Response.Write result
if isObject(source) then set source = nothing
if isObject(style) then set style = nothing
if err.number <> 0 then
response.write err.Description
end if
%>
you should be able to cut and paste this code and run it,
but you can replace "sourceFile" and "styleFile" with your own, for personal testing. Megalene
If you crap it will stink!