Re: Alternative to using Blob on Client Side Code

2011-05-30 Thread Frederic Conrotte
You must first write a servlet that sends the binary to the user Then when the user clicks on the button you call the servlet with the proper parameter. Here is an excerpt from our servlet implementation response.reset();

Re: Folder icons in eclipse

2010-11-08 Thread Frederic Conrotte
You can configure Errors/Warning using menu Window - Preferences - Google - Errors/Warnings You can also configure the Problems view like this: http://www.vogella.de/articles/Eclipse/article.html#tips_problemsview On Nov 8, 2:18 pm, Musicman75 stephan.beu...@googlemail.com wrote: That's the

Re: GWT Hosted Mode Slow

2010-09-16 Thread Frederic Conrotte
We have the same issue and we realized that deleting all the GWT- produced files in the Windows %Temp% folder solved the problem Fred On Sep 15, 11:26 pm, Niels n...@niemo.com wrote: I have a bit of a problem with GWT Hosted mode taking an awful long time to launch my app - even just reloading

Re: Making GWT look good...

2010-08-09 Thread Frederic Conrotte
I'm glad to see the GWT Team taking more care of styling. Styling is one of the reasons why we are currently using an external library like GXT from Sencha to build our entreprise apps. I think GXT did a pretty good job there. On Aug 9, 10:17 am, Olivier oliv...@digiworks.es wrote: Hi Chris,

Re: gwt module may need to be (re)compiled

2010-07-29 Thread Frederic Conrotte
Sometimes you see the message “GWT module fundd may need to be recompiled “ popping up. It’s simply because the URL does not contain the “? gwt.codesvr=127.0.0.1:9997” part at its end. Ensure the full URL is passed to the Web server and the problem disappears. Fred On Jul 29, 10:18 am, Thomas

Re: GWT Rocks!

2010-07-28 Thread Frederic Conrotte
Complètement d'accord. I've started professionnal GWT developement 5 months ago and I must say I've been really amazed by the productivity and easiness of GWT. Well done GWT Team ! On 28 juil, 07:28, Craigo craig...@gmail.com wrote: In Australian  GWT is a bloody rippa!!! On Jul 28, 8:30 am,

Re: can't seem to get spring-security and gwt going...

2010-07-16 Thread Frederic Conrotte
For beginners Spring Security is not that easy to understand/ implement, because it's full featured and does a lot of things for you. If you haven't done so yet I advise you to read the Spring Security Reference: http://static.springsource.org/spring-security/site/reference.html Then download

Re: GWT Application access levels

2010-07-16 Thread Frederic Conrotte
What you need is to implement login/security on your application, to define user profiles and give them security roles. On Jul 16, 9:45 am, ehognestad ehognes...@gmail.com wrote: I am using GWT for making an enterprise application, and I need to limit the access the users get to the

Re: JAXB GWT How I can use JAXB generated classes on client side

2010-07-15 Thread Frederic Conrotte
There is no problem in using JAXB along with GWT. See this thread for explanations: http://code.google.com/p/google-web-toolkit/issues/detail?id=4020q=JAXBcolspec=ID%20Type%20Status%20Owner%20Milestone%20Summary%20Stars#c10 On Jul 15, 2:57 am, Shyam Visamsetty shyamsunder...@gmail.com wrote: I

Re: This is getting beyond a joke

2010-07-15 Thread Frederic Conrotte
Thanks for your efforts David. On Jul 15, 4:18 am, David Chandler drfibona...@google.com wrote: Hang tight, folks, we're on it. As has been noted in this thread, GWT itself is not built with maven, so it's not a 100% automated process to push to maven central. But we're working hard to get

Re: Currency/Money and Time Library

2010-07-15 Thread Frederic Conrotte
For Money there is nothing specific to GWT. But for dates, if you want to avoid loosing lot of times with OS/ browsers specific javascript date management and time zones, I strongly advise you to use you own date class with Strings to represent fields. On Jul 15, 9:18 am, AlexG

Re: ImageResource Sprites and RepeatStyle.Horizontal/Vertical generating massive images

2010-07-09 Thread Frederic Conrotte
Did you check your Compile reports ? http://code.google.com/webtoolkit/release-notes.html#Release_Notes_2_0_0_rc2 On Jul 9, 1:55 pm, DaveC david.andrew.chap...@googlemail.com wrote: Hello, This is really just a heads up... We are currently developing a large/complex GWT app and are making

