<definitions xmlns="http://ws.apache.org/ns/synapse">
  <proxy name="Proxy1" transports="http https">
    <target>
      <inSequence>
        <send>
          <endpoint>
            <address uri="jms:/Proxy2?
                          transport.jms.ConnectionFactoryJNDIName=QueueConnectionFactory&amp;
                          java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory&amp;
                          java.naming.provider.url=vm://amqbroker"/>
	  </endpoint>
        </send>
      </inSequence>
    </target>
  </proxy>

  <proxy name="Proxy2" transports="jms">
    <target>
      <inSequence>
        <send>
          <endpoint>
	    <address uri="http://localhost:9000/soap/SimpleStockQuoteService"/>
	  </endpoint>
        </send>
      </inSequence>
    </target>
  </proxy>
</definitions>
