-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices-config.xml
45 lines (44 loc) · 1.87 KB
/
services-config.xml
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
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<services-config>
<services>
<service id="zend-flashremoting-service"
class="flex.messaging.services.RemotingService"
messageTypes="flex.messaging.messages.RemotingMessage">
<default-channels>
<channel ref="zend-endpoint"/>
<channel ref="zend-endpoint-secure"/>
</default-channels>
<destination id="zendgateway">
<channels>
<channel ref="zend-endpoint"/>
<channel ref="zend-endpoint-secure"/>
</channels>
<properties>
<source>*</source>
</properties>
</destination>
</service>
</services>
<channels>
<channel-definition id="zend-endpoint" class="mx.messaging.channels.AMFChannel">
<endpoint uri="http://127.0.0.1:80/maya/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
<properties>
<add-no-cache-headers>false</add-no-cache-headers>
<polling-enabled>false</polling-enabled>
<serialization>
<instantiate-types>false</instantiate-types>
</serialization>
</properties>
</channel-definition>
<channel-definition id="zend-endpoint-secure" class="mx.messaging.channels.SecureAMFChannel">
<endpoint uri="https://127.0.0.1:443/maya/gateway.php" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
<properties>
<add-no-cache-headers>false</add-no-cache-headers>
<polling-enabled>false</polling-enabled>
<serialization>
<instantiate-types>false</instantiate-types>
</serialization>
</properties>
</channel-definition>
</channels>
</services-config>