So much for Macromedia monitoring these and responding. It's been a week and I
am still at the same place so in an effort to provide as much information as
possible where is my actionscript...
#include "NetDebug.as"
#include "NetServices.as"
init = function () {
if (this.inited != undefined) {
return;
} else {
this.inited = true;
NetServices.setDefaultGatewayUrl("http://localhost/wsDealerSkins/gateway.aspx"
);
gatewayConnection = NetServices.createGatewayConnection();
ASPXservice =
gatewayConnection.getService("http://localhost/wsDealerSkins/wsDealerSkins.asmx?
wsdl", this);
trace("REMOTING INITIALIZED");
}
};
//call init function
init();
GetAllMakes();
function GetAllMakes() {
ASPXservice.GetAllMakes(682);
}
function GetAllMakes_Result(result) {
trace(result);
}
function GetAllMakes_Status(error) {
trace(error.description);
}
The response from this in the NetConnection Debugger is;
ConnectString: "
http://www-t1.dealerskins.com/wsDealerSkins/gateway.aspx" DebugId: 0
EventType: "Connect"
MovieUrl: "file:///C|/Inetpub/wwwroot/wsDealerSkins/Test.swf"
Protocol: "http"
Source: "Client"
Time: 1090899685722
Date (object #1)
....."Mon Jul 26 22:41:25 GMT-0500 2004"
NOTHING ELSE (Nothing in NetConnection Debugger, nothing in the Output)
Zilch.
I have read thru more than 100 pages of their online docs, tutorials, posts,
and even have talked to support (PAID) and no solution.
I have...
1. added the path to WSDL.exe
2. added ASPNet user to have write privilages to the bin subdirectory
3. copied flashgateway.dll and frconfig.txt to the bin subdirectory
4. Installed .Net Framework SDK 1.1
5. Installed Flash Remoting
6. Reinstalled IIS 6
7. run aspnet_regiis.exe -i followed by iis_reset
8. even put WSDL.exe in the bin subdirectory.
HELP!!! PLEASE!!!!