<div>Hi,</div>
<div> </div>
<div>I am a new user of Kepler. We have a set of 2-dimensional data that served by a PHP SOAP server. The format of the data is like:</div>
<div> </div>
<div>Time   outTemperate  inTemperate</div>
<div>123     91.1                71.8</div>
<div>124     92.2                72.5</div>
<div> </div>
<div>The WSDL's data format is defined as:</div>
<div><xsd:complexType name="RecordType"><br>    <xsd:sequence><br>        <xsd:element name="values" type="xsd:float" minOccurs="0" maxOccurs="unbounded"></div>

<div>        </xsd:element><br>    </xsd:sequence><br></xsd:complexType><br><br><xsd:complexType name="ArrayOfRecords"><br>    <xsd:sequence><br>             <xsd:element name="item" minOccurs="0" maxOccurs="unbounded" type="tns:RecordType"></div>

<div>             </xsd:element><br>     </xsd:sequence><br></xsd:complexType></div>
<div> </div>
<div>A web service function outputs data of the type ArrayOfRecords defined in this WSDL. </div>
<div> </div>
<div> </div>
<div>I tried to WsWithComplexType in Kepler. When I directly hook up the output the the display, the output is like:</div>
<div> </div>
<div>{<?xml version="1.0"?><item xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a>" xsi:type="ns2:RecordType1"><values xsi:type="xsd:float">1277823600</values><values xsi:type="xsd:float">86.400002</values><values xsi:type="xsd:float">73.800003</values></item>, <?xml version="1.0"?><item xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a>" xsi:type="ns2:RecordType1"><values xsi:type="xsd:float">1277823900</values><values xsi:type="xsd:float">86.5</values><values xsi:type="xsd:float">74</values></item>, .....}</div>

<div> </div>
<div>I can use arrayToSequence actor to split those xml tokens to sequnce. But I do not know how to convert them to arrays. I tried xml disassembler  but no success. </div>
<div> </div>
<div>Could anyone give me a suggestion on how to let WSDL and Kepler handler the multi-dimensional arrays?</div>
<div> </div>
<div> </div>