I am creating an MXL doc using XSLT but for some reason it is churning out elements like this
Expand|Select|Wrap|Line Numbers
<DateTimeLastSaved xmlns="" />
<UserName xmlns="" />
when I delete xmlns="" it works fine, but if I leave it in there are issues reading/saving the file. Is there any way to remove this xmlns="" in the xslt?
When you are creating the elements, you need to have the same namespace as the parent elements (xmlns = XMLNameSpace) . Add the parent's namespace to those elements when you are creating it.
I noticed that people were able to solve this problem here, I just hope that re-using this thread will get me a responce here.... I have the same problem, where my xslt is producing elements but all with xmlns="" in them, and when I remove it manually my code works fine, but just using the raw output my code falls over... would anyone be able to help me?