Re: Actual Status of GWT

2012-10-26 Thread Foermchen82
Thank you for your answer. I will have a look at the video* *if i have time. But whats about the navigation on the Google deveoper page. Is there any way to brows to the GWT? Kind regards Am Donnerstag, 25. Oktober 2012 20:41:44 UTC+2 schrieb Manuel Carrasco: GWT is in good shape, this video

ListDataProvider.addDataDisplay() and setRowData

2012-10-26 Thread tong123123
if I called ListDataProvider.addDataDisplay(DataGrid); I found no need to use setRowData(List); so when to use setRowData and when to use ListDataProvider as the data source for DataGrid? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

SimplePager.Resources.class

2012-10-26 Thread tong123123
I found SimplePager.Resources resource = SimplePager.Resources.class; will return error Type mismatch: cannot convert from ClassSimplePager.Resources to SimplePager.Resources And need to use SimplePager.Resources resource = GWT.create(SimplePager.Resources.class); why need to use

Re: GWT compiler .java files

2012-10-26 Thread Thomas Broyer
On Thursday, October 25, 2012 4:53:28 PM UTC+2, Ben Cuthbert wrote: All I when I add my modules .java files into the jar and pass it to my application the compiler works. But when I put the .java files of the module into a -sources.jar and then add that to the classpath of my

Re: Are you happy with GWT?

2012-10-26 Thread salk31
YES! To add an analogy: I'm an old geek and going from JSP/JS/Servlet/MVC etc to GWT feels like going from assembly to C/C++... I sort of knew at the time that the compiler should be doing lots of things for me but now I've switched to GWT (last few years) it is even more obvious that I'm

Gwt 2.5 super dev mode takes to much time

2012-10-26 Thread Filipe Sousa
I'm trying it on a small project (300k LOC - 1033 java files + 367 ui files + 67 GWT-RPC services) and takes 539785 ms to compile every time I hit the compile button. The old dev mode takes less than 5s to refesh the page. Compiling module pt.ipb.rad.RAD Compiling 1 permutation

Re: Gwt 2.5 super dev mode takes to much time

2012-10-26 Thread Thomas Broyer
On Friday, October 26, 2012 11:12:54 AM UTC+2, Filipe Sousa wrote: I'm trying it on a small project (300k LOC - 1033 java files + 367 ui files + 67 GWT-RPC services) and takes 539785 ms to compile every time I hit the compile button. The old dev mode takes less than 5s to refesh the page.

Re: Editing a ValueProxy on an EntityProxy

2012-10-26 Thread Smithimage
Hi there RyanD! Did you find a solution to this problem? I am in a similar predicament.. I also try to persist a large string on a EntityProxy (not using a valueproxy though) and I also get only null values on the server side when the persist method is called.. Best regards! On Sunday,

Generating waveform with GWT

2012-10-26 Thread Xybrek
Hello this is a showcase of a generating Waveforms with GWT: http://wavegwt.appspot.com/Showcase.html The source is still under development, the showcase runs with desktop browsers but doesn't work with mobile browsers. Anyway, this is just a test. -- You received this message because you

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Ali Jalal
Great news ! And I'm looking for latest news about steering-committee decisions... Good luck. On Fri, Oct 26, 2012 at 5:06 AM, Daniel Mauricio Patino León ceo.lion@gmail.com wrote: Nice 2012/10/25 Juan Pablo Gardella gardellajuanpa...@gmail.com Great!!! 2012/10/25 unnurg

Re: Security considerations for GWT applications

2012-10-26 Thread Manuel Carrasco Moñino
On Wednesday, October 24, 2012 2:38:51 PM UTC-4, Manuel Carrasco wrote: - You could compute and send the MD5 hash of the password instead of the clear one if the server is storing the password in MD5 This doesn't really work against MITM attacks. As written, the proposal substitutes a

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Thomas Broyer
On Friday, October 26, 2012 1:04:14 PM UTC+2, Ali Jalal wrote: Great news ! And I'm looking for latest news about steering-committee decisions... BTW, what kind of decision are you expecting from us? About communication? features? roadmap? anything else? -- You received this message

Re: Actual Status of GWT

2012-10-26 Thread Ian Mayo
On Thursday, 25 October 2012 15:58:07 UTC+1, Jürgen Form wrote: but actually the GWT could not be found at https://developers.google.com/products/. Only if I search fo it. You're right. That is a very large indicator of Google's public intentions for GWT. But, there are a stream of

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Ali Jalal
Mostly, roadmap and features of next GWT releases. There are many good features in GXT, Vaadin, Errai and other tools which now have a member in steering-committee. So I'm looking for roadmap of GWT to know which parts of this tools will be integrated in GWT and when? Thanks. On Fri, Oct 26,

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Thomas Broyer
On Friday, October 26, 2012 1:52:17 PM UTC+2, Ali Jalal wrote: Mostly, roadmap and features of next GWT releases. There are many good features in GXT, Vaadin, Errai and other tools which now have a member in steering-committee. So I'm looking for roadmap of GWT to know which parts of

