`

实战Mule:利用Mule调用XFire发布的Web服务

阅读更多
关键字:   Mule XFire ESB WebService    

下载和安装XFire和Mule
参考http://hideto.iteye.com/blog/59750http://hideto.iteye.com/blog/64742对XFire和Mule的介绍
本文例子也以上述两篇文章的例子为背景。

利用XFire发布一个Web服务BookService
在Eclipse里新建项目webservice,目录结构如下:

代码
  1. webservice   
  2.   src-service   
  3.     cn.hidetoishandsome.xfire.model   
  4.       Book.java   
  5.     cn.hidetoishandsome.xfire.service   
  6.       IBookService.java   
  7.     cn.hidetoishandsome.xfire.service.impl   
  8.       BookService.java   
  9.   src-conf   
  10.     META-INF   
  11.       xfire   
  12.         services.xml   
  13.   web   
  14.     WEB-INF   
  15.       lib   
  16.       web.xml   
<script>render_code();</script>
其中web.xml:
代码
  1. <?xml version="1.0" encoding="UTF-8"?>     
  2. <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4"     
  3.          xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">     
  4.      
  5.     <servlet>     
  6.         <servlet-name>xfire</servlet-name>     
  7.         <servlet-class>org.codehaus.xfire.transport.http.XFireConfigurableServlet</servlet-class>     
  8.     </servlet>     
  9.      
  10.     <servlet-mapping>     
  11.         <servlet-name>xfire</servlet-name>     
  12.         <url-pattern>/services/*</url-pattern>     
  13.     </servlet-mapping>     
  14.      
  15. </web-app>  
<script>render_code();</script>
以及services.xml:
代码
  1. <beans xmlns="http://xfire.codehaus.org/config/1.0">     
  2.     <service>     
  3.         <name>BookService</name>     
  4.         <namespace>http://localhost:9090/webservice/services/BookService</namespace>     
  5.         <serviceClass>cn.hidetoishandsome.xfire.service.IBookService</serviceClass>     
  6.         <implementationClass>cn.hidetoishandsome.xfire.service.impl.BookService</implementationClass>     
  7.     </service>     
  8. </beans>  
<script>render_code();</script>
我们发布BookService类的findBookByISBN方法,通过传入book的isbn返回查询到的book的title
注意services.xml中我们把BookService的namespace设置为http://localhost:9090/webservice/services/BookService,这是为了在同一机器上同时
启动两个Tomcat实例来测试我们的demo,我们将启动一个Tomcat来host我们发布的BookService,并且port设置为9090,而启动的第二个Tomcat用来
host我们的Mule ESB,以及前台页面调用测试。
好了,现在我们已经可以启动第一个Tomcat实例来发布BookService了,访问http://localhost:9090/webservice/services/BookService?wsdl可以看
到XFire自动生成的WSDL文档。

 

利用Mule构建我们的ESB中心
在Eclipse里创建新项目esb,目录结构如下:

代码
  1. esb   
  2.   web   
  3.     WEB-INF   
  4.       lib   
  5.         mule-services-config.xml   
  6.         web.xml   
  7.     index.jsp   
<script>render_code();</script>
其中web.xml:
代码
  1. <?xml version="1.0" encoding="UTF-8"?>     
  2. <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">     
  3. <web-app>     
  4.     <display-name>Mule</display-name>  
  5.     <description>Mule Demo</description>  
  6.      
  7.     <context-param>  
  8.         <param-name>org.mule.config</param-name>  
  9.         <param-value>/WEB-INF/mule-services-config.xml,</param-value>  
  10.     </context-param>  
  11.      
  12.     <listener>  
  13.         <listener-class>org.mule.config.builders.MuleXmlBuilderContextListener</listener-class>  
  14.     </listener>  
  15.   
  16.     <welcome-file-list>  
  17.         <welcome-file>index.jsp</welcome-file>  
  18.     </welcome-file-list>  
  19. </web-app>  
<script>render_code();</script>
以及mule-services-config.xml:
代码
  1. <?xml version="1.0" encoding="UTF-8"?>     
  2.      
  3. <!DOCTYPE mule-configuration PUBLIC "-//MuleSource //DTD mule-configuration XML V1.0//EN"      
  4.                                 "http://mule.mulesource.org/dtds/mule-configuration.dtd">     
  5.      
  6. <mule-configuration id="Mule_Demo" version="1.0">  
  7.   
  8.     <mule-descriptor name="BookService" inboundEndpoint="vm://bookservice" implementation="org.mule.components.simple.BridgeComponent">  
  9.   
  10.         <outbound-router>  
  11.             <router className="org.mule.routing.outbound.OutboundPassThroughRouter">  
  12.                 <endpoint address="wsdl-xfire:http://localhost:9090/webservice/services/BookService?wsdl&method=findBookByISBN"/>  
  13.             </router>  
  14.         </outbound-router>  
  15.   
  16.     </mule-descriptor>  
  17.   
  18. </mule-configuration>  
<script>render_code();</script>
这里我们配置了我们要调用的BookService的outbound router endpoint的address为:
wsdl-xfire:http://localhost:9090/webservice/services/BookService?wsdl&method=findBookByISBN
好了,我们的Mule ESB已经构建好了,并且我们在自己的ESB中注入了一个Web服务BookService,我们不用担心底层的实现,我们只需按照接口简单调用即可。
下面我们写前端调用代码index.jsp:
代码
  1. <%@ page import="org.mule.extras.client.MuleClient, org.mule.umo.UMOMessage"%>     
  2. <%@ page language="java" contentType="text/html; charset=UTF-8" %>     
  3.      
  4. <html>     
  5. <head>     
  6. <title>Mule Echo Example</title>     
  7. </head>     
  8. <body>     
  9. <%      
  10.     String s = request.getParameter("isbn");      
  11.     if(s!=null) {      
  12.         MuleClient client = new MuleClient();      
  13.         UMOMessage message = client.send("vm://bookservice", s, null);        
  14. %>     
  15. <h3>The book with isbn "<%=s%>" is : <<<%=message.getPayload()%>>></h3>     
  16.      <%}%>     
  17. Please enter the isbn of book:      
  18. <form method="POST" name="submitISBM" action="">     
  19.     <table>     
  20.         <tr><td>     
  21.             <input type="text" name="isbn"/></td><td><input type="submit" name="Go" value=" Go " />     
  22.         </td></tr>     
  23.     </table>     
  24. </form>     
  25. <p/>     
  26. </body>     
  27. </html>     
<script>render_code();</script>
现在让我们启动第二个Tomcat实例,然后访问http://localhost:8080/esb,输入isbn号码“123456”,提交来查看返回的Book的Title。

 

源代码
将源代码打包提供如下,WEB-INF/lib下面的jar包都删除了,请参考http://hideto.iteye.com/blog/59750http://hideto.iteye.com/blog/64742
添加jar包。

mule-xfire.rar
 描述:  
下载
 文件名:  mule-xfire.rar
 文件大小:  4 KB
 下载过的:  文件被下载或查看 106 次
17:26  |   永久链接  |   浏览 (1469)  |   评论 (5)  |    收藏  |   Java  |    
评论    共 5 条 发表评论
dongshijie     2007-04-08 01:35

可否提供一个可以跑起来的例子,MULE的XML配置文件参数文档有吗?谢谢!!

hideto     2007-04-08 04:19

上面的例子就可以跑起来啊

dionwang     2007-07-11 14:13

以上的例子部署不能运行,请楼主再仔细看看。最好能把使用的包的小version列出来。

hideto     2007-07-11 14:27

 

引用

参考http://hideto.iteye.com/blog/59750和http://hideto.iteye.com/blog/64742对XFire和Mule的介绍

上面链接里描述了使用哪些jar包

 

yuanfu     2007-08-06 10:04

请问使用的Mule是哪个版本的?我使用1.4的。
1、发现mule的配置文件缺少<model>标签,加上后可以使用;
2、使用xfire方式发布 BrigeComponent 报异常,大致意思是UMOSecurityManager 有 java.util.List 参数,没有配置;不知hideto是否遇到过。

分享到:
评论
1 楼 JavaStart 2007-10-17  
刚入门`问个简单的问题  为什么服务器启动的时候加载mule-echo-config.xml文件的时候报org.mule.config.ConfigurationException尝试解决了很久 `请帮我解决下`  `

相关推荐

    实战Mule:利用Mule调用XFire发布的文件上传服务

    本文将基于"实战Mule:利用Mule调用XFire发布的文件上传服务"这一主题,详细阐述如何利用这两个工具实现文件上传服务的集成。 首先,我们需要理解Mule ESB的核心概念。Mule ESB提供了一个灵活且可扩展的架构,用于...

    MULE开发实例1---并行调用多个webservice接口

    5. **配置Flow References**:在Scatter-Gather内部,为每个Web服务Outbound Endpoint创建一个单独的子流程,这样每个Web服务调用将在自己的线程中执行。 6. **收集响应**:Scatter-Gather会收集所有子流程的响应,...

    利用mule服务总线代理cxf服务

    本文将详细介绍如何利用Mule ESB(Enterprise Service Bus)作为代理来访问CXF发布的Web服务。 #### 建立CXF服务端 首先,我们需要构建一个CXF服务端来提供服务。下面是具体步骤: 1. **下载并安装CXF** 访问...

    mule使用SOAP工件发布和消费web Service的简单例子

    总结来说,"mule使用SOAP工件发布和消费web Service的简单例子"是关于利用Mule ESB创建和使用SOAP服务的一个实践教程。通过"hello-ws"示例,我们可以深入理解SOAP服务的生命周期,从定义WSDL到编写服务逻辑,再到...

    ESB比较 adfasdfasf

    - Mule: 5分 - Apache ServiceMix: 2分 - IBM Websphere ESB: 3分 2. **ESB业务流程控制、变更管理、治理和生命周期特性**: - BEA AquaLogic: 5分 - Mule: 4分 - Apache ServiceMix: 3分 - IBM Websphere ...

    利用mule服务总线代理cxf服务源码

    本文将深入探讨如何利用Mule服务总线代理Apache CXF服务源码,帮助开发者更好地理解这两种技术的结合及其在实际项目中的应用。 首先,Mule ESB是一种流行的开源ESB(企业服务总线),它允许系统间的集成和数据流...

    mule web service exsample

    在这个示例中,我们将深入探讨如何使用Mule来发布Web服务,这是一种允许不同系统间交换数据的有效方式。 1. **Mule基础知识** Mule 是一个开源的企业级服务总线,它支持多种协议和数据格式,如HTTP、JMS、FTP等。...

    mule in action 即mule实战源码

    3. **预建连接器**:Mule提供了大量预建的连接器,可以轻松连接到各种外部系统,如数据库、Web服务、文件系统等。 4. **云集成**:Mule ESB支持云环境,可以与AWS、Azure、Google Cloud等主流云平台无缝集成。 5. **...

    mule学习demo(包含webservice调用参数转换)

    本教程将聚焦于一个"Mule学习demo",特别关注它如何处理Web服务调用以及参数转换。Web服务是软件系统通过网络进行通信的一种方式,通常采用SOAP(简单对象访问协议)或REST(Representational State Transfer)架构...

    mule IDE (mule ESB)

    Mule ESB 是一个轻量级的基于java的企业服务总线和集成平台, 使得开发人员可以快速,简单的连接多个应用, 使得它们可以交换数据。 Mule ESB 容易集成现有异构系统,包括:JMS, Web Services, JDBC, HTTP, 等. ESB...

    mule开发环境搭建和部署

    三、Mule项目发布 在Mule项目中,需要新建一个项目,例如SayHello项目。然后,在该项目下新建一个包,名称为com.mule.nick.test,在该包下新建一个类,类名为SayHello。在SayHello类中,新增一个sayHello()方法,...

    MULE用户指南3.3

    3. **连接器(Connectors)**:MULE 3.3提供了丰富的预建连接器,如JDBC、HTTP、FTP、SMTP等,用于连接数据库、Web服务、文件系统等。用户需要了解如何配置和使用这些连接器,以适应各种集成场景。 4. **数据映射...

    mule in action mule 实战

    Mule in Action是一本关于Mule ESB(企业服务总线)的实战指南,旨在为读者提供深入的实践知识和案例分析。ESB作为一种流行的中间件技术,用于实现不同系统之间的服务集成。Mule作为一个开源的ESB解决方案,通过其...

    mule esb 的简单介绍

    4. **Web服务支持**:Mule ESB能够处理基于Axis或Glue的Web服务,支持SOAP和其他Web服务标准,允许服务间的互操作性。 5. **灵活的部署结构**:Mule ESB提供了多种部署拓扑,包括Client/Server、P2P(对等)、ESB...

Global site tag (gtag.js) - Google Analytics