Re: Reusing GWT Localization in Server Side Code

2010-08-17 Thread KenJi_getpowered
Why can't you just use resource bundle to get messages? On 17 août, 10:49, Joe Cole wrote: > What we do is use this code pattern: > > public interface IMessages { >    public MyMessages get(); // your messages interface} > > public class Messages { >    private static IMessages messages; >    pu

GWT 2.1 And jonas 4 10 3

2010-06-29 Thread KenJi_getpowered
Hello, I need help please, Can someone help me to figure out why does the version 2.1 does not work with jonas 4_10_3 where the 2.0.3 is totally functionnal? the message is odd : java.lang.NoClassDefFoundError: com/.../server/services/gwt/ LoginServiceImpl : com/google/gwt/user/server/rpc/Remo

Re: compile problems with GWT 2.1

2010-06-23 Thread KenJi_getpowered
Thanks BlessedGeek, It works perfectly with that line My app is totally functionnal and I was even able to add the new Data Presentation Widget. FYI: Correction is not yet included in the GWT 2.1 M1 version On 25 mai, 15:34, Thomas Broyer wrote: > On 24 mai, 01:53, Blessed Geek wrote: > >

Re: Data Presentation Widgets Help

2010-06-23 Thread KenJi_getpowered
I am trying to find the same doc, so far it is a bit empty. http://stackoverflow.com/questions/2891803/how-to-use-gwt-2-1-data-presentation-widgets http://groups.google.com/group/google-web-toolkit/browse_thread/thread/357ab22364b0bcea?pli=1 That is all i found but I have not tested that code yet

Re: gwt 2.1 m1 questions

2010-06-22 Thread KenJi_getpowered
I am sorry I cannot help you but I join your request for a better documentation of 2.1 Data Widget :p On 22 juin, 03:27, asianCoolz wrote: > 1. Is CellListPlacePickerView show all items even for huge list? not > using async? > 2. Is activitymanager using aysnc? > 3. i assume CellListPlacePickerVi

Re: GWT applet problem

2010-06-16 Thread KenJi_getpowered
We simply add this code into a view String htm = "" + " " + " " + " " + ""; kind of ugly, but It works fine! On 16 juin, 13:50, Jaroslav Záru

Re: GWT applet problem

2010-06-16 Thread KenJi_getpowered
We simply add this code into a view String htm = "" + " " + " " + " " + ""; kind of ugly, but It works fine! On 16 juin, 13:50, Jaroslav Záru

Re: HttpSession session = getThreadLocalRequest().getSession() Null Pointer Exception

2010-06-09 Thread KenJi_getpowered
; is not the same thread ;) > > On Tue, Jun 8, 2010 at 11:05 AM, KenJi_getpowered > wrote: > > > > > Hello every body, > > > I can't figure out why there is a Null Pointer Exception here. > > > I am trying to share informations through sessions within my

HttpSession session = getThreadLocalRequest().getSession() Null Pointer Exception

2010-06-08 Thread KenJi_getpowered
Hello every body, I can't figure out why there is a Null Pointer Exception here. I am trying to share informations through sessions within my application. I have a regular servlet that sets the session and insert a login. then I wanted to retrieve that login into a RemoteServiceServlet with that