Re: Security considerations for GWT applications

2012-10-26 Thread Jens
For a secure GWT application: - *use SSL for the entire app* *- check for SSL vulnerabilities and update your server accordingly * * * - use your app servers session id and send it as payload from server to client during login and then from client to server on each request. On the server check

developers.google.com is down

2012-10-26 Thread Nicholas Smith
Haven't been able to connect for the last 30 minutes, is there an outage? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/IDegxUcVcCQJ. To post

Re: developers.google.com is down

2012-10-26 Thread Christof Kaller
Confirm, cannot reach the site... (from germany) 2012/10/26 Nicholas Smith nick.sm...@gmail.com Haven't been able to connect for the last 30 minutes, is there an outage? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: developers.google.com is down

2012-10-26 Thread Thomas Broyer
On Friday, October 26, 2012 4:39:45 PM UTC+2, Nicholas Smith wrote: Haven't been able to connect for the last 30 minutes, is there an outage? Same here, and we're apparently not alone: https://twitter.com/VereloStatus/status/261841690602643456 -- You received this message because you

AnimationScheduler.requestAnimationFrame example

2012-10-26 Thread Arun
Hi Everyone, I am beginning to learn WebGL development using GWT using gwtgl. I am not able to get the requestAnimationFrame working to render my scene regularly. Could someone please take a look at it and offer some advice? Code: *Mygwtgl.java* public class Mygwtgl implements EntryPoint,

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Pablo Nussembaum
Hey Guys, The issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=7527 is still not fixed in version 2.5.0 Since the bug was already fixed but not merged properly can re-release it or release version 2.5.1. Thanks, -- Pablo Bauna Nussembaum On 10/25/2012 07:14 PM, unnurg wrote:

Want to create a business website

2012-10-26 Thread Aditya
I am new to web application world. I want to start with the creation of a webpage something for my business. Can I get some GWT code which will help me developing this webpage ? Thanks Aditya -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Bauna
Hey Guys, I'm still having errors with GWTBridge being in the wrong package, issue: http://code.google.com/p/google-web-toolkit/issues/detail?id=7527 Since the bug was already fixed but not merged properly can re-release it or release version 2.5.1. Thanks, -- Pablo Bauna Nussembaum El

Re: developers.google.com is down

2012-10-26 Thread Moshe Gorin
I also have not been able to reach https://developers.google.com/ since about 10:30am E.S.T. On Friday, October 26, 2012 10:39:45 AM UTC-4, Nicholas Smith wrote: Haven't been able to connect for the last 30 minutes, is there an outage? -- You received this message because you are

Re: GWT 2.5 GA is Here!

2012-10-26 Thread Jim Northrup
I'd like to see parity with javax.xml.bind.* in gwt proper; none of the SC vendors proper have a vested interest in un-inventing XML marshalling. On Friday, October 26, 2012 5:07:02 AM UTC-7, Thomas Broyer wrote: On Friday, October 26, 2012 1:52:17 PM UTC+2, Ali Jalal wrote: Mostly,

Re: AnimationScheduler.requestAnimationFrame example

