Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 535.7K On-Premises Infrastructure
- 138.1K Analytics Software
- 38.6K Application Development Software
- 5.6K Cloud Platform
- 109.3K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71K Infrastructure Software
- 105.2K Integration
- 41.5K Security Software
ArrayElements and EmbeddedAttributes

3004
Member Posts: 204,171 Green Ribbon
In a type definiation file, how do you describe an array of embedded attibute objects?
Related, in an XML instance of the above, how do you describe an array of those embedded attributes?
For the later, I tried something like the following, but it fails:
<?xml version = '1.0' encoding = '8859_1' standalone = 'yes'?>
<MyDocumentType>
<Name>FooInstance</Name>
<FolderPath>/public/</FolderPath>
<MyArrayOfEmbeddedTypes>
<ArrayElement>
<MyEmbeddedType>
<FieldName>Title</FieldName>
</MyEmbeddedType>
</ArrayElement>
<ArrayElement>
<MyEmbeddedType>
<FieldName>Title</FieldName>
</MyEmbeddedType>
</ArrayElement>
</MyArrayOfEmbeddedTypes>
</MyDocumentType>
null
Related, in an XML instance of the above, how do you describe an array of those embedded attributes?
For the later, I tried something like the following, but it fails:
<?xml version = '1.0' encoding = '8859_1' standalone = 'yes'?>
<MyDocumentType>
<Name>FooInstance</Name>
<FolderPath>/public/</FolderPath>
<MyArrayOfEmbeddedTypes>
<ArrayElement>
<MyEmbeddedType>
<FieldName>Title</FieldName>
</MyEmbeddedType>
</ArrayElement>
<ArrayElement>
<MyEmbeddedType>
<FieldName>Title</FieldName>
</MyEmbeddedType>
</ArrayElement>
</MyArrayOfEmbeddedTypes>
</MyDocumentType>
null
Comments
-
I think this thread will answer most of your questions
http://technet.oracle.com:89/ubb/Forum36/HTML/000184.html
This discussion has been closed.