Hi guys,
I am having an issue with the exclude-result-prefixes functionality it xslt.
I am including an fpml library in my code.. but every fpml elelemnt comes with the
web site after it.
ie
Code:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fpml="http://www.fpml.org/2008/FpML-4-5"
exclude-result-prefixes="fpml" >
But I am still getting the following
- <fpml:trade xmlns:fpml="http:=//www.fpml.org/2008/FpML-4-5">
when what i really want is
- <fpml:trade>
Code:
<xsl:element name ="fpml:trade">
I have added the exclude_result_prefix.. but it just will not go away......
Can I have some advice please
thanks