Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.7.0
-
Fix Version/s: None
-
Component/s: Zend_Amf
-
Labels:None
Description
When trying to send two or more requests at the same time on the same connection object, I receive a Client.Data.Underflow error for each request following the first one. This is the offending code:
var responder:Responder= new Responder(this.handleUserFilters,Application.application.faultHandler);
WebService.call("Web_Service_Model.getUserFilters",responder,filterID);
var responder2:Responder=new Responder(handleFilterProperties,Application.application.faultHandler);
WebService.call("Web_Service_model.getFilterProperties",responder2,filterID);
The second web service call will generate the error. I have been able to work around the issue by creating a function that makes a new NetConnection object for each call requested, however I know that AMF should be capable of handling simultaneous requests as I am coming over from AMFPHP where such a thing was possible.
Issue Links
| This issue depends on: | ||||
| ZF-6393 | Wrong AMF0_AMF3 reference counting |
|
|
|
Can you submit a complete AS class file for this bug. I am unable to recreate this issue.