1.1 发布webservice 服务

在官网看的例子,自己实现了一下,大概流程写了出来,仅供参考。

开发工具:AnypointStudio


1、创建服务接口

  
  
[java]
  1. package com.zhongguo.service; import javax.jws.WebService; @WebService public interface HelloWorldInf {     public String sayHello(String name); }

2、创建其实现类

   
   
[java]
  1. package com.zhongguo.service; import javax.jws.WebService; @WebService(endpointInterface = "org.example.HelloWorld",               serviceName = "HelloWorld") public class HelloWorldImp implements HelloWorldInf {     @Override     public String sayHello(String name) {                  return "你好"+name;     }
     }

3、配置flow

[html]
  1. <?xmlversionxmlversion="1.0"encoding="UTF-8"?>  
  2.    
  3.       <mulexmlnsmulexmlns="http://www.mulesoft.org/schema/mule/core"  
  4.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.    xmlns:http="http://www.mulesoft.org/schema/mule/http"  
  6.    xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf"  
  7.    xsi:schemaLocation="  
  8.    http://www.mulesoft.org/schema/mule/corehttp://www.mulesoft.org/schema/mule/core/current/mule.xsd  
  9.    http://www.mulesoft.org/schema/mule/httphttp://www.mulesoft.org/schema/mule/http/current/mule-http.xsd  
  10.    http://www.mulesoft.org/schema/mule/cxfhttp://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd">  
  11.    <http:listener-confignamehttp:listener-configname="listener-config"host="localhost"port="63081"/>  
  12.    <http:listener-config name="listener-config" host="localhost" port="63081" doc:name="HTTP Listener Configuration"/>  
       <flow name="helloService2">  
       <http:listener config-ref="listener-config" path="/hello" doc:name="HTTP"/>  
       <cxf:jaxws-service serviceClass="com.atdoulian.service.HelloWorldInf" doc:name="CXF"/>  
       <component class="com.atdoulian.service.HelloWorldImp" doc:name="Java"/>  
       </flow>

  13.    </mule>  


4、测试

在浏览器上输入

http://localhost:63081/hello?wsdl




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值