Hi,
lets say we have an xml like:
…
<someKey>
<key1>1</key1>
</somekey>
<someKey>
<key1>2</key1>
</somekey>
…
so we want to get a collection of soemKey values instead of only one. I created typical xsd schema like:
…
<xs:element name=\”someKey\”>
<xs:complexType>
<xs:sequence>
<xs:element name=\”key1\” type=\”xs:int\” />
</xs:sequence>
</xs:complexType>
</xs:element>
…
If I try to access xml message in expression shape, i get only the last key1 value. How to get all values ? Should I change the xsd schema ? There is no error but as I said, only last value is accessible.
Thanks