This behaviour seems correct to me as observers are not bound to a particular view or dispatcher, but only to an event type. So all observers for a particular...
Folks, I have GraniteDS deployed in Tomcat 6.0.18. My test Flex application subscribes to a JMS Topic via Gravity. My problem is that the JMS subscription...
There's already a JIRA on this issue. It's fixed in the trunk but unfortunately the trunk is not really usable for now. There will be a release in one or two...
What about something like what Mike L. said @Observer(value="someEvent", create="false") Adding a "create" flag to true or false would allow a lot more ...
That looks good and easy to implement. Can you add a JIRA for 2.0 ? ... least ... the ui ... back and ... Window */ ... "creationComplete" ... the Map...
... I debugged the code. Here is the execution flow that I got: 1. meta_mergeEntity() is called for the Business object 2. meta_mergeCollection is called for...
I have been trying to do the example given in the documentation and I am getting stuck in the end. ******** "Now the component is ready but still it has to be...
I used the EJB3 example to build a project, and it works well. I then disassembled the project to separate it into an EJB ear (for the back-end EJB stuff) and...
Having 2 different deployments for the war and the ejbs means that you have to configure the ejb factory as if the ejb were remote, so you need to add the...
Hi, I think I've discovered a bug that prevents a ByteArray from being received when it is sent from GraniteDS in the 'body' part of an AsyncMessage. The...
I am currently pulling my code apart to follow a more model-view-controller design, and I have uncovered what I think to be a bug. I have a desktop view...
I've done a little more digging, and I've uncovered a few interesting things that may help debuggers smarter than me. 1. If I make my control extend...
Folks, When a Flex client subscribes to a Topic using Gravity a long running TCP connection opens to service the subscription (data push). All subsequent Topic...
This is indeed the intended behaviour in GDS 1.2. Tide listens only to TideUIEvents dispatched by UIComponents in the context. 'Controller' components can...
Right, this is supposed to handle serialization of AS classes that do not have a Java equivalent by transmitting an AMF encoded byte array instead of the...
This will probably not work. There are two different http connections, one for data transmission and one for commands (subscription/unsubscription). If they...
Hi William, Many thanks (again) for the quick response. To clarify, does it use a long running connection for commands e.g. subscriptions or does each command...
The current support for Spring in Tide assumes that Flex clients call directly Spring services. After some reading in the Spring docs and in some blogs, it...
I'm afraid that there is no other documentation about this internal implementation than the source code :-) The long-polling maintains a semi-permanent http...
I am using a client conversational component: [Name("myEntityCtl", scope="conversation")] [In] public var myEntityHome:Object; private var curEntity:MyEntity; ...