How to test presenter with overlay type involved?

2012-06-23 Thread Alex Luya
This question has been asked here:https://groups.google.com/d/topic/google-web-toolkit/DREa11neMa4?authuser=0fromgroups,My question is:If a model must be created in a presenter,How to do? 1,JsoModel model=new JsoModelImpl(); No test-friend due to JSNI involved in JsoModelImpl. 2,JsoModel

How to use Super Dev Mode

2012-06-23 Thread Johannes Barop
Hi, I'm trying to get a simple Application with the Super Dev Mode from trunk running. While I can get the CodeServer to run, I'm unsure how to start my Application with it. My first problem is that the CodeServer doesn't seem not to serve any static files from the war directory. This might

Re: How to use Super Dev Mode

2012-06-23 Thread Jens
I think currently the codeserver only serves the compiled JavaScript of your app. So you still have to use a server that serves your server side code. Thats what I do: 1.) create a new module.gwt.xml that inherits your main app and adds the xsiframe linker and sets the devModeRedirectEnabled

Re: GWT SuggestBox mapping of European characters to American keyboard

2012-06-23 Thread Jens
Not sure if the result would be good in your case but instead of mapping european words, I would start and just strip out characters with european meaning. E.g. if the server receives francais as search string I would replace c with _ because c can be a special european character and then do a

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Carsten
Thanks. I tried it. Strangely only soycReport/compile-report/CompilerMetrics-0-index.html is generated. For all the other browsers their files are missing. When I open soycReport/compile-report/index.html and click on one of the 'Compiler Metrics' links only the first (Safari) is functional.

Re: GWT Hibernate integration EROR : Exception while dispatching incoming RPC call

2012-06-23 Thread harish saharan
Paste all your hibernate jars in your web-inf/lib folder . On Wednesday, 13 June 2012 12:47:17 UTC+5:30, Rahul Gamit wrote: Hello i have followed https://developers.google.com/web-toolkit/articles/using_gwt_with_hibernatetutorial to integrate gwt and hibernate. I have used

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Joseph Lust
I tried enabling SOYC yesterday too (GWT 2.3). I had the same issue. The links on the index page for the first permutation worked, but not the second permutation. SOYC defect? Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: GWT Spring Security

2012-06-23 Thread Joseph Lust
David, My apologies for not getting back to you. I've been thinking about the correct answer. You describe the issue of the error being thrown if the user does not have the proper role. In our implementation that was considered sufficient, since it prevented the user from accessing a remote

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Jim Douglas
http://code.google.com/p/google-web-toolkit/issues/detail?id=6691#c1 On Jun 23, 6:45 am, Joseph Lust lifeofl...@gmail.com wrote: I tried enabling SOYC yesterday too (GWT 2.3). I had the same issue. The links on the index page for the first permutation worked, but not the second permutation.

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Joseph Lust
Thanks Jim. I starred it and commented on it. Anyone else affected should do the same. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Google IO - Anybody up for a GWT meetup?

2012-06-23 Thread István Szoboszlai
Hello, I will attend google IO next week. I am already in SF, so if anybody is up to meet and chat about GWT (or anything else:) ), write me! We could do a small meetup in a coffe shop. If any Googler would be interested that would be even more awesome. Üdvözlettel / Best Regards -- István

Re: How far does the optimizations of the GWT compiler go..?

2012-06-23 Thread Carsten
I did. When I compile with -compileReport, at least the first link for Safari works. All other links do not. If I compile with -XsoycDetailed not even the first link is working. It creates all other files from the report though. On Saturday, June 23, 2012 9:18:04 PM UTC+2, Joseph Lust wrote:

Re: How to use Super Dev Mode

2012-06-23 Thread Johannes Barop
I'm still having troubles to see any changes. 1.) The App is loaded through the CodeServer 2.) I change something in the code. 3.) I recompile the module by hitting Dev Mode on 4.) I reload the page -- I do not see the changes I did to the source. Am 23.06.2012 um 13:30 schrieb Jens: I think