Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-08 Thread kelvin goodson
It appears we do some renaming in Java. The schema http://www.bigbank.com/AccountService"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";> and the code public static void main(String[] args) throws FileNotFoundException { File inputFile = new File("src/ma

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-07 Thread Jean-Sebastien Delfino
Pete Robbins wrote: I'll need to check but it will either be a) exception when adding the 2nd type of the same name... or b) 2nd Definition replaces first... or c) properties of 2nd definition are added to that of the first. Or... none of the above! What do you think the correct behaviour shoul

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-07 Thread Pete Robbins
I'll need to check but it will either be a) exception when adding the 2nd type of the same name... or b) 2nd Definition replaces first... or c) properties of 2nd definition are added to that of the first. Or... none of the above! What do you think the correct behaviour should be? What would Java

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-07 Thread Jean-Sebastien Delfino
Pete Robbins wrote: In your example below the is anonymous (does not specify name=) therefore the SDO Type takes the name of the enclosing element. So the SDO Type will have Uri=http://www.bigbank.com/AccountService and Name=getAccountReportResponse Cheers, On 05/08/06, Jean-Sebastien Delfino

Re: [C++] How to create an SDO DataObject representing an XSD element

2006-08-04 Thread Pete Robbins
In your example below the is anonymous (does not specify name=) therefore the SDO Type takes the name of the enclosing element. So the SDO Type will have Uri=http://www.bigbank.com/AccountService and Name=getAccountReportResponse Cheers, On 05/08/06, Jean-Sebastien Delfino <[EMAIL PROTECTED]>

[C++] How to create an SDO DataObject representing an XSD element

2006-08-04 Thread Jean-Sebastien Delfino
Most Web Services describe their inputs and outputs with XSD elements, so I'm trying to understand how to create an SDO DataObject for such a Web Service... (I'm using the BigBank scenario to experiment with that). Here's the XSD defining the output of my Web Service: http://www.bigbank.com/Acc