La primera version del cliente Flash de MXNA solo trabajaba con algunos metodo disponibles de su API, en esta version utilizo 8 de sus metodos
- getSmartCategories
- getCategories
- getSearchHistory
- search
- getMostRecentPosts
- getMostPopularPosts
- getPostsBySmartCategory
- getPostsByCategory
Estas son las opciones mas usadas segun mi punto de vista, aunque estaria bien que agregaran el metodo getPostByLanguage 🙂 .
En fin por el momento lo voy a dejar asi, en cuanto haya modificaciones del API ire agreagandolas al cliente.
PD. El tutorial estara listo pronto.. 😀
Great stuff, thanx for sharing.
Strange thing is, when i use my own gateway.php it does not work, when i use your gateway url (no worrys just a few test hits) , it works.
I have the beta up 😉 so must be missing a simple thing here.
hi there.
you must edit you gateway.php indicating that to use to communicate with the Web services.
there is three options
SoapClient PHP5
NuSOAP
PEAR::SOAP
I use NuSOAP, download here, place the nusoap.php file in the flashservises/lib directory
my gateway.php looks like this.
include “./app/Gateway.php”;
$gateway = new Gateway();
$gateway->setBaseClassPath(“./services”);
$gateway->setLooseMode(true);
$gateway->setCharsetHandler( “none”, “ISO-8859-1”, “ISO-8859-1”, “ISO-8859-1” );
$gateway->setWebServiceHandler(‘nusoap’);
$gateway->service();
PD. i know my english suxs 8)
Bonita page
yeah thanx , i made a ‘stupid’ error without setting the setWebServicesHandler, which does the trick.
(don’t talk about it )
PD (in dutch that would be, PS) my english is just as worse 😉
Thank you for the great Solution …!
Best regards from Munich
Attila