Namespace is different for derived types in generated xml form xmlbean -
generated xml form schema formed.
like:
<tns:scommand xmlns:tns="https/bla/bla/command" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"> <tns:command xsi:type="tns:mycommand">
while construction xml form java code(xmlbeans) namespace derived type different
ex:
commandtype ct = mycommand.factory.newinstance();
the xml
<myc:command xsi:type="mycommand" xmlns:myc="https/bla/bla/command">
the name space miss matching schema after generating xml form xmlbeans. prefix different , uri adding. how resolve this?
Comments
Post a Comment