Hi guys,
I have a WSDL with a complexType which itselt contains complexTypes. It
looks like this:
...
<xs:complexType name="storeData">
<xs:sequence>
<xs:element minOccurs="0" name="allResults" type="tns:results"/>
... some other stuff ...
</xs:sequence>
</xs:complexType>
<xs:complexType name="results">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="toolResultsList"
nillable="true" type="tns:toolResults"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="toolResults">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="field"
nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
...
storeData is my SOAP operation. Now, soapUI generates this request (and
the service is working):
<soapenv:Envelope ...>
<soapenv:Header/>
<soapenv:Body>
<res:storeData>
<allResults>
<toolResultsList>
<!--Zero or more repetitions:-->
<field>here my tool result</field>
</toolResultsList>
</allResults>
... other stuff ...
</res:storeData>
</soapenv:Body>
</soapenv:Envelope>
Unfortunately, in Taverna 2.2, I cannot get through to the actual
field-elements. The XML input splitter gives me "allResults", and
another splitter on top of it still has "allResults" as its input port.
Can I use such nested types in Taverna somehow?
Regards,
Dennis
------------------------------------------------------------------------------
AppSumo Presents a FREE Video for the SourceForge Community by Eric
Ries, the creator of the Lean Startup Methodology on "Lean Startup
Secrets Revealed." This video shows you how to validate your ideas,
optimize your ideas and identify your business strategy.
http://p.sf.net/sfu/appsumosfdev2dev
_______________________________________________
taverna-hackers mailing list
[email protected]
Web site: http://www.taverna.org.uk
Mailing lists: http://www.taverna.org.uk/about/contact-us/
Developers Guide: http://www.taverna.org.uk/developers/