I need to produce an "empty" field in my marshalled XML to look something like
this:
<rpc>
<edit>
<target>
<running/>
</target>
<other>
<notempty>av</notempty>
</other>
</edit>
</rpc>
How can I get the output for "target" to occur using a mapping file? I CAN get
target to appear by using a standard mapping of:
<field name="javaParameter" type="whatever">
<bind-xml name="running" location="edit/target" node="element"/>
</field>
of course this produces:
<target>somevalue</target>
Any help is appreciated!
Regards,
Kurt