Re: Sporadic errors during compilation, Checking type argument 0 of type 'java.util.Arrays.ArrayList, no default constructor.

2013-03-28 Thread MarDeMar
Finally I find the solution! In my dto I declared a property of type class X in which I declared an enum in this manner: public enum Type { SHORT (S), MEDIUM (M), LONG (L); private String code; private Type(String code) { this.code = code; } public String

Static files not deploying to appspot

2013-03-28 Thread Dan Schreiber
I have a gwt app that contains some static image files. I put them under war/img and everything works fine locally. I'm using Eclipse and use the deploy command to move everything over to the appspot server for deployment. However, after I deploy the app to the appspot server in Eclipse, I get

Re: XMLParser Problems

2013-03-28 Thread skippy
Hi Andy: Thanks for the post above. I did not see this the other day. you need to ask the child for the next sibling not the parent. node = node.getNextSibling(); By the way, the Totoe project using xpath works nicely. It take some to get to know how to use it. On Wednesday, March 20,

Re: Static files not deploying to appspot

2013-03-28 Thread Thomas Broyer
There's a forum dedicated to the Google Plugin for Eclipse: https://groups.google.com/d/forum/google-plugin-eclipse though they'd tell you there to use StackOverflow. Or, as it's an issue with AppEngine (not GWT proper), maybe ask on the AppEngine group

Re: Diagnose GWT DMP Plugin crashes on Chrome

2013-03-28 Thread Michael Prentice
No luck. Just ran into this again. Restarting Chrome, again, fixed it. On Wednesday, March 27, 2013 2:28:50 PM UTC-4, Michael Prentice wrote: OK, I'll give that a shot with: *-XX:MaxPermSize=384m* Thanks a lot. On Wednesday, March 27, 2013 10:03:08 AM UTC-4, xsee wrote: Try setting your

choix d'une API GWT

2013-03-28 Thread Ksouri Chaouki
bonjour tous le monde je voudrai créer une interface web en utilisant GWT, et je suis entrain de rechercher une API qui me permet de construire une interface qui donne la main à un utilisateur à l'aide d'un panel de widget qui sera afficher de dessiner un graphe qui simule un reseau (principe

Re: PlaceController constructor Deprecated

2013-03-28 Thread Sreenath V
use com.google.web.bindery.event.shared.EventBus to avoid Depricated API http://www.techiesinfo.com On Friday, September 9, 2011 5:16:17 AM UTC-7, Fabricio Pizzichillo wrote: Hello friends. I use GIN to implement dependency injection. I upgraded to version 2.4.0 and I encounter a problem

Login + CRUD example

2013-03-28 Thread Robson Braga
Hi folks, After lots and lots of research, I haven't found any good example of a gwt application with a login module + crud module. I've followed the basic gwt examples but I wasn't able to convert it to a more complex application, like a one with login + crud modules. Do you know where or

Re: eclipse 4.2

2013-03-28 Thread John Boray
I had the same problem. That installer seems to be for Android developers. But I found a zip on https://developers.google.com/eclipse/docs/install-from-zip which worked fine. Hope that helps! :-) On Thursday, 7 March 2013 02:12:39 UTC+1, Elaine Toscano wrote: When I install GWT on eclipse

new version of Closure Compiler

2013-03-28 Thread Kirill Prazdnikov
Hi, Is it possible to integrate the latest version of Closure Compiler into GWT compiler. The existing one constantly crashing with Internal compiler error while it optimize our project. or Is there a way to test the latest version of the Closure Compiler with GWT output of our

Re: Can't deploy my project anymore

2013-03-28 Thread Dawn Borg Costanzi
I am having the same problem (stack trace below). I am using JDK 1.6.0_43, and I have deleted the gwt-unitCache folder. This is my first GWT application and the first time I am trying to deploy, so I do not have a build.xml file to execute. Please help!!! Plug-in Provider: Google Plug-in Name:

Re: CellTable - Adding a Button to a Column

2013-03-28 Thread Eleanor O'Neill
FYI DocumentDetailsDTO is not a GWT type, it is a data object defined by the person who wrote the application. That is, it is a ListDataProvider: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/view/client/ListDataProvider.html On Tuesday, January 22, 2013 6:50:29 AM

Re: What is current state/fix of/for deprecated PlaceController constructor

2013-03-28 Thread Sreenath V
use com.google.web.bindery.event.shared.EventBus to avoid Depricated API http://www.techiesinfo.com On Tuesday, November 8, 2011 1:13:31 AM UTC-8, tanteanni wrote: I just updated to gwt 2.4 - to get the data grid (very nice). but no my PlaceController construction is deprecated. I read

Re: GWT 2.5 dev mode unable to refresh

2013-03-28 Thread 李赵伟
Before reloading, just simply clear the browser's cookies, it'll happen every times. 在 2013年2月26日星期二UTC+8上午7时55分53秒,Craig Mitchell写道: I've noticed this error when our app opens a new browser window that loads the GWT app up again (not seen the error when refreshing). Happens in IE9 and

validateOnly gwt compile

2013-03-28 Thread Arvind N
Hey, I looked at the validateOnly compiler option in GWT and i dont see a whole lot of information on what this actually does on the web. The GWT documentation says the below -validateOnly Validate all source code, but do not compile Does this mean that if ValidateOnly compile

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

2013-03-28 Thread r . ziman8
Hi man, Sorry for the later answer. You have this exception because Gwt Compiler try to find these classes in your Module.gwt.xml. Example : source path=client/ (folder client) When you have generated your classes with you file XSD, a class ObjectFactory.java was also generated, and this

Re: choix d'une API GWT

2013-03-28 Thread Mohamed Badri
Hi, take a look at gwt-dnd : http://code.google.com/p/gwt-dnd/ You should send your questions in english. --- Si tu veux des réponses tu devrais envoyer tes questions en anglais. Regards. 2013/3/28 Ksouri Chaouki chaoukikso...@gmail.com bonjour tous le monde je voudrai créer une interface

Re: Login + CRUD example

2013-03-28 Thread Juan Pablo Gardella
It's old, but you can see https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/fkbowz5-5do 2013/3/26 Robson Braga robsonselze...@gmail.com Hi folks, After lots and lots of research, I haven't found any good example of a gwt application with a login module + crud module.

Literal Array Creation in JSNI

2013-03-28 Thread tomsn
Hallo, within my GWT Application I try to execute the following method: @Override public native void drawChart(Element parent)/*-{ var series = [{ data: [ { x: 0, y: 40 }, { x: 1, y: 49 } ], color: 'steelblue', name: 'Dataset_1' }]; var

Re: GWT Sticky Sessions

2013-03-28 Thread Ashar Lohmar
Hi there from my experience ... you are barking at the wrong tree so to speak. it's a long time that I'm not using GWT anymore (not my choice, but i had to) but i don't think that it's GWT's problem to check the jsessionid you could use the Chrome's developer tools o firefox - firebug and look

Re: Need some help with Totoe and XML

2013-03-28 Thread Thad
I'n not sure I understand what your trying to do, but before I put an XPath in code, I often try it out wit XPE (http://sourceforge.net/projects/xpe/). I've found this a great tool for exploring option and getting it right before try it out in my program. On Wednesday, March 27, 2013 11:01:14

Re: Are VerticalPanel and HorizontalPanel (informally) deprecated in GWT 2.0?

2013-03-28 Thread Michael Prentice
That's a great question. I would like to know where this stands today. On Saturday, March 13, 2010 7:10:19 AM UTC-5, Δημήτρης Μενούνος wrote: I hope not! There is nothing wrong with using Components backed by tables. Especially in the context of building complex web-app UIs, where floated

Re: Literal Array Creation in JSNI

2013-03-28 Thread Thomas Broyer
On Thursday, March 28, 2013 8:08:14 PM UTC+1, tomsn wrote: Hallo, within my GWT Application I try to execute the following method: @Override public native void drawChart(Element parent)/*-{ var series = [{ data: [ { x: 0, y: 40 }, { x: 1, y: 49 } ],

Re: GWT Beginner's Tutorial

2013-03-28 Thread Michael Prentice
I really have enjoyed Marty Hall's slides and tutorials. The one that I have been using lately is http://www.slideshare.net/martyhall/gwt-tutorial-laying-out-windows-with-panels-part-ii-composite-panels (GWT 2.5 from May 2012). But you can find all of his GWT training slides here:

Re: Problem with the function editRecord in a DynamicForm (SmartGwt)

2013-03-28 Thread Sanjiv Jivan
This functionality works fine even for Date type fields. You can see this by clicking any row in the grid which calls editRecord(..) on the form. http://www.smartclient.com/smartgwt/showcase/#featured_pattern_reuse If you're still having problems then post your question on the SmartGWT forum

[gwt-contrib] Change in gwt[master]: Change RemoteServiceServlet so gwt.codeserver.port works wit...

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Change RemoteServiceServlet so gwt.codeserver.port works with more subclasses. .. Patch Set 1: Code-Review+1 -- To view, visit

[gwt-contrib] Change in gwt[master]: Moves GWTTestCase to Impl#setUncaughtExceptionHandlerForTest.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has abandoned this change. Change subject: Moves GWTTestCase to Impl#setUncaughtExceptionHandlerForTest. .. Abandoned Submitted. -- To view, visit https://gwt-review.googlesource.com/2190 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Changes StackTraceDeobfuscator to abstract and provide vario...

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has abandoned this change. Change subject: Changes StackTraceDeobfuscator to abstract and provide various factory methods. .. Abandoned Submitted. -- To view, visit https://gwt-review.googlesource.com/2270

[gwt-contrib] Change in gwt[master]: Moves c.g.gwt.logging to common StackTraceDeobfuscator.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Moves c.g.gwt.logging to common StackTraceDeobfuscator. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Update JDT to 3.8.1

2013-03-28 Thread Thomas Broyer
Thomas Broyer has abandoned this change. Change subject: Update JDT to 3.8.1 .. Abandoned Superseded by If7d533adcb953de614ea071cfd7e57560b664ce0 -- To view, visit https://gwt-review.googlesource.com/1861 To unsubscribe,

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (5 comments) Commit Message Line 9: Fixed an error in

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (1 comment) File

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (2 comments) Commit Message Line 9: Fixed an error in RequestFactory

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (1 comment) Commit Message Line 9: Fixed an error in

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new change for review. https://gwt-review.googlesource.com/2370 Change subject: RequestFactoryGenerator generated invalid java classes. .. RequestFactoryGenerator generated invalid java

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: RequestFactoryGenerator generated invalid java classes. .. Patch Set 1: Code-Review+1 LGTM, but trim the trailing whitespace from the CL description. -- To

[gwt-contrib] Change in gwt[master]: Move flaky non-hermetic test case into its own test suite.

2013-03-28 Thread Matthew Dempsky
Matthew Dempsky has abandoned this change. Change subject: Move flaky non-hermetic test case into its own test suite. .. Abandoned Submitted. -- To view, visit https://gwt-review.googlesource.com/2340 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: RequestFactoryGenerator generated invalid java classes. .. Patch Set 1: (2 comments) File

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new patch set (#2). Change subject: Ugrade JDT to 3.8.3. .. Ugrade JDT to 3.8.3. Change-Id: If7d533adcb953de614ea071cfd7e57560b664ce0 Review-Link:

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (6 comments) Commit Message Line 9: Fixed an error in

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2370 to look at the new patch set (#2). Change subject: RequestFactoryGenerator generated invalid java classes.

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: RequestFactoryGenerator generated invalid java classes. .. Patch Set 1: (2 comments) File

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2370 to look at the new patch set (#3). Change subject: RequestFactoryGenerator generated invalid java classes.

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2370 to look at the new patch set (#4). Change subject: RequestFactoryGenerator generated invalid java classes.

[gwt-contrib] Change in gwt[master]: Ugrade JDT to 3.8.3.

2013-03-28 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Ugrade JDT to 3.8.3. .. Patch Set 1: (1 comment) File dev/build.xml Line 110: zipfileset

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Roberto Lublinerman
Hello Matthew Dempsky, I'd like you to reexamine a change. Please visit https://gwt-review.googlesource.com/2370 to look at the new patch set (#5). Change subject: RequestFactoryGenerator generated invalid java classes.

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: RequestFactoryGenerator generated invalid java classes. .. Patch Set 5: Code-Review+1 I'll evaluate later on whether AbstractInstanceRequest is worth it, when

[gwt-contrib] Change in gwt[master]: RequestFactoryGenerator generated invalid java classes.

2013-03-28 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: RequestFactoryGenerator generated invalid java classes. .. Patch Set 5: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2370 To

[gwt-contrib] Change in gwt[master]: Refactors c.g.gwt.junit to use common SerializableThrowable ...

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Refactors c.g.gwt.junit to use common SerializableThrowable StacktraceDeobfuscator. .. Patch Set 2: (1 comment)

[gwt-contrib] Change in gwt[master]: Moves c.g.gwt.logging to common StackTraceDeobfuscator.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has abandoned this change. Change subject: Moves c.g.gwt.logging to common StackTraceDeobfuscator. .. Abandoned Submitted. -- To view, visit https://gwt-review.googlesource.com/2300 To unsubscribe, visit

[gwt-contrib] Change in gwt[master]: Removes obsolute way of identifying test classes in module.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new change for review. https://gwt-review.googlesource.com/2371 Change subject: Removes obsolute way of identifying test classes in module. .. Removes obsolute way of identifying test classes

[gwt-contrib] Change in gwt[master]: Refactors c.g.gwt.logging to use SerializableThrowable.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Refactors c.g.gwt.logging to use SerializableThrowable. .. Patch Set 1: (8 comments) File

[gwt-contrib] Change in gwt[master]: Refactors c.g.gwt.logging to use SerializableThrowable.

2013-03-28 Thread Goktug Gokdogan
Goktug Gokdogan has uploaded a new patch set (#2). Change subject: Refactors c.g.gwt.logging to use SerializableThrowable. .. Refactors c.g.gwt.logging to use SerializableThrowable. Change-Id:

[gwt-contrib] Change in gwt[master]: Removes obsolute way of identifying test classes in module.

2013-03-28 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Removes obsolute way of identifying test classes in module. .. Patch Set 1: (3 comments) Commit Message

[gwt-contrib] Change in gwt[master]: Refactors c.g.gwt.junit to use common SerializableThrowable ...

2013-03-28 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Refactors c.g.gwt.junit to use common SerializableThrowable StacktraceDeobfuscator. .. Patch Set 2: Code-Review+1 (8 comments) Seems okay, after nits.