FreeOpcUa / opcua-modeler

GUI to create OPC UA models and export them as XML
GNU General Public License v3.0
244 stars 89 forks source link

Wrong XML export of UAReferenceType #44

Closed Stasik0 closed 7 years ago

Stasik0 commented 7 years ago

Hi,

XML the export of UAReferenceType is serialized like this

<DisplayName></DisplayName>
<InserseName></InverseName>
<References></References>

however UANodeSet.xsd requires the following order:

<DisplayName></DisplayName>
<References></References>
<InserseName></InverseName>
oroulet commented 7 years ago

that should fix it: https://github.com/FreeOpcUa/python-opcua/pull/438

oroulet commented 7 years ago

thanks for reporting