How about adding support for messaging also so that AS clients can subscribe to a service to listen messages and messaging service can push stuff to subscribed...
Hi, Actually, this have nothing to do with services (POJO/Spring/EJB3) but with AMF3 serialization: that's a main feature in AMF3 to be able to deal with...
I'm trying to invoke gas3 (ActionScript Bean generation) but for some reason it looks like it is trying to find my compiled classes under the \classes...
I got past this issue. Now I'm encountering this issue: ################################# [INFO] [antrun:run {execution: default}] [INFO] Executing tasks ...
Nevermind. I think this has to do with mvn2. I ditched it in favor of the Ant build file and it seemed to work ok (within the Eclipse environment). Seems...
I've used gas3 to generate the actionscript code for my pojos and on one of the "Base" actionscript pojos, I'm getting this error: 1004: Namespace was not...
Hi, I'm using Granite DS with Java Pojo Services to request data from a Flex client. Everythings works fine and I am able to display my data in something like...
Hi Scotty, No special technique... Basically, you must reload the entire object that contains the uninitialized collection and fetch its content (either by a...
First, thanks for the quick bug fix and response. Second, I should of been clearer about what techniques I am looking for. I am curious if anyone has an...
Could you post your ObjectRelationsManager.as code (as well as a sample use case and server-side callback method) ? Thanks. ... side. I ... results. ... ...
I'm looking at the AS code generated by gas3 and I noticed that there are errors on a few of them. In particular, these errors pertain to the import of actual...
Doesn't look like it. I checked my service to see if it received the call ok from AS via GDS and it looked good. I also checked the returned object to see if...
Hello! ... Yes, its common error. Try not only import classes, but declare them explicity somewhere in mxml: var a:myclass; mxmlc compiler will not include...
Hi Igor, thanks for the reply. Now I'll give that a shot (I'll need to import + make explicit declarations for ~30 classes). However, I'll still run into the...
Thanks Franck. I'm taking in your suggestion now. I've encountered another "subtle" issue with serialization. I have several Enums (java.lang.Enum) that are...
I have a few POJOs with public getters only and without any instance variables to represent them. I would expect gas3 to generate corresponding AS classes...
This is intentional. You must implement those methods yourself on AS3 side. gas3 only ensure that you have the exact persistent state of your bean on AS3 side....
If that is the case, then which do you recommend: implementing a groovy template (gsp) to create the getters for AS3 or overriding the generated AS3 class...