I have an XML file as follows:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<CustomObject>
</CustomObjects>
I apply the XMLTask attr in the following way:
<attr path="/CustomObject" attr="xmlns" value="test"/>
I expect the XML file to now include the attribute xmlns
with the value "test"
The actual output is as follows:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<CustomObject xmlns="">
</CustomObjects>
Has anyone ran into this problem before? or has any indication as what may be the problem?