Hi All,

Moonshine now working properly. The folks at Moonshine were fantastic,
instant response and quickly solved my problem.

The complete code for the project is at https://justpaste.it/1bgfa

The important bit is here 

<js:RemoteObject id="roSTime" destination="ColdFusion"
source="localhost:8500.booxotel.STime"
result="roCheckTestResultHandler(event)" fault="roFaultHandler(event)"/>

private function init():void{
        this.roSTime.send("getUTCDateTimeNow", []);
}

private function roCheckTestResultHandler(event:ResultEvent):void{
        Alert.show("Date received " + event.data, this);
}
                        
private function roFaultHandler(event:FaultEvent):void{
        Alert.show("Fault " + event.message, this);
}

When run, it generates this error in the console window

destination fault handler Object { code: -1004, message: "Invalid response
type.", detail: "Invalid XMLHttpRequest response sta…", data: null } 
Language.js:238:7

Does that mean it's reached CF and got a response it didn't understand?

Doug



--
Sent from: http://apache-flex-users.2333346.n4.nabble.com/

Reply via email to