axis2发布的webservice,其中映射出去的方法的参数是不是不能为Object或者Map?
要是方法参数是Object或者Map,该怎么处理呢?请想想主意,谢谢!
例子:
服务器端代码:
[code]
public class DataSynchronization {
private BeanHandlerDAO beanHandlerDAO;
public void updateBean(Object hBean) {
try {
beanHandlerDAO.updateBean(hBean);
} catch (Exception e) {
logger.error("WS更新bean时错误!", e);
}
}
}
[/code]
客户端代码:
[code]
public class DataSynchronizationRCPClient {
public static void synBeanUpdate(Object bean) throws AxisFault {
RPCServiceClient serviceClient = new RPCServiceClient();
Options op = serviceClient.getOptions();
EndpointReference targetEPR = new EndpointReference("http://192.168.0.9:8080/axis2/services/DataSynchronization");
op.setTo(targetEPR);
QName opUpdateBean = new QName("http://server.webservice.datasyn.core.kmp.gei.com.cn/xsd","updateBean");
Object[] opUpdateBeanArgs = new Object[] { bean };
serviceClient.invokeRobust(opUpdateBean, opUpdateBeanArgs);
}
}
[/code]
上面是我写的一个例子,其中updateBean是webservice发布出去的方法,参数是Object,但调用的时候会抛出这样的Exception: java.lang.InstantiationException但,要是把updateBean这个方法的参数换成具体的实体类,例如:updateBean(TestBean tb),这样发布的webservice就没有问题。
这到底是为什么?是因为axis2不支持呢?还是程序写的有问题?
要是方法参数是Object或者Map,该怎么处理呢?请想想主意,谢谢!
例子:
服务器端代码:
[code]
public class DataSynchronization {
private BeanHandlerDAO beanHandlerDAO;
public void updateBean(Object hBean) {
try {
beanHandlerDAO.updateBean(hBean);
} catch (Exception e) {
logger.error("WS更新bean时错误!", e);
}
}
}
[/code]
客户端代码:
[code]
public class DataSynchronizationRCPClient {
public static void synBeanUpdate(Object bean) throws AxisFault {
RPCServiceClient serviceClient = new RPCServiceClient();
Options op = serviceClient.getOptions();
EndpointReference targetEPR = new EndpointReference("http://192.168.0.9:8080/axis2/services/DataSynchronization");
op.setTo(targetEPR);
QName opUpdateBean = new QName("http://server.webservice.datasyn.core.kmp.gei.com.cn/xsd","updateBean");
Object[] opUpdateBeanArgs = new Object[] { bean };
serviceClient.invokeRobust(opUpdateBean, opUpdateBeanArgs);
}
}
[/code]
上面是我写的一个例子,其中updateBean是webservice发布出去的方法,参数是Object,但调用的时候会抛出这样的Exception: java.lang.InstantiationException但,要是把updateBean这个方法的参数换成具体的实体类,例如:updateBean(TestBean tb),这样发布的webservice就没有问题。
这到底是为什么?是因为axis2不支持呢?还是程序写的有问题?