1 <?xml version='1.0' encoding='UTF-8'?>
2 <mule xmlns = 'http://www.mulesource.org/schema/mule/core/2.2'
3 xmlns:xsi = 'http://www.w3.org/2001/XMLSchema-instance'
4 xmlns:spring = 'http://www.springframework.org/schema/beans'
5 xmlns:http = 'http://www.mulesource.org/schema/mule/http/2.2'
6 xmlns:script = 'http://www.mulesource.org/schema/mule/scripting/2.2'
7 xsi:schemaLocation = '
8 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
9 http://www.mulesource.org/schema/mule/core/2.2 http://www.mulesource.org/schema/mule/core/2.2/mule.xsd
10 http://www.mulesource.org/schema/mule/http/2.2 http://www.mulesource.org/schema/mule/http/2.2/mule-http.xsd
11 http://www.mulesource.org/schema/mule/scripting/2.2 http://www.mulesource.org/schema/mule/scripting/2.2/mule-scripting.xsd'>
12
13
14 <http:endpoint name='Sample' address='http://localhost:8080/sample_dynamic_service' synchronous='true' />
15
16
17 <!--
18 Force the Mule container to cache these components so that
19 we can find them in import statements; otherwise the Jython
20 interpreter will think that the .jar files/modules or
21 .jar files/packages aren't in scope.
22 -->
23 <spring:bean id='GsonCache' class='com.google.gson.Gson' />
24
25
26 <script:script name='SampleMuleComponent' engine='jython' file='article/mulescript.py' />
27
28
29 <model name='Core'>
30 <service name='SampleService'>
31 <inbound>
32 <inbound-endpoint ref='Sample' />
33 </inbound>
34 <script:component script-ref='SampleMuleComponent' />
35 </service>
36 </model>
37 </mule>
38