#接口文档如下<wsdl:message name="fun1"><wsdl:part name="a"type="xsd:string"></wsdl:part><wsdl:part name="b"type="xsd:string"></wsdl:part><wsdl:part name="c"type="xsd:string"></wsdl:part><wsdl:part name="d"type="xsd:string"></wsdl:part></wsdl:message>#调用代码
String a ="";
String b ="";
String c ="";
String d ="";
Object[] res = client.invoke("fun1", a, b, c, d);
#接口文档如下<xs:complexType name="fun2"><xs:sequence><xs:element minOccurs="0"name="json"type="xs:string"/></xs:sequence></xs:complexType>#代码如下
JSONObject param = new JSONObject();
Object[] res = client.invoke("fun2", new Object[]{param.toJSONString()});