xslt transformation of xml file retrieved from web site
i want to apply xslt transformation to a xml file , retrieved from another web server (web site). i dont know how to do this in umbraco. here is my xslt.
The bold parts are what you need to change depending on your XML source - "20" is a cache duration (so Umbraco won't load the document from the server all the time - it's measured in seconds if I remember correct).
xslt transformation of xml file retrieved from web site
i want to apply xslt transformation to a xml file , retrieved from another web server (web site). i dont know how to do this in umbraco. here is my xslt.
<xsl:template match="/"> <ul> <xsl:for-each select="result/job"> <li> <xsl:value-of select="category"/> </li> </xsl:for-each> </ul>
and source of the xml file will be like this.
http://www.somesite.com/xml.aspx
i am totally new at umbraco
Hi nnp,
Here's the most basic way to do it:
/Chriztian
is working on a reply...