Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When using flash remoting with amfphp, what can I write in php that will trigger the 'status' method that I set up in my Responder in Flash?

Or more generally, how can I determine if the service call has failed? The ideal solution for me would be to throw some exception in php serverside, and catch that exception in flash clientside... How do other people handle server errors with flash remoting?

var responder = new Responder(
    function() {
        trace("some normal execution finished successfully.  this is fine.");
    }, function(e) { 
        trace("how do I make this trigger when my server tells me something bad happened?");
    } 
);
myService = new NetConnection;
myService.connect("http://localhost:88/amfphp/gateway.php");
myService.call("someclass.someservice", responder);
share|improve this question
Sorry i cant follow you please clean your question, that you can get fast help – streetparade Mar 19 '10 at 20:53
edited some more. – Morieris Mar 19 '10 at 21:48

1 Answer

I figured out what I was doing wrong. Calling throw from php will trigger the Responder's error handler properly, but the tool I was using to sniff network traffic was getting in the way and messing up the calls.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.