Salve a tutti.......... ho poca dimestichezza con i feed rss ma avrei trovato questo script già pronto:

codice:
'Utilizzo oggetto DOM per caricare il file xml (feed rss)
Set objXML = Server.CreateObject("msxml2.DOMDocument.3.0")

objXML.async = false
objXML.setProperty "ServerHTTPRequest", True
objXML.validateOnParse =false
objXML.preserveWhiteSpace = false

caricoFile = objXML.Load("http://www.miositodelrss.it/index.php?format=feed&type=rss&lang=it")

' Controllo se e' stato caricato il file
If Not caricoFile Then
' In caso di errore avviso quale errore si e' verificato
Response.write "

Errore
: " & objXML.parseError.errorCode & "
"
Response.Write "Linea: " & objXML.parseError.line & "/"
Response.WRite "Colonna: " & objXML.parseError.linepos & "</p>"
Else
' In caso non vi sia nessun errore, proseguo e carico le info del file xml (feed rss)
Set Nodo = objXML.getElementsByTagName("item")

For Each objNodi In Nodo
' Sfoglio i nodi
For Each objNodo In objNodi.childNodes
Select Case objNodo.nodeName
Case "title"
titolo = objNodo.firstChild.nodevalue
Case "link"
link = objNodo.firstChild.nodevalue
Case "description"
descrizione = objNodo.firstChild.nodevalue
Case "dc:date"
data = objNodo.firstChild.nodevalue
data = Replace(data,"T"," alle ")
data = Replace(data,"+00:00","")
End Select

Next

' VISUALIZZO LA NOTIZIA
Response.write ("[*]<a href=""" & link & """ title=""Leggi: " & titolo & " - Autore: Io"" target=""_blank"">")
Response.Write (titolo & "</a> <font color=""#CCCCCC"">" & data & "</font>
" & descrizione & " (Leggi tutto...)")

Next

set Nodo = Nothing
End if
%>
però mi dà questo errore:

Errore
: -2147012867
Linea: 0/Colonna: 0

cosa è questo errore??

come risolverlo??