On Mon, Jun 7, 2010 at 15:28, Marc Logghe <[email protected]> wrote: > > Hi, > > Consider the following complex type: > > <xs:complexType name='loadGenBankData'> > > <xs:sequence> > > <xs:element minOccurs='0' name='arg0' type='xs:int'/> > > </xs:sequence> > > </xs:complexType> > > minOccurs=0 means that arg0 is optional. I believe what you want here is maxOccurs="unbounded" to allow more than 1 (the default).
If you do, then you should be able to pass a list to arg0, instead of having multiple invocations of the XML splitters (which gave you the list you described). -- Stian Soiland-Reyes, myGrid team School of Computer Science The University of Manchester ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ taverna-users mailing list [email protected] [email protected] Web site: http://www.taverna.org.uk Mailing lists: http://www.taverna.org.uk/about/contact-us/
