Hi, 

Thanks for your reply Dan!

I'm using Apache Axis 2.2.10. It seems like the error has something to do
with the following part of the WSDL file:  

<xsd:simpleType name="CtItems">
   <xsd:list itemType="xsd:integer" />
</xsd:simpleType>

The generated Java code uses BigInteger[] and seems fine but unfortunately
does not work. Now I am using a different approach like this (just want to
transfer a list of integers):

<xsd:complexeType name="CtItems">
   <xsd:sequence>
       <xsd:element name="value" type="xsd:integer" maxOccurs="unbound"
minOccurs="0" />
    </xsd:sequence>
</xsd:complexeType> 

I can send you a fully working test case in form of a HelloWorld program but
it will take until monday. 

-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/ClassCastException-while-working-with-Lists-tp2843423p2844006.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to