-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathproxies.xml
More file actions
37 lines (28 loc) · 1.06 KB
/
proxies.xml
File metadata and controls
37 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<spring:beans xmlns="http://membrane-soa.org/proxies/1/"
xmlns:spring="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://membrane-soa.org/proxies/1/ http://membrane-soa.org/schemas/proxies-1.xsd">
<router>
<serviceProxy name="Balancer" port="8080">
<balancer />
</serviceProxy>
<!-- API to manage the nodes -->
<serviceProxy name="Cluster Management" port="9010">
<clusterNotification />
</serviceProxy>
<!-- Mock nodes for testing. Remove them in production. -->
<serviceProxy name="Node 1" port="4000">
<counter name="Node 1 " />
</serviceProxy>
<serviceProxy name="Node 2" port="4001">
<counter name="Node 2 " />
</serviceProxy>
<serviceProxy name="Node 3" port="4002">
<counter name="Node 3 " />
</serviceProxy>
<serviceProxy name="Administration" port="9000">
<adminConsole />
</serviceProxy>
</router>
</spring:beans>