zend-amf

Any suggestions on a basic PHP library for doing session management and authentication?

Hi, I am working on a project that exposes a number of web services to the public. Right now I have the serialisation side done (Using ZendAMF) and now I need to do the authentication. I was looking over Zend Session and Zend Auth and they look like they do what I want, but while doing that research I came across a lot of people expre...

Zend_Amf & addDirectory() vs setClass()

Is anyone else having problems with Zend_Amf's addDirectory()? It is supposed to autoload service classes and doesn't seem to. Though it works with setClass just fine. See snippet below. Ive seen olders posts on ZF 1.8 that had a bug like this. Is it possible that this bug still exists or am I missing something? I'm starting up the se...

Not getting the 'Zend Amf endpoint' mesage on dreamhost but OK on my localserver

I've been working with Zend Amf for few months and everything is fine on my localserver (and was fine on my test server hosted by dreamhost) until recently. Now every time I try to access the gateway via the URL (i.e. http://hostname/gateway/) instead of the 'Zend AMF endpoint' message should be getting, the browser simply prompts me to ...

Cannot bind data to DropDownList control in Flex 4

I'm fetching some data from a PHP application using Zend AMF. However I can't get the data to bind to a simple DropDownList control. The PHP method is: class Test { public function myMethod() { $res = array(); $res[] = array('NAME' => 'ThisIsATest', 'ID' => 1); return $res; } } Network Monitor repor...