If I have a bean that contains an array of another bean, when I write out the XML, there is an additional element name added.
For instance.
public class ObjectTypes {
private ObjectType[] object
....
}
The writer will output
<ObjectTypes>
<Object>
<Object>
.....
I don't seem to see a way to fix this.
~Rik
