Hi Guys
Im a total newbee and I just wnat to get started quickly.
I have a service layer that I wish to expose form a war file. Since all my controllers are annotaed as well as my DWR stuff I...
Type: Posts; User: magpor; Keyword(s):
Hi Guys
Im a total newbee and I just wnat to get started quickly.
I have a service layer that I wish to expose form a war file. Since all my controllers are annotaed as well as my DWR stuff I...
I 'm stuck with the HessianServiceExporter. I get the exception
302: java.net.HttpRetryException: cannot retry due to redirection, in streaming mode
It seems to have something to do the...
Hi
Once again I agree jide is great but its not free and even though my company can afford to use jide, and we will, I think the core of Open Source is to have it open and also to learn from each...
Hi
I agree Jide is good, I use it alot but the point of open source is that it is open. It gives us way of learning from more experienced people. Personally I feel Im getting to the point where I...
Hi
I was wondering if any one has thought about starting a component project using the new Spring Desktop framework. Or I acctualy don't care if it is Spring RCP or Spring Desktop I guess a open...
Hi Guys
Has these been resolved yet because I have a hugh problem with this. I've tried doing this the way it is described but I still get the conectin closed issue. Also I've tried removing the...
How about getting JMS through the firewall can you do that with mule?
By the way I had a problem with EventBus, which was shown when I tried to remove a listener when an event fired...the classic...
Hi
Yepp thats exactly the solution I would suggest. Any of the Spring RCP guys feel like fixing this? Or maybe we should start contributing..
Cheers
Magnus
Hi
The OsX menubar is not Spring rich client speific but Java specific.
By adding
-Dcom.apple.macos.useScreenMenuBar=true
...
Hi
I have a userController defined<bean id="userController"
init-method="init"
class="se.so4it.dam.client.security.DamClientUserRoleSecurityController">
...
Hi
OSX uses the command button instead of ctrl as menu selection. What is the best way of enabling the usage of Toolkit.getDefaultToolkit().getMenuShortcutKeyMask () so that my client will use...
Hi
OSX uses the command buton instead of ctrl as menu selection. Whay is the best way of enabling the usage of Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() so that my client will use
ctrl...
Hi
I use the Spin RepaintManager to check my EDT rule. That is, that nothing graphical is done out of the EDT thread. The problem I have is that when the AbstractPublisher tries to set the...
Hi
Im wondering if there is any integration for the JavaHelp framework in spring rich client. I know I've seen it but can't remember of find it any more. I would like to implement context...
Hi
Im wondering if there is any integration for the JavaHelp framework in spring rich client. I know I've seen it but can't remember of find it any more. I would like to implement context...
We'll what I do is that the changes to the raw object is handled by my API since I want the copyByReference approach and not the copyByValue , which RMI uses. So in my API I do a save to the server...
Hi
Im trying to solve a problem where I want the form to update itself when a value changes directly on the backing object. Since the object changes in the background buy another thread I want...
Since the form uses a dirtycheck,which check the equility of the address and since my object is still the same but with new values it want trigger when setting the form object. It would be great if I...
Correct it would be great if I could ell the form that "hey I have changed externally update yourself". It would be great to have like a revalidate method or something
Magnus
setFormObject(your_new_instance); want do it since there is a ValueChangedDetector that detects if a vaklue has changed and it looks at the object identity. Remember my object is the same and the...
Hi
I have a form where I display an instance of a class called Record.
When the user presses save the Record instance is sent throuh RMI over to the server and is saved in the database. Also some...
Spring RCP uses images defined in a resource bundle. If you look in the simple app you'll see that it has a MessageSource and a imageResourceFactory defined:
<bean id="messageSource"
...
Hi all
Ok so I want to set a policy for JDialog sizes in my application. I have a search GUI where criterias can be added by pressing and up or down button and I want the JDialog to have room for...
I think it is a Spring frameowrk compatible issue. I had the same thing but when changing to a the Spring framework 2.0.1 release it fixed itself- Otherwise I had no problem chaning to spring...
If you check the component's being returned in the form when you add a property.
tableFormBuilder.add("Proeprty Name");
You'll see that it returns a array of component JComponent[].
Just cast...