Re: Is there a GWT Developer Plugin for Firefox 4 Beta 1

2010-07-08 Thread Frederic Conrotte
See https://groups.google.com/group/google-web-toolkit/browse_thread/thread/6cd0bfee74691aa3/05e091ae577948af?pli=1 On Jul 8, 2:18 pm, Tulkas jerome.mil...@gmail.com wrote: Hello ! Everything is in the subject, I would like to know if there is a testing version of the GWT Developer Plugin

Re: Does these books still compatible with the new GWT ?

2010-07-08 Thread Frederic Conrotte
Yes the concepts explained are compatible with GWT 2.0 I know the 2 first books and IMHO Pro Web 2.0 Application Development with GWT (Pro) [Apress. 2008] is a really good one, supported by a good source code project: http://code.google.com/p/tocollege-net On Jul 8, 10:33 am, Rachmat Kukuh R.

Re: GWT 2.0.4 is now available

2010-07-06 Thread Frederic Conrotte
It'll probably come with GWT 2.1, because of the integration with Spring Roo which requires Maven good news, thanks! On Jul 6, 4:15 pm, jhulford jhulf...@gmail.com wrote: Sorry, what I meant was, projects developed at Google rarely utilize Maven. On Jul 4, 10:55 am, Mikael Couzic

Re: GWT 2.0.4 is now available

2010-07-01 Thread Frederic Conrotte
Hello Chris Any idea if/when it will be available for Maven users ? http://repo2.maven.org/maven2/com/google/gwt/gwt-dev/ Thanks Fred On Jun 30, 11:25 pm, Chris Ramsdale cramsdale+perso...@google.com wrote: This time without the mangled HTML. Recently Apple released Safari 5, which

Re: GXT Button Id

2010-06-29 Thread Frederic Conrotte
Hi Paul Just curious, are you testing your GUI with Selenium ? If yes, does it work with GWT ? On Jun 29, 4:55 pm, Paul Grenyer paul.gren...@gmail.com wrote: Hi All We want to introduce Ids to our GXT components so that our interface is easier for testers to test. We thought it would be as

Re: Sessions and GWT

2010-06-17 Thread Frederic Conrotte
GWT and Spring Security work perfectly together. See this as a starter point: http://www.jroller.com/sjivan/entry/ajax_based_login_using_aceci http://java.dzone.com/articles/integrating-gwt-spring I advise you to use a classic HTML form for login, not a GWT based login dialog. On Jun 17, 7:19 

Re: Sessions and GWT

2010-06-17 Thread Frederic Conrotte
a classic HTML form, Frederic ? Cheers. :-) Kasper On Thu, Jun 17, 2010 at 8:25 AM, Frederic Conrotte frederic.conro...@gmail.com wrote: GWT and Spring Security work perfectly together. See this as a starter point: http://www.jroller.com/sjivan/entry/ajax_based_login_using_aceci http

Re: Sessions and GWT

2010-06-17 Thread Frederic Conrotte
I didn't want the user to wait for the GWT app to load because he could see the login screen Correction: I didn't want the user to wait for the GWT app to load BEFORE he could see the login screen. Sorry :) On Jun 17, 9:17 am, Frederic Conrotte frederic.conro...@gmail.com wrote: In our case I

Re: New book, ESSENTIAL GWT

2010-06-16 Thread Frederic Conrotte
Can you summarize what kind of new information this book gives in comparison with previous books ? On 16 juin, 17:32, FKereki fker...@gmail.com wrote: Hi! I'm quite proud to be able to announce I wrote a book for Addison- Wesley, called ESSENTIAL GWT. The book is available online

Re: GWT 2.0.3: Cross-browser problems still?

2010-06-02 Thread Frederic Conrotte
I've had all kinds of cross-browser problems, in particular with events and graphics, and sometimes widgets. Can you be more specific and give the list of specific issues you had? It would then be useful to fill new bug reports. On May 31, 1:28 am, Navigateur naveen.c...@googlemail.com wrote:

Re: GWT Design Problem

2010-06-02 Thread Frederic Conrotte
I advise you to take a look at this book: http://apress.com/book/view/9781590599853 and the related website: http://code.google.com/p/tocollege-net/ The books explains how you can nicely split your web application between HTML/JSP pages and GWT modules Fred On Jun 1, 6:02 pm, ping2ravi

Re: GWT Design Problem

2010-06-02 Thread Frederic Conrotte
Hello You should check this book: http://apress.com/book/view/9781590599853 And the associated website: http://code.google.com/p/tocollege-net/ It mix both HTML/Freemarker templates with GWT modules. Fred On 1 juin, 18:02, ping2ravi ping2r...@gmail.com wrote: Hi All, I am trying to create a

Performance issue with large object model

2010-05-20 Thread Frederic Conrotte
Hello On our current project we have a fairly large database model mapped thru Hibernate JPA annotations: around 150 entities. Those JPA entities have a lot of @ManyToOne, @OneToMany, @ManyToMany inter relations. On the server side Hibernate lazy loading is active and managed correctly so that

Re: MVP Framework in GWT 2.1 M1 ?

2010-05-20 Thread Frederic Conrotte
I've asked myself the same question: New MVP framework ? Where is the doc? I guess they are talking about this one: http://code.google.com/intl/fr/webtoolkit/articles/mvp-architecture.html On 20 mai, 10:44, metrixon metri...@gmail.com wrote: I just downloaded the M1 release of GWT 2.1 and was

Re: Tutorial Request: Glassfish / Eclipse / GWT - With Hot Deploy

2010-05-18 Thread Frederic Conrotte
No, you have to recompile you GWT code and you ANT's sync task to have some kind of hot deploy behavior. You can limit compilation time by focusing only on the browser you are interested in Example: Sample.gwt.xml : set-property name=user.agent value=ie8 / extend-property

Re: JPA + HIBERNATE+SPRING+GWT

2010-05-18 Thread Frederic Conrotte
From DTO, Dozer to Gilead you have the choice: http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html You can also use you own filter as described in the book Pro Web 2.0 Application Development with GWT :

Re: JPA + HIBERNATE+SPRING+GWT

2010-05-17 Thread Frederic Conrotte
So you mean with EclipseLink JPA you don't have any serialisation issue as with Hibernate ? See this reply from the creator of Gilead as well: http://sourceforge.net/projects/gilead/forums/forum/868076/topic/3712153 Which version of EclipseLink are you using ? On 17 mai, 17:12, aw4y

Re: JPA + HIBERNATE+SPRING+GWT

2010-05-17 Thread Frederic Conrotte
.2C_and_Detachment Code weaving is active by default in Hibernate, that's where Gilead is useful. On 17 mai, 20:07, Frederic Conrotte frederic.conro...@gmail.com wrote: So you mean with EclipseLink JPA you don't have any serialisation issue as with Hibernate ? See this reply from the creator of Gilead

Re: Load different html

2010-05-17 Thread Frederic Conrotte
Quite interesting indeed. I personally have a servlet mapped to index.html that can serve several pages based on several server-side. This even works well in development mode (need it for my openid provider). Could you give more details on this solution? On 17 mai, 19:32, cretz

Re: Large GWT project source code organization

2010-05-15 Thread Frederic Conrotte
Anyone ? I might ask the question in a different way: Do you see any potential issues in putting all JPA entities, webservices, JMS listener etc on the same Eclipse project than client side GWT code ? On 14 mai, 08:43, Frederic Conrotte frederic.conro...@gmail.com wrote: Hello On a large

Re: New to GWT

2010-05-15 Thread Frederic Conrotte
Upcoming book on GWT2: http://www.amazon.com/Essential-GWT-Building-Toolkit-Developers/dp/0321705149 On 15 mai, 16:26, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, there are some books (mostly based on GWT 1.4 - 1.6). However, there are outdated when they are coming out. Stefan

Inherit service interface from server side

2010-05-15 Thread Frederic Conrotte
Hello In traditional JEE development you usually declare your service interface and related implementation on the server side and expose it to the client. With GWT it seems from the documentation and samples that the server side interface you want to call from the client side MUST be declared on

Large GWT project source code organization

2010-05-14 Thread Frederic Conrotte
Hello On a large entreprise GWT project with a lot of JPA beans and WebServices on server side code, would you recommend having all the source code within a single WAR file or splitting between client and server code ? * Option 1 - single WAR file: project/src/ com.mycompany.project.client

Re: New to GWT

2010-05-14 Thread Frederic Conrotte
but currently there is no any book available for gwt There are several books on GWT: http://code.google.com/intl/fr/webtoolkit/books.html I would even add this one: http://www.amazon.com/Pro-Application-Development-Experts-Voice/dp/1590599853 Fred On 14 mai, 19:53, aditya sanas