1、配置:
项目名:web_service_server
web.xml配置:CXF配置的拦截地址为/servlet/*
spring配置webService地址:address="/HelloWorld"
2、客户端调用代码如下
import java.rmi.RemoteException;
import javax.xml.rpc.ParameterMode;import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import org.apache.axis.encoding.XMLType;
public class Test {
public static void main(String[] args) {
String url = "";
url = "http://localhost:8080/web_service_server/servlet/HelloWorld?wsdl";
Call call;
Object[] obj =new Object[]{20,50};
try {
Service service = new Service();
call = (Call) service.createCall();
call.setTargetEndpointAddress(url);//设置服务地址,指明远程调用的类
call.setEncodingStyle("utf-8");//设置传入服务端的字符集格式如utf-8等,注意: // Integer,int,Date想要传递必须有此方法,
call.setOperationName("add");//设置远程调用类中的方法
//参数必须按照XSD中的顺序添加到Call中,否则则不能与Object数组的值对应,会报错。
call.addParameter("arg0", XMLType.XSD_INT, ParameterMode.IN);//参数名,参数类 //参数模式
call.setReturnType(XMLType.XSD_INT);//设置返回参数类型
int m = (Integer) call.invoke(obj);//调用服务的方法,并传参
System.out.println(m);
} catch (ServiceException e) {
e.printStackTrace();
} catch (RemoteException e) {
e.printStackTrace();
}
}
}