Description
Currently, properties of endpoints gets serialize before definition of endpoint
like:
<endpoint>
<property name="a" value="x"/>
<property name="b" value="y"/>
<address url="http://localhost:9000"/>
</endpoint>
Ideally properties should serialized after endpoint definition.
like:
<endpoint>
<address url="http://localhost:9000"/>
<property name="a" value="x"/>
<property name="b" value="y"/>
</endpoint>