Cannot find a script or an extension object associated with namespace 'urn:cultiv.restcontour'.
Hi, I'm getting the following error when trying to save an XSLT, I've added the appropriate lines to the restExtensions.config. Any idea what might be wrong?
Cannot find a script or an extension object associated with namespace 'urn:cultiv.restcontour'.
Must admit that I have not been using this package myself but I have a suspicion that you need to add the namespace in your XSLT file in the <xsl:styleseet> element, like xmlns:msxml="urn:schemas-microsoft-com:xslt" and others have been. So try doing this...
xmlns:cultiv.restcontour="urn:cultiv.retcontour"
remember to exclude the prefix by adding it to the exclude-result-prefixes attribute like "umbraco.library" has been.
Also be aware that the prefix I've provided above "cultiv.restcontour" could be different. I suppose you're perhaps using a prefix to an extension in the xslt which could be starting with "Cultiv"...in that case you should probably use that as the prefix.
Hope I'm not making an air ball with this answer :)
Cannot find a script or an extension object associated with namespace 'urn:cultiv.restcontour'.
Hi, I'm getting the following error when trying to save an XSLT, I've added the appropriate lines to the restExtensions.config. Any idea what might be wrong?
Cannot find a script or an extension object associated with namespace 'urn:cultiv.restcontour'.
Thanks!
Amir
Hi Amir
Must admit that I have not been using this package myself but I have a suspicion that you need to add the namespace in your XSLT file in the <xsl:styleseet> element, like xmlns:msxml="urn:schemas-microsoft-com:xslt" and others have been. So try doing this...
xmlns:cultiv.restcontour="urn:cultiv.retcontour"
remember to exclude the prefix by adding it to the exclude-result-prefixes attribute like "umbraco.library" has been.
Also be aware that the prefix I've provided above "cultiv.restcontour" could be different. I suppose you're perhaps using a prefix to an extension in the xslt which could be starting with "Cultiv"...in that case you should probably use that as the prefix.
Hope I'm not making an air ball with this answer :)
/Jan
is working on a reply...