anybody knows if it is possible to do calls from flash to asp.net mvc actions using amf remoting ?
if yes, how? which technologies should be used and how to combine them
on the flash side it would be something like this:
//Connect the NetConnection object
var netConnection: NetConnection = new NetConnection();
netConnection.connect("http://localhost:59147/Home/Index");
//Invoke a call
log("invoke call TestMethod");
var responder : Responder = new Responder( handleRemoteCallResult, handleRemoteCallFault);
netConnection.call('TestMethod', responder, "Test");
I tried this and it hits the action but I can't find the 'TestMethod' and "Test" anyware in the Request
Thank You