Ciao a tutti!

il problema è costruire un file xsl per fare delle operazione su di un file xml generato da ADO nel modo.

codice:
    Recordset.Save objXMLDOM, adPersistXml
il file xml così generato è strutturato così:

codice:
<?xml version='1.0' encoding='ISO-8859-1'?>
<xml xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema">
	<s:Schema id="RowsetSchema">
		<s:ElementType name="row" content="eltOnly">
			<s:AttributeType name="FATTURA" rs:number="1" rs:nullable="true" rs:writeunknown="true">
				<s:datatype dt:type="string" dt:maxLength="8"/>
			</s:AttributeType>
			<s:AttributeType name="DATA_DOC" rs:number="2" rs:nullable="true" rs:writeunknown="true">
				<s:datatype dt:type="dateTime" rs:dbtype="timestamp" dt:maxLength="16" rs:scale="0" rs:precision="19" rs:fixedlength="true"/>
			</s:AttributeType>
.
.
.
il problema è: come posso fare riferimento al nodo s:Schema per esempio??
il fatto che mi incasina è che vengopno usati dei namespace!!

grazie!!