por favor

ya he instalado alrededor de 4 veces todo de nuevo incluyendo diferentes verciones de flash para ver si me acaba de funcionar lo del remoting y nada, he intentado hacer cuanto tutorial me he encontrado, y nada, ha hecho el gateway de 50 formas diferentes pero nada. please

del lado del servidor no hay problemas al parecer porque hice lo del debug.php que publicò aqui mismo clablevel y muestra bien el resultado de la funcion a la cual llamè, por otra parte en el lado cliente las librerias parecen estar bien porque el componente remotingConnector esta ahi y en common library- remoting estan las dos clases que debian estar (remotingClasses y remotingdebugclasses) pero al poner este codigo en el flash :

//Set this to the location of your gateway.php file
var gatewayUrl:String = "http://localhost/flashservices/gateway.php";

// Import packages necessary for Remoting debugging and coding
// Note that the Remoting components must be in the library for this to work
import mx.remoting.*;
import mx.remoting.debug.*;
import mx.rpc.*;

//Start the NetConnection debugger
NetDebug.initialize();

//Set this to the name of the remote service
var serviceName:String = 'talkback';

// Create PHP Remoting Service
var talkback:Service = new Service(gatewayUrl, null, serviceName);

// Define result handling code
function handleSimpleReturn(re:ResultEvent) {
trace("Got result \""+re.result+"\" of type "+typeof (re.result));
}
function handleArrayReturn(re:ResultEvent) {
trace("Got result \""+re.result+"\" of type "+typeof (re.result)+" which contained the following:");
trace(" theKey: "+re.result.theKey);
}
function handleFault(fe:FaultEvent)
{
trace("There was this fault: " + fe.fault.faultstring);
}

// Call some functions
trace("Calling returnString");
var pc:PendingCall = talkback.returnString("Flash Remoting is groovy");
pc.responder = new RelayResponder(this, 'handleSimpleReturn', 'handleFault');
trace("Calling returnNumber");
var pc:PendingCall = talkback.returnNumber(50);
pc.responder = new RelayResponder(this, 'handleSimpleReturn', 'handleFault');
trace("Calling returnArray");
test = new Object();
test.foo = "bar";
var pc:PendingCall = talkback.returnArray(test);
pc.responder = new RelayResponder(this, 'handleArrayReturn', 'handleFault');


me devuelve lo siguiente

Calling returnString
Calling returnNumber
Calling returnArray
There was this fault: no class named talkback is known to the gateway

mi pagina gateway.php tiene este codigo hecho utilizando el programmers notepad

<?php
//default gateway
include "../flashservices/app/Gateway.php";

$gateway = new Gateway();
$baseClassPath = $_SERVER['DOCUMENT_ROOT'] . " /project/services/ ";
$gateway->setBaseClassPath($baseClassPath);
$gateway->service();

?>

y el root de mi servidor local es C:\wamp\www\

y accedo a el
o sea http://localhost/flashservices/gateway.php


por favor de veras necesito que eso me funcione, agradezco cualquier tipo de ayuda :shock:

gracias :crap: