java axis调用webservice,接口方法中的数组型参数应该怎么传参
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java axis调用webservice,接口方法中的数组型参数应该怎么传参相关的知识,希望对你有一定的参考价值。
使用第三方jar包动态调用webservice,接口方法中存在数组型参数时,应该怎么调用
服务端接口方法:
public int sendDTMS(String[] mobiles, String addSerial, int smsPriority,
String sign, String msgGroup, boolean isMo, String tempId,
String[] params)
客户端调用:
Call call=setSendDTMSCallParams(this.getSendDTMSCall());
responseString=(String)call.invoke(params);
参数params设置:
Object[] params=new Object[]
null,
new String[]"111","222",
5,
null,
null,
false,
"681",
"4637"
;
当params中使用new String【】 传参时报错:
Exception in thread "main" AxisFault
faultCode: http://schemas.xmlsoap.org/soap/envelope/Client
faultSubcode:
faultString: Unmarshalling Error: 意外的元素 (uri:"", local:"mobiles")。所需元素为(none)
求大神帮忙,这样的接口我在使用axis调用时应该怎么做?紧急,高分
以上是关于java axis调用webservice,接口方法中的数组型参数应该怎么传参的主要内容,如果未能解决你的问题,请参考以下文章