Changeset 16 for trunk/earthplayer

Show
Ignore:
Timestamp:
04/03/08 17:14:24 (9 months ago)
Author:
silver
Message:
 
Location:
trunk/earthplayer/web/main/src/web/WEB-INF/flex
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/earthplayer/web/main/src/web/WEB-INF/flex/messaging-config.xml

    r2 r16  
    2525                </properties> 
    2626                <channels> 
     27                        <channel ref="my-polling-amf" /> 
     28                        <!--  
    2729                        <channel ref="my-rtmp" /> 
     30                         --> 
    2831                </channels> 
    2932                <adapter ref="EpmapAdapter" /> 
  • trunk/earthplayer/web/main/src/web/WEB-INF/flex/services-config.xml

    r2 r16  
    4242            <endpoint uri="http://{server.name}:{server.port}/{context.root}/messagebroker/http" class="flex.messaging.endpoints.HTTPEndpoint"/> 
    4343        </channel-definition> 
    44         --> 
     44         
    4545        <channel-definition id="my-rtmp" class="mx.messaging.channels.RTMPChannel"> 
    4646            <endpoint uri="rtmp://{server.name}:1978" class="flex.messaging.endpoints.RTMPEndpoint"/> 
     
    4949            </properties>                                                                                                                              
    5050        </channel-definition> 
     51        --> 
     52         
     53        <channel-definition id="my-polling-amf" class="mx.messaging.channels.AMFChannel"> 
     54            <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling" class="flex.messaging.endpoints.AMFEndpoint"/> 
     55            <properties> 
     56                <polling-enabled>true</polling-enabled> 
     57                <polling-interval-seconds>4</polling-interval-seconds> 
     58            </properties> 
     59        </channel-definition> 
     60         
    5161    </channels> 
    5262