This is a simple tool for testing Flash Remoting Calls I want to share. You can use the tool from here: http://bodurov.com/TestFlashRemoting/ or download the source from here http://bodurov.com/TestFlashRemoting/TestFlashRemoting.zip This is a simple and light weight tool to test your services.
I have set up a test service with this source:
using System;
namespace com.bodurov {
public class TestFlashRemoting {
public string SayHi(string name){
return "Hi " + name;
}
}
}
The URL for this service is http://bodurov.com/weborb.aspx the Service (.NET class name) is com.bodurov.TestFlashRemoting and the method SayHi. The method accepts one string parameter that’s why JSON of the parameters would look like
[ "Name" ]