`
suhuanzheng7784877
  • 浏览: 701509 次
  • 性别: Icon_minigender_1
  • 来自: 北京
博客专栏
Ff8d036b-05a9-33b5-828a-2633bb68b7e6
读金庸故事,品程序人生
浏览量:47681
社区版块
存档分类
最新评论

Web Service框架XFire与Tomcat集成(2)

阅读更多

Wsdl内容如下

<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions targetNamespace="http://webservice"

    xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding"

    xmlns:tns="http://webservice"

    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"

    xmlns:xsd="http://www.w3.org/2001/XMLSchema"

    xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/"

    xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"

    xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/"

    xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">

    <wsdl:types>

       <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"

           attributeFormDefault="qualified" elementFormDefault="qualified"

           targetNamespace="http://webservice">

           <xsd:element name="sayHello">

              <xsd:complexType>

                  <xsd:sequence>

                     <xsd:element maxOccurs="1" minOccurs="1"

                         name="in0" nillable="true" type="xsd:string" />

                  </xsd:sequence>

               </xsd:complexType>

           </xsd:element>

           <xsd:element name="sayHelloResponse">

              <xsd:complexType>

                  <xsd:sequence>

                     <xsd:element maxOccurs="1" minOccurs="1"

                         name="out" nillable="true" type="xsd:string" />

                  </xsd:sequence>

              </xsd:complexType>

           </xsd:element>

       </xsd:schema>

    </wsdl:types>

    <wsdl:message name="sayHelloResponse">

       <wsdl:part name="parameters" element="tns:sayHelloResponse">

       </wsdl:part>

    </wsdl:message>

    <wsdl:message name="sayHelloRequest">

       <wsdl:part name="parameters" element="tns:sayHello"></wsdl:part>

    </wsdl:message>

    <wsdl:portType name="sayHelloPortType">

       <wsdl:operation name="sayHello">

           <wsdl:input name="sayHelloRequest"

              message="tns:sayHelloRequest">

           </wsdl:input>

           <wsdl:output name="sayHelloResponse"

              message="tns:sayHelloResponse">

           </wsdl:output>

       </wsdl:operation>

    </wsdl:portType>

    <wsdl:binding name="sayHelloHttpBinding"

       type="tns:sayHelloPortType">

       <wsdlsoap:binding style="document"

           transport="http://schemas.xmlsoap.org/soap/http" />

       <wsdl:operation name="sayHello">

           <wsdlsoap:operation soapAction="" />

           <wsdl:input name="sayHelloRequest">

              <wsdlsoap:body use="literal" />

           </wsdl:input>

           <wsdl:output name="sayHelloResponse">

              <wsdlsoap:body use="literal" />

           </wsdl:output>

       </wsdl:operation>

    </wsdl:binding>

    <wsdl:service name="sayHello">

       <wsdl:port name="sayHelloHttpPort"

           binding="tns:sayHelloHttpBinding">

           <wsdlsoap:address

               location="http://127.0.0.1:8080/xfireClient/services/sayHello" />

       </wsdl:port>

    </wsdl:service>

</wsdl:definitions>

到此,一个小小的web service已经发布成功。下次有时间在写XFire客户端的代码和实例。

分享到:
评论

相关推荐

    整理xfire和spring的集成 web service 面向服务编程 java

    XFire是一个基于Java的SOAP Web Service框架,而Spring是一个广泛应用的轻量级框架,它提供了依赖注入、面向切面编程等特性。将两者集成可以方便地构建和消费Web Service,实现服务的发布和调用。下面将详细介绍如何...

    使用XFire+Spring构建Web Service

    XFire是一个先进的Web Service框架,与Axis2并列为新一代的选择,因其简单API、对Web Service标准的支持以及与Spring的紧密集成而受到欢迎。 首先,构建这样的Web Service需要创建一个新的Web工程。在工程中,你...

    MyEclipse+xFire开发Web Service

    【MyEclipse+xFire开发Web Service】是一个关于如何使用MyEclipse集成开发环境和xFire框架来构建和测试Web服务的教程。xFire是一个基于Java的SOAP框架,它提供了轻量级的信息处理机制,利用STAX进行SOAP消息处理。这...

    使用 XFire 与 Spring 开发 Web Service.docx

    XFire是Apache CXF项目的一部分,是一个轻量级的、高性能的Java Web Service框架,它简化了Web Service的开发流程,并且能够与Spring框架深度集成,提供了强大的服务装配和管理能力。 **实现功能与特点** 1. **...

    xfire开发web service文档.rar

    4. **启动服务器**:使用XFire的内置服务器或者与其他服务器(如Jetty、Tomcat)集成,启动Web服务。 5. **测试服务**:可以使用XFire提供的客户端工具,或者自定义的SOAP客户端来测试服务的正确性。 6. **发布...

    Xfire配置Web Service+Spring+Hibernate详细流程

    在IT领域,尤其是企业级应用开发中,集成Web Service、Spring框架以及Hibernate技术是非常常见的需求。本文将深入解析如何使用Xfire来配置并集成这三个核心技术,旨在提供一个从零开始的详细步骤指南。 #### 一、...

    Xfire配置Web Service+Spring+Hibernate详细配置流程

    以下是关于"Xfire配置Web Service+Spring+Hibernate详细配置流程"的知识点详解: 1. **Spring框架**: Spring是Java企业级应用开发的首选框架,提供依赖注入(DI)和面向切面编程(AOP)。在Web服务场景中,Spring...

    使用XFire编写web service的上传文件的例子

    【使用XFire编写web service的上传文件例子详解】 在IT领域,Web Service是一种基于标准的、平台无关的方式,用于应用程序之间的交互。XFire是Apache CXF的前身,它是一个轻量级的Java框架,用于构建和消费Web服务...

    使用Xfire创建Web service和客户端使用的视频

    在这个主题中,我们将深入探讨如何使用Xfire创建Web服务以及客户端的实现,同时结合MyEclipse 6.5集成开发环境(IDE)和Tomcat 6.0应用服务器。 1. **Xfire简介** Xfire是Apache CXF项目的一部分,它提供了一个...

    xFire+spring

    XFire是一个先进的Web Service框架,与Axis 2并列,它提供了更简洁的API以支持Web Service的各种标准协议,如JSR181、WSDL2.0、JAXB2和WS-Security等。相比Axis,XFire因其易于使用、高性能和与Spring的紧密集成而受...

    JavaWebServiceDemo(XFire)

    Java WebService Demo(XFire)是一个基于XFire框架的示例项目,它展示了如何在Java环境中创建、部署和消费Web服务。XFire是早期流行的Java Web服务实现,它提供了轻量级、高性能的服务栈,用于构建符合WS-*标准的Web...

    第15章 开发XFire Web Service应用.pdf

    ### 第15章 开发XFire Web Service应用 #### 15.1 引言 ##### 15.1.1 WebService简介 WebService(Web服务)是一项最初由微软和IBM提出的技术规范,旨在实现不同编程语言之间的网络功能互通互联。它的核心特性...

    Web_Service开发指南_2[1].3.1.rar

    本指南主要针对Web Service的开发,特别是聚焦于几种流行的Web Service框架,如Axis和XFire。通过学习本指南,开发者将能够掌握如何利用这些框架创建、部署和调用Web服务。 一、Web Service基础 Web Service基于...

    使用MyEclipse构建Web+Service.

    **环境搭建**:本教程中,我们将使用MyEclipse 8.5作为集成开发环境,XFire 1.2.6作为Web Service框架,以及Tomcat 6.0作为应用服务器。XFire的下载应选择Binary Distribution in zip package版本,解压后的lib...

Global site tag (gtag.js) - Google Analytics