Code: public function getDepartment():void { var token:AsyncToken=Spring.getInstance().getSpringContext().departmentService.getAllDepartment(result, fault); ...
I don't know... how do you define a JMS topic? I guess I thought that's what I was doing, but I don't have any experience with JMS beyond this example....
hello, i have made a very simple project which just manages a simple entity using graniteds and seam. here is my code: OrcPersonList.mxml <mx:Application> ... ...
I have a problem that I'm sure is my own poor coding, but I wanted to ask a question and get a better understanding about merging objects. I have a control...
You have probably a topic configuration file in your jboss 5.0.1 deploy folder (search for 'testTopic' in the pile of xml files). That should be enough to copy...
You should always have a @Version field on your JPA entity to handle these cases of concurrent updates correctly. You'll get an OptimisticLockException on the...
RemoteObjectProxy is used only when using Tide with a non-Tide service factory. With a Tide/Spring service factory, you should do this : [In] public var...
Can you check with a debugger or trace what is the value of graniteOrcPersonHome.instance here : PopUpManager.removePopUp(orcPersonEditForm); // Here ...
Hi, Hi, How do I get the unique connection id of the caller of remote server side method when there is more than one connection with the same http session id? ...
Please forgive my confusion here, I have read through the documentation and I am not quite clear on which pieces go together: Assuming that I have: ...
In section 3.6.6 of the documentation the following paragraph: "It is not enough to just create this class and annotate it. It needs to be registered on the...
the document is only about war project. May I know how to build ear project with eclipse, because web and ejb are separated, we build Flex under web, and java...
Hi all I'm currently trying Granite 2.1.0 RC1 I have only one remote service (a remote facade) invoked by controllers in global and conversation contexts. With...
I am getting a "Could not evaluate result expression" error and I'm not sure the exact cause. I'm also not sure if it is my problem and I'm doing something...
Also, when I try to do #1 below I get: Unknown fault: [FaultEvent fault=[RPC Fault faultString="[MessagingError message='Destination 'spring' either does not...
I believe that you might be getting the global context component because an "entry" can only exist in a global context or a conversation context, but not both....
Hi Jeff, you are right, but in granite 2.0 global proxies to remote services works right when called in a conversation context. It seems, looking at the source...
1. and 2. are correct with a Tide SpringServiceFactory (the most common case) : org.granite.tide.spring.SpringServiceFactory in services-config.xml. 3. (with...
It is not recommended to use the same client proxy in both global and conversation scope. As you say, the better solution is to have two different services of...
When I try to do #1 below I get: Unknown fault: [FaultEvent fault=[RPC Fault faultString="[MessagingError message='Destination 'spring' either does not exist...
I think there is a DSClientId header in the AMF message. You can get it by defining an a AMFMessageInterceptor in granite-config.xml. 2009/11/23 fatbatman2000...