<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:spring="http://www.springframework.org/schema/beans"
    xmlns:axis="http://www.mulesource.org/schema/mule/axis/2.0"
    xsi:schemaLocation="
        http://www.mulesource.org/schema/mule/core/2.0 http://www.mulesource.org/schema/mule/core/2.0/mule.xsd 
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
        http://www.mulesource.org/schema/mule/axis/2.0 http://www.mulesource.org/schema/mule/axis/2.0/mule-axis.xsd">
    <model name="integration">
        <service name="test">
            <inbound>
                <inbound-endpoint address="vm://test" />
            </inbound>

            <outbound>
                <outbound-pass-through-router>
                    <axis:outbound-endpoint
                        address="http://localhost/anthing">
                        <axis:soap-method method="dosomething" />
                    </axis:outbound-endpoint>
                </outbound-pass-through-router>
            </outbound>

        </service>

    </model>

</mule>
