请教大家有关mule问题.
最近在研究mule,感觉很糊涂
看网上的例子都是那么几种,
我想做的东西也很简单,
后台发布WebService:http://localhost:8081/ServiceTest/services/PersonService.ws?wsdl
里面方法:
public Person createPerson(String name, String surname, int age) {
Person p = new Person(name,surname);
                  p.setAge(age);
                  System.out.println("a person is created:" + p.getName());
                  return p;
}
这里Person是一个类,属性有name,surname,和age.
mule发布服务,通过inbound:
<inbound>
<cxf:inbound-endpoint address="http://localhost:8080/services/personServiceUMO"/>
</inbound><component class="mule.component.ComponentTest"></component>
这里ComponentTest是做什么用的?
我该在里面写什么?
我的outbound:
<outbound>
    <pass-through-router>
        <cxf:outbound-endpoint address="http://localhost:8081/ServiceTest/services/PersonService.ws?wsdl"
        </cxf:outbound-endpoint>
    </pass-through-router>
</outbound>
我用其他程序调用mule发布的web服务:http://localhost:8080/services/personServiceUMO
再通过outbound调到我后台发布的服务,
但是我后台的函数需要几个参数,
我该怎么写?
我程序怎么调用mule的服务?
头脑一片糨糊,感觉mule文档说明的太少,而且mule这层实际代码网上又很少
100分奉上.请大家帮我解决下,谢谢!