amf remoting を使用して、フラッシュから asp.net mvc アクションへの呼び出しを実行できるかどうかは誰にもわかりませんか?
はいの場合、どのように?どの技術を使用し、どのように組み合わせるか
フラッシュ側では、次のようになります。
//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");
これを試してみたところ、アクションにヒットしましたが、リクエストに「TestMethod」と「Test」が見つかりません
ありがとうございました