|
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
|