04-19-2018 03:28 PM
Hi,
The LLbmHubGroup schema is the following:
<xsd:complexType name="LLbmHubGroup">
<xsd:sequence minOccurs="0">
<xsd:element maxOccurs="1" minOccurs="0" name="name" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="description" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member1" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member2" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member3" type="xsd:string"/>
</xsd:sequence>
<xsd:attribute name="uuid" type="axlapi:XUUID"/>
</xsd:complexType>
We can compare this to the RLbmHubGroup schema:
<xsd:complexType name="RLbmHubGroup">
<xsd:sequence minOccurs="0">
<xsd:element maxOccurs="1" minOccurs="0" name="name" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="description" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member1" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member2" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="member3" type="xsd:string"/>
<xsd:element maxOccurs="1" minOccurs="0" name="members">
<xsd:complexType>
<xsd:sequence minOccurs="0">
<xsd:element maxOccurs="unbounded" minOccurs="0" name="member" type="axlapi:RProcessNodes"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="uuid" type="axlapi:XUUID"/>
</xsd:complexType>
For some reason, the list response definition just removes the members detail in RProcessNodes
Can anyone explain this to me? I think this is also a bug?
Solved! Go to Solution.
04-19-2018 06:10 PM
I suspect this is a performance optimization when doing the list and if you want the details, you need to query for the specific item.
04-19-2018 06:10 PM
I suspect this is a performance optimization when doing the list and if you want the details, you need to query for the specific item.
04-20-2018 06:57 AM
OK, not the answer I wanted, but makes sense...
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide