ObtainingDataGraphFromXml, and maybe other samples, incorrectly accessing
xsd:any content
-----------------------------------------------------------------------------------------
Key: TUSCANY-1127
URL: https://issues.apache.org/jira/browse/TUSCANY-1127
Project: Tuscany
Issue Type: Bug
Components: Java SDO Samples
Affects Versions: Java-SDO-M3
Reporter: Frank Budinsky
Fix For: Java-SDO-M3
The ObtainingDataGraphFromXml sample includes the following:
// Obtain the company DataObject from the DataObject representing
the datagraph
Sequence mySeq = (Sequence)
dataObjectRepresentingDataGraph.getSequence("any");
company = (DataObject) mySeq.getValue(0);
1) the "any" property is an EMF-specific thing that was never defined in the
SDO spec.
2) TUSCANY-521 will be removing the special Sequence-type properties, which
will break this sample.
This needs to be change to use the proper SDO2 API:
company = dataObjectRepresentingDataGraph.getDataObject("company");
Any other samples that call get() and expect it to return a Sequence also need
to be changed.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]