WebServices V2 Connector > Introduction to Web Services V2 Connector > General Assumptions Made in the Connector
  

General Assumptions Made in the Connector

For example, the below mentioned type of complex schema is not supported.
<complextype name="TaskInstanceInfoArray">
<sequence>
<element name="TaskInstanceInfo" minOccurs="0" maxOccurs="unbounded" type="impl:TaskInstanceInfo" />
</sequence>
</complextype>
<complextype name="TaskInstanceInfo">
<sequence>
<element name="Name" type="xsd:string" />
<element name="Type" type="xsd:string" />
<element name="ChildTask" minOccurs="0" maxOccurs="unbounded" type="impl:TaskInstanceInfo" />
<element name="IsValid" type="xsd:boolean" />
</sequence>
</complextype>
Note: The element TaskInstanceInfo is self-referencing itself.