Quote:
Originally Posted by joefawcett
Your transform is almost there but the name attribute of xsl:element expects a literal string so to use a dynamic path you need to surround it with curly braces:
Code:
<xsl:elementname="{local-name()}" >
May I ask why you need this transformation? The request to change an element by removing its namespace is ususally a sign of problems elsewhere.
|
Thanks for immediate reply friend
I tried with what you said about curly braces
But I get the same error as :
Failed to Load SourceXML to DOM: Reference to undeclared namespace prefix: 'UDF'.
Line 198, Position 96
but if I remove maually UDF: name space prefix then it works fine with my application
I require this tansformation for convertion of Voucher Type form One company to Other in Tally Software (an Accounting package)
Tanks & Regards