Ciao a tutti, è possibile ottenere con qualche funzione xsl
il "path" di un nodo? per esempio, ho un xml fatto così

codice:
<root>
<item id="1">
	<item id="2">
	</item>
	<item id="3">
		<item id="4">
		</item>
	</item>
</item>
</root>
come faccio ad ottenere il path dell'item con id=4? (path 1/3/4)
basterebbe concatenare gli id degli ancestor?