Hi, I got such problem with importNode, when try to import a Node from one Document into another.
DocumentA <?xml version='1.0' encoding='utf-8'?><m:root xmlns:m='TEST'><m:s>TEST</m:s></m:root> DocumentB: <?xml version='1.0' encoding='utf-8' ?><n:root xmlns:n='TEST'><n:t>TEST</n:t></n:root> I try to import m:s in DocumentA into DocumentB, and replace n:t Node expected: <?xml version='1.0' encoding='utf-8' ?><n:root xmlns:n='TEST'><n:s>TEST</n:s></n:root> but the result was: <?xml version='1.0' encoding='utf-8' ?><n:root xmlns:n='TEST'><m:s>TEST</m:s></n:root> Can somebody tell me why?
