Hi there having some issues connecting a remoteobject to a service on 
the webapp, and also work out how to do it over https aswell is this right ?

service-config.xml 

<?xml version="1.0" encoding="UTF-8"?>
<services-config>
    <services>
        <service id="red5-flashremoting-service"
                 class="flex.messaging.services.RemotingService"
                 messageTypes="flex.messaging.messages.RemotingMessage">
            <destination id="amfred5">
                <channels>
                    <channel ref="red5_https"/>
                </channels>
                <properties>
                    <source>*</source>
                </properties>
            </destination>
        </service>
    </services>


    <channels>
        <channel-definition id="red5_https" 
class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://192.168.1.1:5080/myapp/"; 
class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
    </channels>
</services-config>

mxml -

<mx:RemoteObject showBusyCursor="true" destination="amfred5" 
source="feedService" fault="faultHandler(event)" id="red5Service">
            <mx:method name="getToken" result="resultService(event)" />
    </mx:RemoteObject>


So far no connection, I can only do it via nc.call.


_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to