Anyone have any idea why I would be seeing the following error when creating my
own mx.screens.Form subclass?
The class 'mx.remoting.Service' could not be loaded.
My class appears as follows:
import mx.remoting.Service;
class com.streamray.util.FCSLoad {
public function init():Void {
logMessage("init");
super.init();
initialized = false;
// Get our gatewayService
initGatewayService();
// Register an onReveal handler
addEventListener("reveal", onReveal);
}
public function onReveal():Void {
logMessage("onReveal");
if (!initialized) {
initialized = true;
}
}
// Used to get a connection to our java service object
private function initGatewayService():Void {
logMessage("initGatewayService");
gatewayService = new Service("http://127.0.0.1:8080/broadcast/gateway",
null, "com.streamray.admin.remote.RemoteService", null, null);
}
}
I have installed and reinstalled the flash remoting components to no avail.
TIA,
Carl
djrez3 - 26 May 2005 22:20 GMT
:frown;
I am having the exact same issue.
The class 'mx.remoting.Service' could not be loaded.
I know that my gateway and services are working ok because i have no issue
with loading them into theservice browser.
I have had no issues with the v1 remoting components but was really wanting to
get everything in theis project set in AS2 and components v2 .... but this is
starting to look like a bad idea. if someone could respond it would be greatly
appreciated.