<?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:http="http://www.mulesource.org/schema/mule/http/2.0"
  xmlns:vm="http://www.mulesource.org/schema/mule/vm/2.0"  
  xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
       http://www.mulesource.org/schema/mule/core/2.0 http://www.mulesource.org/schema/mule/core/2.0/mule.xsd
       http://www.mulesource.org/schema/mule/http/2.0 http://www.mulesource.org/schema/mule/http/2.0/mule-http.xsd
       http://www.mulesource.org/schema/mule/vm/2.0 http://www.mulesource.org/schema/mule/vm/2.0/mule-vm.xsd">
  
  <http:connector name="HttpConnector" proxyHostname="proxy"
    proxyPort="3128" />
  <http:connector name="LocalHttpConnector" />
  <model name="testing">
    <service name="bridge">
      <inbound>
        <vm:inbound-endpoint address="vm://input"></vm:inbound-endpoint>
      </inbound>
      <outbound>
        <outbound-pass-through-router>
          <outbound-endpoint connector-ref="HttpConnector"
            address="http://200.41.9.227:7777/WebService/WS/WebService.jws?method=getXMLProgramasOL">
          </outbound-endpoint>
        </outbound-pass-through-router>
      </outbound>
    </service>
  </model>
</mule>
