View Single Post
  #3 (permalink)  
Old 11-28-2009, 10:42 PM
mpouly mpouly is offline
Member
 
Join Date: Nov 2009
Posts: 3
Rep Power: 0
mpouly is on a distinguished road
Smile
I made both of your suggestions but the error still exists. I don't know if it is there the problem, I guess the problem is somewhere in these 2 lines. Is the registerTypeMapping I am using correct?

call.registerTypeMapping(ArrayList.class, XMLType.SOAP_ARRAY, new ArraySerializerFactory(), new ArrayDeserializerFactory());

call.addParameter("x", XMLType.SOAP_ARRAY, ParameterMode.IN);


Moreover, the compiler doesn;t accept to write
List<Integer> aList = new ArrayList<Integer>();
but only accepts
List aList = new ArrayList();
do you know why?

Thank you in advance
Reply With Quote