From: <ale...@jb...> - 2005-08-04 14:26:03
|
AFAICS in our testsuite, when I see a type in an XSD defined following this 'array' template, it's not necessarily bound to an array in Java. For example. testsuite/src/resources/webservice/marshalltest-doclit/META-INF/wsdl/MarshallDocLitService.wsdl | <complexType name="LongArr"> | <sequence> | <element name="longArr" type="long" minOccurs="0" maxOccurs="unbounded"/> | </sequence> | </complexType> | Isn't this TYPE bound to a class that wrapps the array? | package org.jboss.test.webservice.marshalltest.types; | | public class LongArr | { | private long[] longArr; | | public LongArr() | { | } | | public LongArr(long[] longArr) | { | this.longArr = longArr; | } | ... | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3888450#3888450 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3888450 |