Why can't my SSAS function be found?
I am using RTMFP to connect to my Flash Media Enterprise server instance with Influxis.
In my server-side main.asc file, I have something similar to the followowing.:
application.onConnect = function(client) {
trace("I am connected.");
}
function testit() {
trace("I am in testit.");
}
My client creates a NetConnection and calls the server site function like this.:
NetConnection netConnection = new NetConnection();
.
.
other details to connect (Connection is established fine...no problem).
.
.
netConnection.call("testit", null);
In my FMS instance logs, I see the "I am connected." message. But, I don't see the "I am in testit" message. What can possibly be wrong here? Why can't the client find the server side function? Am I missing anything
more in my main.asc file?
Thanks,
Dan
