if (count == null) count = new Integer(0);
elementCounts.put(qname, new Integer(count.intValue() + 1));
Deserializer dser = param.getDeserializer(count.intValue());
// Got a recognized param, so feed this through the deserializer
try {
dserContext.deserialize(arg.getXMLStreamReader(), dser);
} catch (Exception e) {
throw AxisFault.makeFault(e);
}
}