I am the only one still using flash remoting (for ASP.Net). But in case somebody is interested in ancient technology this is my attempt to work around Adobe's plot to do away with accessing Asp.Net through remoting in Flash CS3. Adobe has only evil hate for the Microsoft Developer.
As for a Solution ....This is what I found so far.....
2 hrs later
*Nothing*
4 hrs later
I'm sure this documented some where. But I ran across a blog explaining the diff. between netconnection in 2.0 and 3.0 then after looking at the packets and realizing that the serialied data looked odd. I ran across macromedia's...err adobe's resolution... .......Just minor tweaks and this... objectEncoding=ObjectEncoding.AMF0
var nc:NetConnection = new NetConnection();
var url:String = "http://localhost/gateway.aspx";
nc.objectEncoding=ObjectEncoding.AMF0;
var onResult:Function = function(data:Object) {trace("onResult : " + data);};
var onStatus:Function = function(info:Object)
{
trace("info");
};
var obj:Responder = new Responder(onResult, onStatus);
nc.connect(url);
nc.call("FlashRemote.getBusinessObject", obj,”myparams”);
"I wish I could tell you we’d have the .NET version soon, but for now, this solution should work for you." - quote from a then macromedia product manager