Hi bouiaw, thanks for the code, I'll try to test it in the followings days (should migrate to new spring security soon). I'll keep you inform if everything...
I have a set of (Serializable) Java classes (a small inheritance hierarchy and a couple of other classes), and a set of corresponding ActionScript classes...
I can successfully send/convert a java.util.List of POJOs from tomcat into mx.collections.ArrayCollection of ActionScript Objects. Now I am trying to go in the...
Hi, Did you annotate your AS3 beans with: [RemoteClass(alias="my.java.Bean")] ? Otherwise, the deserializer can't know the target Java class and use an...
Hi, I have tried to reproduce your problem but I couldn't (either with a primitive long or a Long primary key)... Could you trace the readObject call: var o:*...
Hi Bouiaw and Bananetomate (super noms d'utilisateurs [;)] ), I have commited the new SpringSecurityService in the trunk, thanks a lot for this update. Tell...
Hi, Well, you're right, my previous answer didn't make much sense [:">] ... Could you debug the AMF3Deserializer.readAMF3Object() method and trace the encoding...
Hi, I guess the two last lines are about your bean: 1. encoding = 2: your AS3 bean is marked as dynamic. 2. className = "": your AS3 bean is a simple Object...
Hey guys, I am looking to use GAS to generate corresponding AS classes from my entities, but I don't use Eclipse (Netbeans fanboi.) Is it possible to use GAS...
Hi, I am trying to host a SWF on a CDN (content delivery network). I have tried embedding the SWF (located on the CDN) in my index.html (located on the local...
Hi, You may run gas3 outside Eclipse (see http://tech.groups.yahoo.com/group/graniteds/message/1371 <http://tech.groups.yahoo.com/group/graniteds/message/1371>...
Actually, it looks like this was caused by my limited understanding of AMF serialization. Is there a good reference for how this works? It's like magic most of...
Hi, Here is the AMF3 spec <http://download.macromedia.com/pub/labs/amf/amf3_spec_121207.pdf> (but you don't need to read this stuff)... I gess you are using...
The default implementation for get uid if the java side does not contain a uid property is public function get uid():String { if (<%= (identifier.as3Type.name...
There are almost endless conversations about using stored uids in Hibernate : http://www.hibernate.org/109.html This is also valid when dealing with AS3 <=>...
Thanks for the fast response. We are not using Tide yet but would like start a test implementation in a couple months. However, I would like to have as few...
I think that for this PhoneNumber entity which is very simple, you can simply ignore the problem of not maintaining the uid between server requests and keep...
The actual entities im using are a bit more complex than a phone number however I would think the same logic applies. It costs too much to send this to the...
Thanks, that's actually really interesting. I guess it's a combination of being new to Java Serialization in general, new to AMF, new to Granite, and working...
It works for me. Use the below settings in Services-config.xml <services-config> <services> <service messageTypes="flex.messaging.messages.RemotingMessage" ...
Hi, There are 3 standard externalizers available in GDS: default, enum and hibernate. If you don't use ejb3 entities, you don't need the hibernate one, so,...