Hi, I never tried clustering but I know several people here did (at least with JBoss), because many issues with session serialization where reported and fixed....
You have to add this to the Module mxml for instructing Tide to handle injections and others : <mx:Metadata>[Name("myModule")]</mx:Metadata> It's not needed in...
The default Spring security filter can not work with a Tomcat Comet servlet (it would have to implement CometFilter). Anyway, the correct way to secure a...
Hi, Does anyone know how can I process just when logout successfully completed on server. Unfortunatelly Identity.logout() does not take handlers as...
Hi William, Just to let you know the construct I used. And it work perfectly...very fast, faster than Seam Events : RichFaces ajax push. -I use ActiveMQ...
There are 2 options that are not mutually exclusive : 1. using subtopics (that support hierarchical filtering) : var c:Consumer = new Consumer(); c.destination...
I think I have isolated the problem, but I wanted to ask what is the proper way to do things. My application displays and manipulates data that is lazy loaded...
I Got this aspect working. I got rid of the stateful session bean (it was legacy from when I first started) and am using a UserHome now. Thanks, Jeff...
Hi - I get the following error message when sending an object from Java to the Flex Client using GraniteDS: ArgumentError: Error #2173: Unable to read object...
Hi - I pasted the wrong code. The last line in the code is casting to a ListCollectionView not a UIDSet. Sorry about the mistake. I am getting the error...
Hello, I was thinking about having some sort of flex console which would show services that have been exposed on the server-side, with their possible methods...
I've modeled my application like the gdsgae example project. I can make calls to the server that pass no data just fine, however when I try calling the server...
The config has changed a little since 2.0.GA In services-config.xml : Replace entityManagerFactoryJndiName by entity-manager-factory-jndi-name Also in...
Since 2.0 RC1 there is a set of JMX MBeans that allow to display and reload the GDS configuration at runtime. We don't think a Flex console specific to GDS...
Usually this happens when your Java classes are not synchronized with your AS3 classes. Regenerate your AS3 entities and try again. HTH ... -- /** * Pedro Sena...
Double check if you do not have libraries/jars of two different versions of GDS. Are you using 2.0.0.GA right? ... -- /** * Pedro Sena * Systems Architect *...
Thanks for answer I regenerate my entities, refresh my classes in build path but the problem persist. The readExternal() and whole .as file, the properties (is...
I had already made the annotated-with hyphen change in granite-config.xml. I'm not using entityManagerFactoryJndiName in services-config.xml. Here is my...
I modified my config to be this and then everything worked: <persistence-manager-bean-name>tidePersistenceManager</persistence-manager-bean-name> Thanks for...
Hi, I'm using GDS 2.0 with Spring. I have a couple questions on externalizers. I have some objects with very deep/extensive object graphs. For example, I...
My object graph has a TopLevel object with an ArrayList of child objects attached to it. Those child objects may sometimes exist, and sometimes won't exist....