SOMEONE!!! please HELP!!!
A local web server with PHP support----> wamp check!!
- A My SQL database ---> wamp check!!
- Remoting Flash classes--->
http://sordalion.blogspot.mx/2012/01/remoting-flash-mx-y-su-instalacion-en.html check!!
- The amphp Remoting library ---->amfphp-0.9.0 check!
... and Flash MX 2004 Pro, of course ---> check!!
I have :
wamp/www/shop/flashservices
wamp/www/shop/newstore
inc_sql :
define ("USERNAME","root");
define ("PASSWORD",'');
define ("HOSTNAME","localhost");
define ("DATABASE","shopping");
define ("DEBUG", "true");
and in the gateway :
<?php
//default gateway
include "../flashservices/app/Gateway.php";
$gateway = new Gateway();
$gateway->setBaseClassPath("./services/");
$gateway->service();
?>
and in flash:
myLogger.onLog = function( message:String ):Void {
trace( "myLogger-->>>"+message );
}
//IMPORTANT -> Change to the proper path
_global.svc = new Service(
"../flashservices/app/Gateway.php",
myLogger,
"shopping",
null,
and ..
myLogger-->>>5/2 23:55:36 [INFO] logger1: Creating Service for shopping
myLogger-->>>5/2 23:55:36 [INFO] logger1: Creating gateway connection for null../flashservices/app/Gateway.php
myLogger-->>>5/2 23:55:36 [INFO] logger1: Successfully created Service
myLogger-->>>5/2 23:55:36 [INFO] logger1: Invoking getFamily on shopping
someone???