使用xfire方式调用webservice接口

使用xfire方式调用webservice接口不需要配置services.xml等文件,只需要java程序即可调用。

代码如下:

 

public static void main(String[] args) throws MalformedURLException {

  String serviceURL = "http://localhost:8080/project_name/WSProject.ws";
  Service serviceModel = new ObjectServiceFactory().create(InterfaceName.class); 
  InterfaceName serviceImp = (ITravelToBts)new XFireProxyFactory().create(serviceModel, serviceURL);

  ........

}

InterfaceName为定义的websevice接口类,并不是实现类。

注意需要导入的类

import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.service.binding.ObjectServiceFactory;

serviceImp变量是webservice接口的实现类。

 

你可能感兴趣的:(Java笔记)