I'm running the line of code below:
SDOUtil.saveDataGraph(eventGraph, System.out, null);
Of which outputs:
<?xml version="1.0" encoding="ASCII"?>
<sdo:datagraph xmlns:sdo="commonj.sdo">
<changeSummary xmlns=""
logging="true">
<resourceChanges resourceURI="root.xml"/>
</changeSummary>
<event_._type uid="1">
<point lat="90" lon="180" hae="10000"/>
</event_._type>
</sdo:datagraph>
However, I'd like to see the changes actually in the output XML
(instead of inside the root.xml file) since I'm trying to send this
over SOAP. Is this an option that I can specify somewhere? Or is
there a better way to send a DataGraph over SOAP?
Thanks,
Charles