一、发布webservice程序
1、新建web service项目
2、创建业务处理方法
3、修改service.xml文件
4、发布web srevice项目,发布方法和发布web项目一样
5、测试是否发布成功:
http://localhost:8080/mywebservice/services/HelloWebService_1?wsdl
二、调用已发布的webservice程序
1、使用myeclipse自动生成,方法:新建web service client
2、使用远程接口的方法,方法:
新建远程接口(注意:这里定义的方法应和webservice里的方法一致)
public interface IHelloWorld extends java.rmi.Remote{
public String Salutation(String name);
}
调用的方法
import org.apache.axis.client.Call;
import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.service.binding.ObjectServiceFactory;
import javax.xml.namespace.QName;
String url = "http://localhost:8080/mywebservice/services/HelloWebService_1";
Service serviceModel = new ObjectServiceFactory().create(IHelloWorld.class);
try{
IHelloWorld service = (IHelloWorld) new XFireProxyFactory().create(serviceModel,url);
String result = service.Salutation("sunbo");
System.out.println("result = "+ result);
}catch(Exception e) {
e.printStackTrace();
}
1、新建web service项目
2、创建业务处理方法
3、修改service.xml文件
4、发布web srevice项目,发布方法和发布web项目一样
5、测试是否发布成功:
http://localhost:8080/mywebservice/services/HelloWebService_1?wsdl
二、调用已发布的webservice程序
1、使用myeclipse自动生成,方法:新建web service client
2、使用远程接口的方法,方法:
新建远程接口(注意:这里定义的方法应和webservice里的方法一致)
public interface IHelloWorld extends java.rmi.Remote{
public String Salutation(String name);
}
调用的方法
import org.apache.axis.client.Call;
import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.service.binding.ObjectServiceFactory;
import javax.xml.namespace.QName;
String url = "http://localhost:8080/mywebservice/services/HelloWebService_1";
Service serviceModel = new ObjectServiceFactory().create(IHelloWorld.class);
try{
IHelloWorld service = (IHelloWorld) new XFireProxyFactory().create(serviceModel,url);
String result = service.Salutation("sunbo");
System.out.println("result = "+ result);
}catch(Exception e) {
e.printStackTrace();
}