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

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -