Hi all,
I'm trying to build a JS client, able to re-use the same AMF services than my flash version.
I'm not realy sure how to do this.
In flash, i use RemoteObject with that :
endpoint :
http://localhost:2058/Gateway.aspxsource : Sakura.Service.Pattern.PatternService
destination : fluorine
and i call GetPatternByID(1) on my service.
In Haxe for JS i wrote that :
var cnx:HttpAsyncConnection = HttpAsyncConnection.urlConnect("http://localhost:2058/Gateway.aspx");
cnx.setErrorHandler(serviceErrorHandler);
cnx.Sakura.Service.Pattern.PatternService.GetPatternByID.call([1], getPatternByID_resultHandler);
and i always haxe an error : '
Invalid response "
Any Idea ?
Thx