`
caiying0504
  • 浏览: 341583 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

WebService CXF学习(入门篇2):HelloWorld

阅读更多
理论联系实际,单单只讲理论那就成了纸上谈兵,用一个HelloWorld Demo可来说明事更加直观。那下面咱们就开始进行讲解:
   首先到apache官方网下载apache-cxf-2.2.2,地址:http://cxf.apache.org/
   新建一个Java Project,导入cxf常用.jar包
Java代码 
commons-logging-1.1.1.jar  
geronimo-activation_1.1_spec-1.0.2.jar (or Sun's Activation jar)  
geronimo-annotation_1.0_spec-1.1.1.jar (JSR 250)  
geronimo-javamail_1.4_spec-1.6.jar (or Sun's JavaMail jar)  
geronimo-servlet_2.5_spec-1.2.jar (or Sun's Servlet jar)  
geronimo-ws-metadata_2.0_spec-1.1.2.jar (JSR 181)  
geronimo-jaxws_2.1_spec-1.0.jar (or Sun's jaxws-api-2.1.jar)  
geronimo-stax-api_1.0_spec-1.0.1.jar (or other stax-api jar)  
jaxb-api-2.1.jar  
jaxb-impl-2.1.12.jar  
jetty-6.1.21.jar  
jetty-util-6.1.21.jar  
neethi-2.0.4.jar  
saaj-api-1.3.jar  
saaj-impl-1.3.2.jar  
wsdl4j-1.6.2.jar  
wstx-asl-3.2.8.jar  
XmlSchema-1.4.5.jar  
xml-resolver-1.2.jar  
cxf-2.2.2.jar 

   commons-logging-1.1.1.jar
   geronimo-activation_1.1_spec-1.0.2.jar (or Sun's Activation jar)
   geronimo-annotation_1.0_spec-1.1.1.jar (JSR 250)
   geronimo-javamail_1.4_spec-1.6.jar (or Sun's JavaMail jar)
   geronimo-servlet_2.5_spec-1.2.jar (or Sun's Servlet jar)
   geronimo-ws-metadata_2.0_spec-1.1.2.jar (JSR 181)
   geronimo-jaxws_2.1_spec-1.0.jar (or Sun's jaxws-api-2.1.jar)
   geronimo-stax-api_1.0_spec-1.0.1.jar (or other stax-api jar)
   jaxb-api-2.1.jar
   jaxb-impl-2.1.12.jar
   jetty-6.1.21.jar
   jetty-util-6.1.21.jar
   neethi-2.0.4.jar
   saaj-api-1.3.jar
   saaj-impl-1.3.2.jar
   wsdl4j-1.6.2.jar
   wstx-asl-3.2.8.jar
   XmlSchema-1.4.5.jar
   xml-resolver-1.2.jar
   cxf-2.2.2.jar

   接下就是HelloWorld Demo开发了
   第一步:新建一个webservice接口
Java代码 
@WebService  
public interface IHelloWorld {   
    //@WebParam给参数命名,提高可代码可读性。此项可选   
blic String sayHi(@WebParam(name="text") String text);   
}  

   @WebService
   public interface IHelloWorld {
       //@WebParam给参数命名,提高可代码可读性。此项可选
	public String sayHi(@WebParam(name="text") String text);
   }

  通过注解@WebService申明为webservice接口
   第二步,实现WebService接口
Java代码 
  @WebService  
  public class HelloWorldImpl implements IHelloWorld {   
  
public String sayHi(String name) {   
    System.out.println("sayHello is called by " + name);   
    return "Hello " + name;   
}   
  
   }  

   @WebService
   public class HelloWorldImpl implements IHelloWorld {

	public String sayHi(String name) {
		System.out.println("sayHello is called by " + name);
		return "Hello " + name;
	}

    }

  第三步,创建服务端
Java代码 
 
public class Server {   
  
private Server(){   
    IHelloWorld helloWorld = new HelloWorldImpl();   
    //创建WebService服务工厂   
    JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();   
    //注册WebService接口   
    factory.setServiceClass(IHelloWorld.class);   
    //发布接口   
    factory.setAddress("http://localhost:9000/HelloWorld");   
    factory.setServiceBean(helloWorld);   
    //创建WebService   
    factory.create();   
};   
  
public static void main(String[] args) throws InterruptedException{   
       //启动服务端   
              new Server();   
    System.out.println("Server ready...");   
    //休眠一分钟,便于测试   
               Thread.sleep(1000*60);   
    System.out.println("Server exit...");   
    System.exit(0);   
}   
   }  

   public class Server {

	private Server(){
		IHelloWorld helloWorld = new HelloWorldImpl();
		//创建WebService服务工厂
		JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
		//注册WebService接口
		factory.setServiceClass(IHelloWorld.class);
		//发布接口
		factory.setAddress("http://localhost:9000/HelloWorld");
		factory.setServiceBean(helloWorld);
		//创建WebService
		factory.create();
	};
	
	public static void main(String[] args) throws InterruptedException{
	       //启动服务端
               new Server();
		System.out.println("Server ready...");
		//休眠一分钟,便于测试
                Thread.sleep(1000*60);
		System.out.println("Server exit...");
		System.exit(0);
	}
    }
 

第四步,创建客户端
   Java代码 
  
public class Client {   
  
private Client(){};   
  
public static void main(String[] args){   
    //创建WebService客户端代理工厂   
    JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();   
    //注册WebService接口   
    factory.setServiceClass(HelloWorld.class);   
    //设置WebService地址   
    factory.setAddress("http://localhost:9000/HelloWorld");        
    IHelloWorld iHelloWorld = (IHelloWorld)factory.create();   
    System.out.println("invoke webservice...");   
    System.out.println("message context is:"+iHelloWorld.sayHi("     
                 Josen"));   
    System.exit(0);   
}   
   }   
    

    public class Client {

	private Client(){};
	
	public static void main(String[] args){
		//创建WebService客户端代理工厂
		JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
		//注册WebService接口
		factory.setServiceClass(HelloWorld.class);
		//设置WebService地址
		factory.setAddress("http://localhost:9000/HelloWorld");		
		IHelloWorld iHelloWorld = (IHelloWorld)factory.create();
		System.out.println("invoke webservice...");
		System.out.println("message context is:"+iHelloWorld.sayHi("  
                  Josen"));
		System.exit(0);
	}
    }
   

   最后是万事俱备,只欠测试了
    首先,运行服务端程序
    其次,打开浏览器,在地址栏中输入http://localhost:9000/HelloWorld?wsdl(因为cxf自带了一个jetty服务器),查看接口是否发布成功,如里浏览器页面显示下面内容,证明接口发布成功
Java代码 
  <wsdl:definitions name="IHelloWorldService" targetNamespace="http://client.itdcl.com/">   
<wsdl:types>   
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://client.itdcl.com/">   
<xsd:element name="sayHi" type="tns:sayHi"/>   
<xsd:complexType name="sayHi">   
<xsd:sequence>   
<xsd:element minOccurs="0" name="text" type="xsd:string"/>   
</xsd:sequence>   
</xsd:complexType>   
<xsd:element name="sayHiResponse" type="tns:sayHiResponse"/>   
<xsd:complexType name="sayHiResponse">   
<xsd:sequence>   
<xsd:element minOccurs="0" name="return" type="xsd:string"/>   
</xsd:sequence>   
</xsd:complexType>   
</xsd:schema>   
</wsdl:types>   
<wsdl:message name="sayHi">   
<wsdl:part element="tns:sayHi" name="parameters">   
    </wsdl:part>   
</wsdl:message>   
<wsdl:message name="sayHiResponse">   
<wsdl:part element="tns:sayHiResponse" name="parameters">   
    </wsdl:part>   
</wsdl:message>   
<wsdl:portType name="IHelloWorld">   
<wsdl:operation name="sayHi">   
<wsdl:input message="tns:sayHi" name="sayHi">   
    </wsdl:input>   
<wsdl:output message="tns:sayHiResponse" name="sayHiResponse">   
    </wsdl:output>   
</wsdl:operation>   
</wsdl:portType>   
<wsdl:binding name="IHelloWorldServiceSoapBinding" type="tns:IHelloWorld">   
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>   
<wsdl:operation name="sayHi">   
<soap:operation soapAction="" style="document"/>   
<wsdl:input name="sayHi">   
<soap:body use="literal"/>   
</wsdl:input>   
<wsdl:output name="sayHiResponse">   
<soap:body use="literal"/>   
</wsdl:output>   
</wsdl:operation>   
</wsdl:binding>   
<wsdl:service name="IHelloWorldService">   
<wsdl:port binding="tns:IHelloWorldServiceSoapBinding" name="IHelloWorldPort">   
<soap:address location="http://localhost:9000/HelloWorld"/>   
</wsdl:port>   
</wsdl:service>   
</wsdl:definitions>  

   <wsdl:definitions name="IHelloWorldService" targetNamespace="http://client.itdcl.com/">
<wsdl:types>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://client.itdcl.com/">
<xsd:element name="sayHi" type="tns:sayHi"/>
<xsd:complexType name="sayHi">
<xsd:sequence>
<xsd:element minOccurs="0" name="text" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="sayHiResponse" type="tns:sayHiResponse"/>
<xsd:complexType name="sayHiResponse">
<xsd:sequence>
<xsd:element minOccurs="0" name="return" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="sayHi">
<wsdl:part element="tns:sayHi" name="parameters">
    </wsdl:part>
</wsdl:message>
<wsdl:message name="sayHiResponse">
<wsdl:part element="tns:sayHiResponse" name="parameters">
    </wsdl:part>
</wsdl:message>
<wsdl:portType name="IHelloWorld">
<wsdl:operation name="sayHi">
<wsdl:input message="tns:sayHi" name="sayHi">
    </wsdl:input>
<wsdl:output message="tns:sayHiResponse" name="sayHiResponse">
    </wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="IHelloWorldServiceSoapBinding" type="tns:IHelloWorld">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="sayHi">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="sayHi">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="sayHiResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="IHelloWorldService">
<wsdl:port binding="tns:IHelloWorldServiceSoapBinding" name="IHelloWorldPort">
<soap:address location="http://localhost:9000/HelloWorld"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

    最后,运行客户端程序,看看效果如果。
    这一节就讲到此为止,下节对WSDL定义进行讲解,便于对上面这个Demo进行很好的消化,同时对后面章节启个辅塾作用。

分享到:
评论

相关推荐

    WebService CXF学习文档

    WebService CXF学习——入门篇 1.CXF由来 2.HelloWorld 3.WSDL描述 WebService CXF学习——进阶篇 1.SOAP讲解 2.JAX-WS讲解 3.对象传递 WebService CXF学习——高级篇(一)(二) 1.整合Spring框架 2.CXF...

    WebService CXF学习-入门篇.pdf

    **WebService CXF 学习——入门篇** **一、WebService CXF 由来与目标** Apache CXF 是一个流行的开源框架,它源自 ObjectWeb Celtix 和 CodeHaus XFire 的合并,这两个项目分别由 IONA 公司和业界知名SOAP堆栈...

    webservice cxf_demo

    【描述】"cxf写的一个helloworld demo" 指出,此项目的核心是展示如何通过Apache CXF框架实现基础功能。"Hello World"程序通常被用作教学工具,帮助开发者理解新语言或框架的基本工作原理。在这个特定的场景中,我们...

    使用CXF发布和调用webservice之HelloWorld入门

    ### 使用CXF发布和调用WebService之HelloWorld入门详解 #### 一、概述 本文将详细介绍如何使用Apache CXF框架来实现一个简单的WebService——HelloWorld示例。此示例不仅适用于初学者理解WebService的基本概念,...

    WebService (一) CXF 入门 HelloWorld

    **WebService (一) CXF 入门 HelloWorld** 在IT行业中,WebService是一种基于开放标准(如XML、WSDL和SOAP)的互联网通信协议,允许不同系统之间的应用程序进行互操作。本篇将详细介绍如何使用Apache CXF框架来创建...

    cxf 入门(hello world)

    【描述】:这篇文章主要介绍如何使用Apache CXF框架进行Web服务开发,通过一个简单的“Hello World”示例来帮助初学者理解CXF的基本用法。 Apache CXF是一个开源的Java框架,主要用于构建和部署SOAP和RESTful Web...

    CXF webservice 实现简单的HelloWorld

    CXF webservice 入门视频 很清晰很不错,企业当中很多都在使用CXF

    CXF视频:1、使用CXF实现简单的HelloWorld

    【标题】"CXF视频:1、使用CXF实现简单的HelloWorld",这是一段关于Apache CXF框架的初级教程,旨在引导初学者通过实际操作理解如何利用CXF创建一个基本的“HelloWorld”服务。Apache CXF是一个开源的Java框架,它...

    webservice cxf 客户端创建

    本篇文章将深入探讨如何使用Apache CXF来创建一个Web服务客户端。 首先,让我们了解Apache CXF。CXF,全称CXF CXF (Common eXtensible Framework),它提供了多种方式来创建和调用Web服务,包括SOAP(Simple Object ...

    WebService_CXF范例.

    为了更好地理解CXF的工作原理,通常会通过一个简单的"HelloWorld"示例来开始学习。首先,你需要从Apache官方网站下载CXF的最新版本,然后在Java项目中引入必要的依赖库。接着,你可以编写服务端和客户端代码,通过...

    webservice cxf 简单实例

    接着,添加一个公共Java类,例如`HelloWorld.java`,其中包含一个方法,如`sayHello()`,用于提供Web服务的功能。 ```java public class HelloWorld { public String sayHello(String name) { return "Hello, " +...

    cxf实用案例代码helloworld

    【CXF实用案例:HelloWorld详解】 Apache CXF是一个开源的Java框架,它主要用于构建和服务导向架构(SOA)的应用程序。CXF使得开发者能够轻松地创建和部署Web服务,同时也支持SOAP、RESTful API等多种通信协议。在...

    springboot+CXF发布webservice接口

    @WebService(endpointInterface = "com.example.HelloWorld") public class HelloWorldImpl implements HelloWorld { @Override public String sayHello(String name) { return "Hello, " + name + "!"; } } ```...

    1.webservice-cxf-helloworld.part2

    webservice-helloworld 视频 两台机器访问,一个是虚拟机。

    CXF的helloworld实现

    【CXF的helloworld实现】 Apache CXF 是一个开源的Java框架,主要用于构建和开发服务导向架构(SOA)和Web服务。它提供了一个全面的工具集,支持WS-*标准,使得开发人员能够轻松地创建和部署SOAP和RESTful服务。在...

    CXF的入门实例

    在这个"CXF HelloWorld"入门实例中,我们将探讨如何使用CXF生成和使用WSDL(Web服务描述语言)文件,这是理解Web服务基础的关键步骤。 **1. 安装与配置CXF** 首先,你需要在项目中引入Apache CXF的依赖。如果你...

    利用cxf实现webservice

    这篇博客文章深入探讨了如何使用Apache CXF框架来创建和部署一个基本的WebService。作者通过一个实际的示例,展示了如何配置项目、编写服务接口和服务实现,以及如何发布和调用这些服务。 首先,我们需要在项目中...

    CXF入门 -- 第一个简单webService

    【CXF入门 -- 第一个简单webService】 Apache CXF 是一款强大的开源服务框架,它用于构建和开发服务,包括Web服务。本篇文章将带你入门CXF,通过创建一个简单的Web服务来理解其基本概念和工作流程。 1. **CXF简介*...

Global site tag (gtag.js) - Google Analytics