Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Blocker
-
Resolution: Unresolved
-
Affects Version/s: 1.9.5
-
Fix Version/s: None
-
Component/s: Zend_Amf
-
Labels:
Description
My code:
if (! ($this->_cache->test ( $cache_id )) {
# generate data
# save to cache
# return data
} else {
# load data from cache
# return data
}
The problem is when data from cache is loaded I get the following Notice:
Undefined property: VOKpiValues::$1962 in <b>/var/www/html/Zend/Amf/Parse/Amf3/Serializer.php</b> on line <b>469</b>
So the problem is only, when data is loaded from cache. "1962" is an object with some properties. When I disable error_reporting "1962" is set to null.
Can you upload your zend amf endpoint and service also any flex code that shows what you are trying to do.