views:

237

answers:

0

I have two classes that inherit from NetConnection and both establish connections to two different FMS Applications.

Class A connects to the vod application on FMS
Class B connects to the BWCheck application on FMS

BWCheck calls two callbacks on ClassB "onBWCheck" and "onBWDone" (these methods are members of Class B, but not Class A)

When I connect to FMS I first connect to "BWCheck" with Class B to establish Bandwidth. This works fine. However, when I connect to "vod" (which doesn't call either "onBWCheck" or "onBWDone", in fact it doesn't even have a main.asc file) with Class A. I get the following error

ClassA was unable to invoke callback onBWDone. error=ReferenceError: Error #1069: Property onBWDone not found on com.mysite.ClassA and there is no default value.

Obviously "vod" (or for some reason "BWCheck") is attempting to call "onBWDone" on Class A, but "vod" doesn't have any server side ActionScript defined and Class B's connection to "onBWCheck" should be closed.

Why is "vod" calling callbacks despite not having any serverside ActionScript? -or- Why is "BWCheck" still active and calling callbacks on Class A?