How to get Cloud SQL for free for some time on GAE

2012-08-06 Thread vikash@Atos
Hi, We have created a GWT POC project which we need to deploy on GAE. Thos project uses, MYSQL as backend. After a lot of search, I have found that the Cloud SQL which is similar to MySQL, but it requires billing. Can we get it running for some trail period for free? Thanks, Vikash -- You

Re: Does the Google App Engine Support Java/J2EE Web Application

2012-08-06 Thread Richard
This is the GWT forum, so I'd suggest posting GAE questions on the GAE forum instead. That's here: https://groups.google.com/forum/?fromgroups#!forum/google-appengine Having said that, if you have a standard Java app, it's likely not going to just work on App Engine, which comes with lots of

Re: GWT future

2012-08-06 Thread funkforce
Thomas, Reading this: but until then, GWT will have adapt to each new browser version, and your app would have to be recompiled with the newer version of GWT to take advantage of it. Do you meant that if I deploy an app compiled with GWT 2.4 today and in a few weeks a new browser

SuperDevMode and server-side code

2012-08-06 Thread Alexander Orlov
I want to run my RequestFactory using GWT' SuperDevMode. The client-side code compilesruns fine but as soon as I make any RF-using server call I get an exception because server-side code isn't supported in SuperDevMode yet. The reason is: Currently, Super Dev Mode doesn't support running Java

Error while deploying GWT Project on GAE server

2012-08-06 Thread vikash@Atos
Hi, When I am trying to deploy my GWT Project on GAE server (web hosting), I am getting the following error in console: Compiling module com.atos.VisitorRegistration Validating newly compiled units Ignored 1 unit with compilation errors in first pass. Compile with -strict or with

Re: Error while deploying GWT Project on GAE server

2012-08-06 Thread Jens
Root cause in your error: [ERROR] Line 56: No source code is available for type com.atos.db.DBUtil; did you forget to inherit a required module? The GWT compiler does not see com.atos.db.DBUtil.java as its not in your client package but is used by any of your client classes. Either move the

Re: Compiler warnings when migrating from 2.3 to 2.4 or 2.5-rc1

2012-08-06 Thread John
I found it. Looks like I don't have validation-api-1.0.0.GA-sources.jar on the classpath, I have a 2nd copy of validation-api-1.0.0.GA.jar parading as sources. Now to figure out how that is happening. On Thursday, August 2, 2012 10:58:07 AM UTC-4, John wrote: GWT compile using 2.3.0 appears

OSGi Application nested submodule messaging

2012-08-06 Thread Joseph Lust
Question to the forum. We are rewriting our 120K line GWT application to run on an OSGi architecture so that we no longer deploy a megawar file and can update individual parts of the application (currently 25 modules, will be 85 in a year) UI and services without affecting others. We've created

Re: OSGi Application nested submodule messaging

2012-08-06 Thread Jens
I guess I would publish a JS API in the parent core application via JSNI and then call the API methods from your submodule iFrame (via top.apiMethodName() ) when they have loaded and need to customize the header/footer. This would be your second solution but the other way around which avoids

data tables with headers, footers and widgets in cells

2012-08-06 Thread Matthew Pocock
Hi, I'm developing an app that needs to display some info in a grid/table. It needs to support pinned headers/footers, paging, sorting, filtering, scrolling of the non-header/footer cells, and individual cells are custom widgets that are constantly listening to events and updating and/or which

Re: OSGi Application nested submodule messaging

2012-08-06 Thread Joseph Lust
Thanks Jen's, I'll give the JSNI and postMessage() methods a try. 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

Re: OSGi Application nested submodule messaging

2012-08-06 Thread Alfredo Quiroga-Villamil
Assuming the amount of JS to export is not a lot, I also see exporting JS and exposing it as a very viable alternative as Jen previously pointed out. Something else that comes to mind, a lot more involved I must admit is to use a server-push approach. The header/footer module keeps an open

Re: OSGi Application nested submodule messaging

2012-08-06 Thread Joseph Lust
Thanks Alfredo. I'll try the intra-browser communication for now as it will hopefully take the least overhead. 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

Re: Drag and Drop to a RichTextArea / IFrame?

2012-08-06 Thread gangurg gangurg
is there a solution for this ? How do we do drag and drop in richTextArea On Wed, Oct 26, 2011 at 9:55 AM, Derek derekad...@gmail.com wrote: I'm trying out some of the fun drag-and-drop stuff in GWT. My current attempt is to drag a file into a richtextarea, but nothing seems to be working

Re: data tables with headers, footers and widgets in cells

2012-08-06 Thread Joshua Godi
The DataGrid will do everything that you need it to do: http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid. You can have cells that contain widgets. On Monday, August 6, 2012 10:40:33 AM UTC-5, Matthew Pocock wrote: Hi, I'm developing an app that needs to display some info in

Re: data tables with headers, footers and widgets in cells

2012-08-06 Thread Joshua Godi
The DataGrid will be able to do everything that you want, here is the link for the GWT Showcase of it: http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid As you can see, you can have widgets inside of the cells. For a better example of different widgets inside the cells you can

[gwt-contrib] Update Maven sample pom.xml files to use maven-compiler-plugin's annotation processing functiona... (issue1804803)

2012-08-06 Thread rdayal
Reviewers: drfibonacci, tbroyer, Description: Update Maven sample pom.xml files to use maven-compiler-plugin's annotation processing functionality. It is now understood by m2e-apt, so we can get rid of the hacks we had to put in to make this work in Eclipse/GPE. This also gets rid of the nasty

[gwt-contrib] Re: Update Maven sample pom.xml files to use maven-compiler-plugin's annotation processing functiona... (issue1804803)

2012-08-06 Thread rdayal
http://gwt-code-reviews.appspot.com/1804803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] submit chrome dev mode plugin to chrome web store?

2012-08-06 Thread Daniel Kurka
Hi everyone, today at work I was setting up a GWT installation on windows for a new coworker and noticed that with chrome 21 we can not install extension anymore. (They need to be in the chrome web store). I also noticed an issue popping up on the issue tracker on the exact same thing:

[gwt-contrib] Re: Allows UiRenderer styles before the first call to render() (issue1794803)

2012-08-06 Thread rdayal
From pair review (rchandia, rdayal): Let's fix up these things below, and go one more round. http://gwt-code-reviews.appspot.com/1794803/diff/1/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java File user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java (right):

Re: [gwt-contrib] submit chrome dev mode plugin to chrome web store?

2012-08-06 Thread Istvan Soos
Hi, A quick fix that might help: 1. right click on the chrome iconPropertiesShortcut 2. add in target: --enable-easy-off-store-extension-install 3. open chrome and navitage to extensions ( chrome://chrome/extensions/ ) 4. drag and drop on it the plugin (should be in your download folder if you

[gwt-contrib] Fixed Default group sequence redefinition. The JSR-303 does not specify exactly how to handle ca... (issue1795805)

2012-08-06 Thread idol
Reviewers: Nick Chalko, Description: Fixed Default group sequence redefinition. The JSR-303 does not specify exactly how to handle cases where a bean does not redefine the Default group but its parent class does, yet there are test cases for this scenario. [JSR 303 TCK Result] 188 of 205

[gwt-contrib] Re: Fixed Default group sequence redefinition. The JSR-303 does not specify exactly how to handle ca... (issue1795805)

2012-08-06 Thread nchalko
minor nits LGTM http://gwt-code-reviews.appspot.com/1795805/diff/1/user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java File user/src/com/google/gwt/validation/rebind/GwtSpecificValidatorCreator.java (right):