webservice已经ok了  但是现在在客户端调用的时候才发现数据类型是map。为了不修改webservice能否在客户端修改配置,使其能够支持返回的数据类型为map,请高手们指点下能否配置,如果能配置的话,那么需要怎样配置。给出相关代码
public Map<String, Object> getCimServiceconfirmByCustCode(String customercode) {
Map<String, Object> result=new HashMap<String, Object>();
String o=null;
try {
Map<String, QName> para=new HashMap<String, QName>();
para.put("customercode", org.apache.axis.encoding.XMLType.XSD_STRING);
Object[] values=new Object[]{customercode};
o=(String)WsUtils.getCall(
WsUtils.getUrl("customerserver"),
"getSCByCustCode",
para, 
values, 
org.apache.axis.encoding.XMLType.XSD_STRING);
result=WsUtils.ConvertToMap(ConString.SCINFO, o);
result.put("ErrorCode", "0");
result.put("ErrorMessage", "");
}
catch (Exception e) {
result.put("ErrorCode", 1);
result.put("ErrorMessage", e);
}
return result;
}红线处应该填写什么数据类型,如不能返回map需要使用什么样的数据类型,请指点,不胜感激!!!