Hello I have a Document/Literal web service with some complex types, such as this: <complexType name="ArrayOfint"> <complexContent> <restriction base="SOAP-ENC:Array"> <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="xsd:int[]"/> </restriction> </complexContent> </complexType>
Some methods return Arrayofint where expected, but the problem is that I cannot access the elements inside this ArrayofInt. ArrayofInt doesn't expose any 'Array' methods or logic. Definition of ArrayOfint: public interface ArrayOfint extends org.xmlsoap.schemas.soap.encoding.Array Is Axis2 failing at mapping the complex types? I can use all other methods at the web service that doesn't include these complex types. Bård.