11-24-2012 05:50 AM
<multiple>true</multiple>
and im trying to access and iterate it from a webscript with no sucess. The aspect is defined as:
<aspect name="building:actions">
<properties>
</property>
<property name="building:need">
<type>d:boolean</type>
</property>
</property>
<property name="building:worker">
<type>d:text</type>
</property>
<property name="building:floor">
<type>d:text</type>
<multiple>true</multiple>
</property>
<property name="building:action">
<type>d:text</type>
<multiple>true</multiple>
</properties>
</aspect>
and my webscript:
${result.properties['building:need']?string} // works
${result.properties['building:worker']} //works
${result.properties['building:floor(0)']} // doesnt work
${result.properties['building:floor[0]']} // doesnt work
Right now i cant even access a single element directly, so i cant try to iterate it 😞11-25-2012 10:02 AM
${result.properties['building:floor'][0]} // should work
11-25-2012 11:47 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.