Default namespace & complex package/data structure
问题 I need create/read xml file using default namespace: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <xmlBoo xmlns="http://www.example2.org/boo"> <customer> <address> <street>Wall Street</street> </address> <id>1</id> <name>John</name> </customer> <someSpecificField>Specific data in Boo</ns2:someSpecificField> </xmlBoo> but I'm getting: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:xmlBoo xmlns:ns2="http://www.example2.org/boo"> <ns2:customer> <address> <street>Wall