2012-10-26 Thread Alfredo Quiroga-Villamil
Something along the lines of ... Notice the line under Call it again. animation = AnimationScheduler.get().requestAnimationFrame(new AnimationCallback() { @Override public void execute(double timestamp) {

Re: AnimationScheduler.requestAnimationFrame example

2012-10-26 Thread Alfredo Quiroga-Villamil
I should probably mention that should you have the need to stop the animation, you might have to implement your own logic. A couple of lines of code would suffice in this case, but still. I haven't tested 2.5 GA nor looked at the release notes for it yet but if I am not mistaken even 2.4 had an

Re: Could not load GWT DMP Plugin

2012-10-26 Thread Brian Slesinsky
I'm still seeing some crash reports but I'm not sure they're the same issue. Has the situation improved at all with yesterday's release? I just figured this out: you can report the crash to me by visiting chrome://crashes and telling me the crash id (if it's listed there). (There is a link on

Re: Could not load GWT DMP Plugin

2012-10-26 Thread Nomikos Zografakis
It hasn't crashed with limited usage. I'll continue and report crashes using chrome://crashes Thanks! - Nomikos On Thursday, October 25, 2012 7:54:48 PM UTC-4, Brian Slesinsky wrote: I've uploaded a new version to the Chrome store that fixes a bug that could cause plugin crashes. On

Re: RPC call from server to client

2012-10-26 Thread Mike Dee
I wonder how this is done in Google Docs? The approach may be a bit of overkill for a chat client though. Multiple users can edit a word processing document or spreadsheet simultaneously. I've seen talks about how this is done conceptually. It involved the command pattern and there was a way

Re: developers.google.com is down

2012-10-26 Thread Andy Stevko
Could this have anything to do with the appengine downtime currently in progress?? On Fri, Oct 26, 2012 at 11:44 AM, Moshe Gorin evan.go...@gmail.com wrote: I also have not been able to reach https://developers.google.com/ since about 10:30am E.S.T. On Friday, October 26, 2012 10:39:45 AM

Re: RPC call from server to client

2012-10-26 Thread Thomas Broyer
On Friday, October 26, 2012 8:12:03 PM UTC+2, Mike Dee wrote: I wonder how this is done in Google Docs? The approach may be a bit of overkill for a chat client though. Multiple users can edit a word processing document or spreadsheet simultaneously. I've seen talks about how this is done

Super Dev Mode Issue?

2012-10-26 Thread Akito Nozaki
I'm testing out super dev mode and having some issue with super dev mode finding my resource. I have ui binder with src in the style. ui:style src=common.css ... /ui:style [ERROR] Unable to find resource: common.css [ERROR] Can't interpret CSS When ever I try to use the -src in the

Re: Future of GWT survey

2012-10-26 Thread t.dave
have the results of this survey been posted anywhere? if not, any ETA on when they might be? much thanks! On Wednesday, September 19, 2012 6:23:24 AM UTC-7, Joonas Lehtinen wrote: What is your opinion on the future of GWT? How should GWT develop? What technologies should it better

behaviour of iterator and remove

2012-10-26 Thread Leung
Hi   I am trying to remove all the widgets from a HorizontalPanel. Why the first code segment always have one widget left? Why I have to remove widgets by iterator like code segment 2?   1 IteratorWidget it=this.iterator(); while(it.hasNext()) { Widget widget=it.next(); this.remove(widget); }   

Re: Could not load GWT DMP Plugin

2012-10-26 Thread yves
It doesn't work for me. Chrome 24.0.1305.3 dev-m plugin 1.0.11357 win XP SP3 I found that it might be blocked by norton anti-virus : googleupdate.exe was blocked (severity : medium) I found another problem in norton history log : the dev plugin dll is identifid as a threat

Re: Could not load GWT DMP Plugin

2012-10-26 Thread seas
Brian, It looks like that fixed it for me. Spent about a half hour clicking around in my app with no crashes. Thanks. I'll let you know if it happens again. On Friday, October 26, 2012 10:35:14 AM UTC-7, Brian Slesinsky wrote: I'm still seeing some crash reports but I'm not sure they're

gwt 2.5/PrecompressLinker useless with tomcat/jboss?

2012-10-26 Thread dhartford
Hi all, I've been trying to utilize http://code.google.com/p/google-web-toolkit/wiki/PrecompressLinker, but for (I'm assuming) the common usecase of deploying to Tomcat, or to Jboss, this seems useless/no value. With tomcat, only configuration I could find was to modify server.xml with

Re: AnimationScheduler.requestAnimationFrame example

2012-10-26 Thread Arun
Hi Alfredo, Thank you for the code snippet, works as expected. Also thank you for the issue related to cancel() method, I will keep that in mind. -br Arun On Friday, 26 October 2012 17:37:09 UTC+1, Alfredo Quiroga-Villamil wrote: Something along the lines of ... Notice the line under Call

Re: gwt 2.5/PrecompressLinker useless with tomcat/jboss?

2012-10-26 Thread Jens
No idea if tomcat/jboss support it or not but in case they don't you can always have a web server in front of your application server. This web server would serve your static pre-compressed GWT client files and proxies remote service calls to your application server. Apache and Nginx can be

[gwt-contrib] Thanks minichate! (issue1863803)

2012-10-26 Thread rchandia
Reviewers: skybrian, Description: Thanks minichate! GWT CSS parser was dropping media types. Fixes issue: 4911 Please review this at http://gwt-code-reviews.appspot.com/1863803/ Affected files: M user/src/com/google/gwt/resources/css/CssGenerationVisitor.java M

[gwt-contrib] Re: Bugfix @media queries in CssResource (issue1862803)

2012-10-26 Thread rchandia
LGTM. Resubmitting internally at http://gwt-code-reviews.appspot.com/1863803 On 2012/10/26 04:44:12, Andrew Bachmann wrote: Thanks for the patch. Nice find. http://gwt-code-reviews.appspot.com/1862803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Thanks minichate! (issue1863803)

2012-10-26 Thread rchandia
This is partially from a patch contributed by an external developer. See http://gwt-code-reviews.appspot.com/1862803/ http://gwt-code-reviews.appspot.com/1863803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] “GWT no longer supports ChromeFrame. The implementation caused more bugs than it solved.”

2012-10-26 Thread Thomas Broyer
On Thursday, July 19, 2012 12:16:26 AM UTC+2, rdayal wrote: Hey guys, This is my fault. I mis-interpreted the code change. As the change to fix this issue was basically a revert of the original commit that was supposed to add ChromeFrame support, I incorrectly assumed that reverting