blob: 4a28a1e2d69e67ea7bde2cd87fe1a0efe9568dcc [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<service id="remoting-service"
class="flex.messaging.services.RemotingService">
<adapters>
<adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
</adapters>
<default-channels>
<channel ref="my-amf"/>
</default-channels>
<destination id="remoting_AMF" channels="my-amf">
<properties>
<source>features.remoting.EchoService</source>
</properties>
</destination>
<destination id="remoting_AMFX" channels="my-http">
<properties>
<source>features.remoting.EchoService</source>
</properties>
</destination>
<!-- Destination that can be used to push messages from the server -->
<destination id="serverPushRO" channels="my-amf">
<properties>
<source>features.messaging.serverpush.ServerPushService</source>
<scope>application</scope>
</properties>
</destination>
<!-- A destination protected by a basic security constraint.
Security constraints are defined in services-config.xml
-->
<destination id="remoting_AMF_SecurityConstraint_Basic" channels="my-amf-loginafterdisconnect">
<properties>
<source>features.remoting.EchoService</source>
</properties>
<security>
<security-constraint ref="sample-user-basic"/>
</security>
</destination>
<!-- A destination protected by a custom security constraint.
Security constraints are defined in services-config.xml
-->
<destination id="remoting_AMF_SecurityConstraint_Custom" channels="my-amf-loginafterdisconnect">
<properties>
<source>features.remoting.EchoService</source>
</properties>
<security>
<security-constraint ref="sample-user-custom"/>
</security>
</destination>
<!-- Used by Flex clients to create destinations at runtime -->
<destination id="RuntimeConfigurator" channels="my-amf">
<properties>
<source>features.runtimeconfig.RuntimeConfigurator</source>
</properties>
</destination>
<!-- BEGIN destinations for testing MessageBrokerFilters -->
<destination id="filteredAck">
<properties>
<source>features.remoting.EchoService</source>
</properties>
</destination>
<destination id="filteredFault">
<properties>
<source>features.remoting.EchoService</source>
</properties>
</destination>
<!-- END destinations for testing MessageBrokerFilters -->
</service>