<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  >

<xsl:template match="/*">
  <rdf:RDF>
    <xsl:for-each select="*">
      <xsl:copy-of select="*"/>
    </xsl:for-each>
  </rdf:RDF>
</xsl:template>
</xsl:stylesheet>