Re: ui:style src attribute causes error in the Google Eclipse plugin

2011-03-08 Thread Hilco Wijbenga
On 8 March 2011 06:56, Philippe Beaudoin philippe.beaud...@gmail.com wrote: A quick update on my progress on this... As you suggested, adding src/main/resources as source in Eclipse works fine. The problem is that m2eclipse automatically adds excluding=** in .classpath for any resource folder.

dependent fields in the Editor framework

2011-03-08 Thread Y2i
I'd like to edit a structure like this: class Sum { int a; int b; int sum; // = a + b } Fields a and b are edited by ValueBoxes, field sum is displayed by ValueLabel. The field sum=a+b. When a user modifies either a or b, I'd like the filed sum to be modified and the editor to reflect

Java/GWT developer M/W (2544) based in Paris

2011-03-08 Thread Recruiter
Notre client, agence de conseil spécialisée dans le search marketing et leader sur son marché, développe des solutions innovantes à destination des principaux acteurs du web en France et à l'International. Dans le cadre de sa forte croissance, il recrute un(e) Développeur Java/GWT H/F pour

GWT-Designer bug ?

2011-03-08 Thread khiem nguyen
hi, i have this ui.xml file: ?xml version=1.0 encoding=UTF-8? !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' xmlns:app='urn:import:de.app.client.view' ui:with

how to know if a entity proxy is frozen?

2011-03-08 Thread Rene Vielma
Hello. how to know if a entity proxy is frozen? thanks you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Help with University Project

2011-03-08 Thread Ross McKinnon
Hi everyone, For my final year university project, I implemented a Requirements Management tool in GWT. The application is web-based, allowing users to create and maintain requirements, whilst making them accessible from any geographical location. The project aims to improve the management of

Re: Maximum call stack size exceeded on chrome and too much recursion on FF (gwt 2.2 web mode)

2011-03-08 Thread tekbe
After some JavaScript debugging, we found the error. We are using a custom formatter for GWT 2.2 logging which extends the abstract java.util.logging.Formatter. This works as long we don't call the method formatMessage(LogRecord record) of the base class. The call of formatMessage causes the

Re: is RequestFactory and/or the Editor framework rendering the JPA optimistic locking useless?

2011-03-08 Thread Jens
Thanks for your bug report. I have recently checked our RF code and run into this issue. Hopefully this issue gets a higher priority (we need more stars!) soon as it makes RF nearly useless and I guess many people doesn't recognize that RF currently does no version check and just overwrite

Where to place external libs?

2011-03-08 Thread Andreas Wederbrand
Hi! I'm running 2.2 on ubuntu and I'm including external libraries (log4j) within my maven2 file but they don't get copied anywhere and when running devMode I get noSuchClassException. I've tried to put them in war/WEB-INF/lib but doing so gives me a 404 on my normally working html start page.

Re: using eclipse GPE and WTP

2011-03-08 Thread Martin Trummer
Thank you Thomas - I think, now I found the problem. It seems, I've selected the wrong war directory when I first started my launch config. Now I have just fixed the -war parameter in the launch config to point into the WTP tomcat server instance. in my case: -war

gzip compression not working for webkit( Both safari and chrome)

2011-03-08 Thread kiran kumar
Hi I have enabled gzip compression on tomcat container level and it is working fine with Firefox. i have verified through both Firebug and YSlow. The html which is 2.3 MB got reduced to 456 KB. When i verified the same in chrome developer tools it is still 2.3 MB. Both the request headers and

Disabling certain dates in datepicker failing

2011-03-08 Thread ALB-PSP-DV1
I'm new to GWT. I'm using GWT 2.1.1. I have requirement to disable certain dates in the datepicker (disable dates before 15Aug2010 and after 15Aug2011). The dates are however not disabled in datepicker, the user is able to select 16Aug2011, 17Aug2011 etc for the first time. Only after selecting

Re: How to solve this design problem, when using RequestFactory ? (how to enforce client and server to use same interface)

2011-03-08 Thread Thomas Broyer
...and proxies and contexts are needed at runtime by the RequestFactoryServlet, so they should really be in shared. The domain objects and services should be in server though, of course (IMO, even if using interfaces, though YMMV). I use the @ProxyForName and @ServiceName annotations (rather

Re: how to know if a entity proxy is frozen?

2011-03-08 Thread Thomas Broyer
AutoBeanUtils.getAutoBean(entityProxy).isFrozen() ? May I ask you why you need it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group,

Re: Window.open without pop-up browser message

2011-03-08 Thread Ice13ill
Is it possible that new browser versions have a different behavior from the old ones? On Mar 7, 4:19 pm, Ice13ill andrei.fifi...@gmail.com wrote: I want to use window.open when clicking a div with _blank target. The problem is that the browser thinks is a popup window and presents a Allow

Re: Events: One handler many sources

2011-03-08 Thread Derek
Hi Mike, My first thought is that maybe using events isn't really what you want. Without knowing specifics, is this something that would fit better as a singleton? Foo.get().doFoo(); (or if you use GIN bind(Foo.class).in(Singleton.class); and then you can @Inject Foo) However, if the event

Re: GWT-Designer bug ?

2011-03-08 Thread Eric Clayberg
Unfortunately, that isn't very much context. In general, we need to see the complete stack trace. It would also be helpful to have info about your Eclipse version, GWT version, OS version, JDK version and GWT Designer version. Have you tried the latest GWT Designer build?

Re: gzip compression not working for webkit( Both safari and chrome)

2011-03-08 Thread Ed
This doesn't like an GWT issue I think... I got it working perfectly on Apache web server in all browsers. On Mar 8, 1:58 pm, kiran kumar kirankumarsm...@gmail.com wrote: Hi I have enabled gzip compression on tomcat container level and it is working fine with Firefox. i have verified through

Netbeans plugin

2011-03-08 Thread András Csányi
Hi all! Does anybody use the GWT Netbeans plugin? Thanks in advance! András -- - - --  Csanyi Andras (Sayusi Ando)  -- http://sayusi.hu -- http://facebook.com/andras.csanyi --  Trust in God and keep your gunpowder dry! - Cromwell -- You received this message because you are subscribed to

Re: How do I Serialize JDO Enhanced Classes for RPC?

2011-03-08 Thread jhulford
On Mar 7, 5:32 pm, JP seri...@gmail.com wrote: Fifth, ties with the fourth and is the obvious implementation of IsSerializable for RPC. Like so: public class GameData implements IsSerializable { You shouldn't need to use IsSerializable. Plain old java.io.Serializable will work fine and keep

Additional WAR File

2011-03-08 Thread Thomas Lefort
I would like to add another war file (geoserver) to my GWT project under ECLIPSE, so that the two applications run on the same server and I don't need different ports, no xss, etc... What would be the best way of doing that? Do I need to unpack the war file somehow into the project directory?

GWT Plugin

2011-03-08 Thread Zied Chouk
Hello, I would like to customize the GWT Plugin by adding some features that can help me in my developments. So, my question is : Can i do it and how can i proceed to do it? Many Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Need help regarding loadVisualizationApi

2011-03-08 Thread Ferdinand Ng
Hi Experts, I am new to GWT and trying out the example SimpleViz. I call the loadVisualizationApi the library but nothing seems happened: public class ImageViewer implements EntryPoint { private RootPanel rootPanel; public void onModuleLoad() { /*

[JSONP Call] Uncaught ReferenceError: callback0 is not defined

2011-03-08 Thread proximus
Hi everyone, I am currently working on an implementation fetching database results via a PHP webservice. Due to the fact the webservice is located on another host, I have to use a JSONP call / JSNI, which implemented 1:1 as described here in the docs:

I can't integrate Spring with GWT! What can I do?

2011-03-08 Thread Renan Wuo
Hi everybody I'm working on a project that's currently using: GWT - 2.0.4 Spring - 3.0.5 Hibernate - 3.3.1 Maven - 2.2.1 Google Plug in for Eclipse 3.6(HELIOS) - 2.2.0 Whenever I try to run my app using the Jetty server I got this error: org.xml.sax.SAXParseException:

Re: User roles in GWT applications

2011-03-08 Thread csaffi
I'm also considering java security frameworks like Apache Shiro and Spring Security... What do you think about them? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com.

Re: Fire EntityProxyChange event in the client side!

2011-03-08 Thread Thomas Broyer
You have to fireEventFromSourcehttp://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/event/shared/EventBus.html#fireEventFromSource(com.google.gwt.event.shared.GwtEvent, java.lang.Object), using the proxy's class as the source:

Fire EntityProxyChange event in the client side!

2011-03-08 Thread -sowdri-
Dear All, I've got multiple activities, and one of the activity is changing a proxy. I would like to update other views displaying the proxy. I've made the activities subscribe for EntityProxyChange. But when I fire the below event, it is not being fired.

Re: User roles in GWT applications

2011-03-08 Thread Lukasz
UserMgr is a simple class containing the functionality needed for the UI to do the roles checks, login logout user etc. The list of roles assigned to the user is not a part of the UserMgr itself but it's a property of the User entity -a simple HashSet to be precise. The UserMgr has a property

GWT RPC getting 404 error

2011-03-08 Thread azuniga
I am rather new to GWT and I'm attempting to get RPC working. I am getting the following error: [WARN] 404 - POST /com.gwt.ReportGeneration.ReportGeneration/report (127.0.0.1) 1434 bytes Request headers Host: 127.0.0.1: User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64);

Re: Additional WAR File

2011-03-08 Thread Thomas Broyer
You have the choice: - deploy geoserver on a separate server and setup a proxy servlethttp://code.google.com/p/google-web-toolkit/issues/detail?id=3131 in your webapp to bypass the SOP - deploy your GWT app along with geoserver in a server (using WTP for instance) and launch your

Re: GWT RPC getting 404 error

2011-03-08 Thread Erik Bens
Hi, this site is called: /com.gwt.ReportGeneration.ReportGeneration/ report your handling this site: url-pattern/reportgeneration/report/url- pattern Regards On Mar 8, 4:30 pm, azuniga alessandro.zun...@gmail.com wrote: I am rather new to GWT and I'm attempting to get RPC working. I am

Re: gzip compression not working for webkit( Both safari and chrome)

2011-03-08 Thread Chris Conroy
This may just be a bug in chrome developer tools. Verify the size of the transfer using a packet sniffer or proxy. On Tue, Mar 8, 2011 at 7:58 AM, kiran kumar kirankumarsm...@gmail.comwrote: Hi I have enabled gzip compression on tomcat container level and it is working fine with Firefox. i

Re: Netbeans plugin

2011-03-08 Thread khiem nguyen
there's one, works with normal AsyncService , just go to preference-plugins... u'll find it. but i dont think u can use GWT-Designer. if u u maven, it doesnt matter which ide u're using On Tue, Mar 8, 2011 at 3:27 PM, András Csányi sayusi.a...@gmail.com wrote: Hi all! Does anybody use the GWT

Re: Additional WAR File

2011-03-08 Thread Thomas Lefort
Nice, thanks for all the pointers. I will try your second suggestion. Thanks again. On Mar 8, 4:35 pm, Thomas Broyer t.bro...@gmail.com wrote: You have the choice:    - deploy geoserver on a separate server and setup a proxy

Re: GWT RPC getting 404 error

2011-03-08 Thread azuniga
Thank you, I thought that the rename-to in the .gwt.xml would allow me to reference it in that manner, but once I changed it to / com.gwt.ReportGeneration.ReportGeneration/report it worked. Now I gotta get the RPC's to work. Thanks again Erik. On Mar 8, 4:24 pm, Erik Bens bense...@googlemail.com

Re: How to solve this design problem, when using RequestFactory ? (how to enforce client and server to use same interface)

2011-03-08 Thread JosephLi
hi Thomas, Any plans on getting similar checks that performed by RequestFactoryInterfaceValidator to the Eclipse plugin so it will show it immediately there is an error and possibly offered a suggestion right there thru Ctrl-1? Thanks, Joseph -- You received this message because you are

Re: dependent fields in the Editor framework

2011-03-08 Thread Y2i
One approach for computing dependencies and updating dependent fields is 1. for each field editor (editors for a and b fields) in the umbrella editor, addValueChangeHandler() 2. In the handlers compute dependent fields (sum) and update them -- You received this message because you

Re: How to solve this design problem, when using RequestFactory ? (how to enforce client and server to use same interface)

2011-03-08 Thread Thomas Broyer
I'm sure it's in the works, but I'm not working at Google… ;-) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Help with University Project

2011-03-08 Thread Ross McKinnon
Thanks for the replys so far. Anyone else would be greatly appreciated! Ross On Mar 8, 11:28 am, Ross McKinnon r.mckinno...@googlemail.com wrote: Hi everyone, For my final year university project, I implemented a Requirements Management tool in GWT.  The application is web-based, allowing

Re: Maximum call stack size exceeded on chrome and too much recursion on FF (gwt 2.2 web mode)

2011-03-08 Thread Juan Pablo Gardella
I think this is a bug. 2011/3/8 tekbe tim_ehl...@gmx.de After some JavaScript debugging, we found the error. We are using a custom formatter for GWT 2.2 logging which extends the abstract java.util.logging.Formatter. This works as long we don't call the method formatMessage(LogRecord

Re: I can't integrate Spring with GWT! What can I do?

2011-03-08 Thread Juan Pablo Gardella
If you have internet in your machine where you work, verify if you behind a proxy. The set the proxy in your IDE. If not you can unzip the schema and paste in your project. Or try with: http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd; Juan

Re: Offline devmode firefox plugin problem

2011-03-08 Thread Gail
Hello again, Okay, I found in the Release notes for Red Hat JBoss Web Framework Kit v 1.1 that GWT Developer plugin is not compatible with Red Hat Enterprise Linux 4. This was in Chapter 8 Known Issues with this release with a JIRA reference of JBPAPP-5099. Looking at the JIRA comments, the fix

Re: Code split of client bundle

2011-03-08 Thread Deepak Singh
Any guidance pls. On Tue, Mar 8, 2011 at 12:45 AM, Deepak Singh deepaksingh...@gmail.comwrote: Hi All, I am using a clientBundle in client package. Also, i have some DTO classes in shared package. I also use code splitting in my application. I want to know that Are ClientBundle and DTO in

Re: Offline devmode firefox plugin problem

2011-03-08 Thread Chris Conroy
Some distros repackaged libnspr in a way that breaks our linkage to it. Do you have a /usr/lib/libnspr4.so? If not, see if you have a similarly named lib and trying making /usr/lib/libnspr4.so symlink to your installed nspr. On Tue, Mar 8, 2011 at 1:40 PM, Gail ba...@yahoo.com wrote: Hello

Re: Disabling certain dates in datepicker failing

2011-03-08 Thread ctasada
I answer the same question some time ago. You can check an small tutorial here: http://ctasada.blogspot.com/2010/08/gwt-extend-datepickercalendarview.html I hope it helps. On Mar 8, 2:09 pm, ALB-PSP-DV1 albpsp...@gmail.com wrote: I'm new to GWT. I'm using GWT 2.1.1. I have requirement to

Re: I can't integrate Spring with GWT! What can I do?

2011-03-08 Thread Renan Wuo
Thanks for the help. I do have access to the internet and the proxy configurations are ok. When I put the schema in the project this error is solved, but I got a new error: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate

MenuBar Binding Data

2011-03-08 Thread gadaleta.marco
Hello everyone, i'm trying to optimize my gwt project finding to bind data with gwt ui widget (for example a MenuBar). Is it possible? Thx, Marco -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

CellTree: Changing the default no data message for empty nodes

2011-03-08 Thread aarnott
Is there a way with the CellTree to change the default no data message when a tree node is empty? Maybe I'm taking the wrong approach, but I am using an RPC to load the children of a particular node once it is opened and when the loading is happening, the node shows the no data message. I'd

GWT 2.2 Deferred binding failed

2011-03-08 Thread Yaakov
Hi, I dug into my error a bit more... I used GWT 2.0 and everything was working just fine. Now, that I switched to GWT 2.2, recreated the workspace, and deployed to the server, everything is still fine... However, now, I am getting an error when I try to use the Eclipse GWT debugger server. The

Re: GWT 2.2 Deferred binding failed

2011-03-08 Thread Yaakov Chaikin
Oh, one more thing... The class that it asks about me forgetting to inherit a required module IS part of the main module... (i.e., obviously, it can't include itself) -Yaakov. On Tue, Mar 8, 2011 at 3:31 PM, Yaakov yaakov.chai...@gmail.com wrote: Hi, I dug into my error a bit more... I used

Re: suggestbox selection handler and keypress handler

2011-03-08 Thread Nate Bauernfeind
Did you ever solve this problem? On Feb 10, 6:11 am, Torgeir torgeir.ve...@gmail.com wrote: Am looking for an easy way to avoid a keypress from the textbox of a suggestbox when the user selects an item from the suggested dropdown. I need to handle both in my application, but if the user

Re: Where to place external libs?

2011-03-08 Thread nacho
Did you added your lin to your class path? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Re: Where to place external libs?

2011-03-08 Thread nacho
*lin = lib -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more

Re: How do I Serialize JDO Enhanced Classes for RPC?

2011-03-08 Thread John-Philip Johansson
Yes it would work, but it doesn't quite communicate the same thing and doesn't have to mean the same thing either. Both work, but I choose IsSerializable because I thought Google's reasons were sound and my code is already bound to GAE and GWT in so many ways that this simple data-holder structure

Re: Removing a detached instance

2011-03-08 Thread FrugoFrog
shouldn't one merge the entity first ? so that it's managed/attached. em.remove(em.merge(this)); regards 2011/3/7 SrArcos srar...@gmail.com: Hello all, I don't know if my question must be here, but I need a help with this problem and I don't know exactly where it can being solved. I'm

Re: GWT-Designer bug ?

2011-03-08 Thread khiem nguyen
sorry Version: Helios Service Release 2 Build id: 20110218-0911 gpe: 3.6 gwt-design 2.2 gwt 2.2.0 jdk 1.6.0_24 linux 2.6.35.11-83.fc14.x86_64 (same problem on OSX 10.6.6, jdk 1.6 with the same gwt+ eclipse + gpe + gwt-design version) Full context stack trace: java.lang.NullPointerException

Printing; controlling top and bottom page margins

2011-03-08 Thread Rob Tanner
Hi, Found a great little class to enable me to print the contents of panels. Here's the URL: http://gwt-commons-sandbox.googlecode.com /svn/branches/freller/gwt-commons/src/org/gwtcommons/user/ client/Print.java I'm printing the contents of a HorizontalPanel() that contains an

Editor Framework for large set of properties

2011-03-08 Thread Kathiravan Tamilvanan
I have read the Editor framework tutorial and looked at Dynatablerf example. I would like to use the Editor approach for a large number of properties in an application. We have a large set of key-value properties and have created the UI using UIBinder. The properties can be of different

Sending data from Servlet to RPC class

2011-03-08 Thread Mittal
I have following use case, - upload csv file which may have invalid data - If invalid data is found, business service shall return list of error value objects - display error value objects to user - if no invalid data is found, business service shall return list of some other value objects -

Re: Removing a detached instance

2011-03-08 Thread SrArcos
Thanks!! It works fine! I was going crazy for a line, thank you very much! On 8 mar, 23:41, FrugoFrog frugof...@gmail.com wrote: shouldn't one merge the entity first ? so that it's managed/attached. em.remove(em.merge(this)); regards 2011/3/7 SrArcos srar...@gmail.com: Hello all, I

Re: Where to place external libs?

2011-03-08 Thread Juan Pablo Gardella
Post your pom.xml file if you want help with this Juan 2011/3/8 Andreas Wederbrand andr...@wederbrand.se Hi! I'm running 2.2 on ubuntu and I'm including external libraries (log4j) within my maven2 file but they don't get copied anywhere and when running devMode I get noSuchClassException.

Re: I can't integrate Spring with GWT! What can I do?

2011-03-08 Thread Juan Pablo Gardella
Try put this in your file. Remove the schema that you don't need: ?xml version=1.0 encoding=UTF-8? beans xmlns=http://www.springframework.org/schema/beans; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns:context= http://www.springframework.org/schema/context;

Re: the response could not be deserialized - HELP

2011-03-08 Thread Juan Pablo Gardella
Try debugging this method: public static String invokeAndEncodeResponse(Object target, Method serviceMethod, Object[] args, In RPC class. Juan 2011/3/5 GrahamH gharold...@gmail.com Hey all, I'm trying to add a SystemAccount class to my project by using the emailAddress of the

GWT + Spring Security

2011-03-08 Thread j.singh.developer
This may be a repeatable question. I am looking for a resource (example would be nice) that takes into consideration all security aspects of GWT and implements it using Spring Security. Any guidelines, pointing to resources will be really appreciated. Thanks -- You received this message because

GWT compilation fails during permutation phase.

2011-03-08 Thread uthark
Hello all. I use GWT 2.1.1. Suddenly, my project stopped to compile, the output from compiler is: [INFO]Compiling 5 permutations [INFO] Process output [INFO] [ERROR] Exception in thread main java.lang.ClassCastException: cannot assign instance of

Re: GWT + Spring Security

2011-03-08 Thread Juan Pablo Gardella
Read ProWeb 2.0 Application Development with GWT. There are some guidelines. Juan 2011/3/8 j.singh.developer j.singh.develo...@gmail.com This may be a repeatable question. I am looking for a resource (example would be nice) that takes into consideration all security aspects of GWT and

Can't embed flowplayer in IE7 using 'Label.setContents'

2011-03-08 Thread Sabbia
Hi everybody! I'm really breaking my mind. First of all, I'm using GWT 2.2.0. I'm using Flowplayer to play videos in my web. In a first time, I had added the player and the video in the html file, in this way: script type=text/javascript src=prueba_web/

Re: I can't integrate Spring with GWT! What can I do?

2011-03-08 Thread Craig Mitchell
GWT has a bug in Hosted mode with Spring and Hibernate: http://code.google.com/p/google-web-toolkit/issues/detail?id=3496 On Mar 9, 12:49 am, Renan Wuo renan.baixi...@gmail.com wrote: Hi everybody I'm working on a project that's currently using:   GWT - 2.0.4   Spring - 3.0.5   Hibernate -

Re: Fire EntityProxyChange event in the client side!

2011-03-08 Thread -sowdri-
Thanks Thomas! The solution worked. I'm not sure this is a good thing though. Could you please shed some light on the practice of using fireEvent and fireEventFromSource! An additional post in your posterioushttp://tbroyer.posterous.com/blog would be great :) Regards, -sowdri- -- You

Re: suggestbox selection handler and keypress handler

2011-03-08 Thread Nate Bauernfeind
Wow, that took me way too many hours to find a 'decent' solution/ workaround. I needed to, effectively, submit a form/complete a task if the user hit ENTER when the suggestion list was hidden or otherwise let the suggestion fill in the box and set focus back in that box (imagine multi-keyword

Type cast issue only in web mode

2011-03-08 Thread Frank
Hi all, I'm working with a gwt generator which gets triggered by the interface GeneratorTrigger. I'm generating code which implements a second interface called FancyClass and I'm adding it to the class' signature: composer.addImplementedInterface(FancyClass.class.getName()); All in all I'm

Re: Can't serialize a Hashset for an RPC call

2011-03-08 Thread Chris D
Exactly, and that's what I'm confused about. As I said before, I'm not using the datanucleus implementation at all, anywhere. I can't understand where that's coming from On Mar 8, 12:12 pm, Jeff Larsen larse...@gmail.com wrote: Yes all of my imports are the Java.util implementation of the

RequestFactoryServlet mapping question

2011-03-08 Thread opn
Hello everybody, I have got a question regarding the mapping of the RequestFactoryServlet. My app has got two different locations for gwt modules right now. One is located in '/app' and another is located in '/app/admin'. I hope I am explaining it correctly. I mean that my .html files are located

[gwt-contrib] Typo in javadocs

2011-03-08 Thread T
Hi, This is just a tiny issue, so I don't want to involve issuetracking. I'm dealing with i18n translation, so I decided to generate properties from default locale. I've annotated my constants with @Generate as provided in:

Re: [gwt-contrib] Typo in javadocs

2011-03-08 Thread John Tamplin
On Tue, Mar 8, 2011 at 6:11 AM, T tomek.maty...@gmail.com wrote: This is just a tiny issue, so I don't want to involve issuetracking. I'm dealing with i18n translation, so I decided to generate properties from default locale. I've annotated my constants with @Generate as provided in:

[gwt-contrib] Re: Adds a cache (PersistenUnitCache) to store CompilationUnits (issue1375802)

2011-03-08 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1375802/diff/1/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java File dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java (right):

[gwt-contrib] [google-web-toolkit] r9823 committed - Adding junit-stripped variation of testng, which used to embed junit

2011-03-08 Thread codesite-noreply
Revision: 9823 Author: fabb...@google.com Date: Tue Mar 8 08:59:35 2011 Log: Adding junit-stripped variation of testng, which used to embed junit http://code.google.com/p/google-web-toolkit/source/detail?r=9823 Added: /tools/lib/testng/README /tools/lib/testng/strip_junit.sh

[gwt-contrib] Re: Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-08 Thread Freeland Abbott
Pre-existing non-conforming, but yes, they should all use our jar. On Mon, Mar 7, 2011 at 4:24 PM, j...@google.com wrote: LGTM Why do some of our .classpath entries reference the JUnit jar directly, and others reference the Eclipse library JUNIT_CONTAINER? It seems likely that you need to

[gwt-contrib] [google-web-toolkit] r9824 committed - property fall back value evaluation scheme - enable fall back bindings...

2011-03-08 Thread codesite-noreply
Revision: 9824 Author: gwt.mirror...@gmail.com Date: Tue Mar 8 09:11:26 2011 Log: property fall back value evaluation scheme - enable fall back bindings. Review at http://gwt-code-reviews.appspot.com/1369807 http://code.google.com/p/google-web-toolkit/source/detail?r=9824 Added:

[gwt-contrib] Re: Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-08 Thread fabbott
http://gwt-code-reviews.appspot.com/1374801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Switching to the junit4 jars, although the @annotation stuff isn't (issue1374801)

2011-03-08 Thread jat
LGTM assuming you verified api-checker and cldr-import work with the new jars. http://gwt-code-reviews.appspot.com/1374801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] add ie9 user.agent with fallback binding to ie8. (in preparation for ie9 support). (issue1369808)

2011-03-08 Thread fabiomfv
Reviewers: rjrjr, jlabanca, jat, Description: add ie9 user.agent with fallback binding to ie8. (in preparation for ie9 support). Please review this at http://gwt-code-reviews.appspot.com/1369808/ Affected files: M user/src/com/google/gwt/user/UserAgent.gwt.xml Index:

[gwt-contrib] Re: add ie9 user.agent with fallback binding to ie8. (in preparation for ie9 support). (issue1369808)

2011-03-08 Thread John Tamplin
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fixing ActionCell and ButtonCell clicks outside of the Button element are ignored. (issue1371810)

2011-03-08 Thread pdr
On 2011/03/07 16:43:50, jlabanca wrote: adapted from http://gwt-code-reviews.appspot.com/1183801/show LGTM http://gwt-code-reviews.appspot.com/1371810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] CLA response

2011-03-08 Thread Jens
Hi, I signed the individual CLA through the online form (I think it was last friday) and just wondering if there is any response from Google when its accepted? -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] gwt referencing a field not assigned - r9659

2011-03-08 Thread Deepak Khosla
Hi, Is there a way to tell if the checkin above http://code.google.com/p/google-web-toolkit/source/detail?r=9659 made it into the latest GWT 2.2? We have been having issues with our 'large' application using sencha GXT with GWT2.1.

[gwt-contrib] How to run a single test ?

2011-03-08 Thread Antoine DESSAIGNE
Hi, I've fixed an issue in gwt-user but I wasn't able to run the test I wrote. Running the test in Eclipse as a JUnit test fails and gives me a lot of com.google.gwt.core.ext.UnableToCompleteException. It tells me to look for the previous errors but I have so many of these

Re: [gwt-contrib] CLA response

2011-03-08 Thread Eric Ayers
No, there is no automated acknowledgement, but I just checked and can see that it got here OK. On Tue, Mar 8, 2011 at 4:53 AM, Jens jens.nehlme...@gmail.com wrote: Hi, I signed the individual CLA through the online form (I think it was last friday) and just wondering if there is any

[gwt-contrib] Re: gwt referencing a field not assigned - r9659

2011-03-08 Thread Sven Brunken
On 5 Mrz., 04:38, Deepak Khosla dkho...@x-iss.com wrote: Hi, Is there a way to tell if the checkin abovehttp://code.google.com/p/google-web-toolkit/source/detail?r=9659made it into the latest GWT 2.2? We have been having issues with our 'large' application using sencha GXT with

[gwt-contrib] Re: Adds a cache (PersistenUnitCache) to store CompilationUnits (issue1375802)

2011-03-08 Thread scottb
One other thing we should talk about is ditching all of the static-ness. The static-ness doesn't gel well with CompilationStateBuilder. CSB is usually a singleton, but you can instantiate an isolated CSB for testing which has a distinct cache that cannot be interfered with. It seems like CSB

[gwt-contrib] [google-web-toolkit] r9825 committed - Switching to the junit4 jars, although the @annotation stuff isn't goi...

2011-03-08 Thread codesite-noreply
Revision: 9825 Author: fabb...@google.com Date: Tue Mar 8 08:22:05 2011 Log: Switching to the junit4 jars, although the @annotation stuff isn't going to work. Also switching to the non-junit4 testng jars, to avoid classpath order confusion. Review at

[gwt-contrib] Re: add ie9 user.agent with fallback binding to ie8. (in preparation for ie9 support). (issue1369808)

2011-03-08 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1369808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Adds a cache (PersistenUnitCache) to store CompilationUnits (issue1375802)

2011-03-08 Thread jbrosenberg
I agree with making PUC non-static. This reduces the need to synchronize on getting instance, etc. http://gwt-code-reviews.appspot.com/1375802/diff/5002/dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java File dev/core/src/com/google/gwt/dev/javac/PersistentUnitCache.java (right):

[gwt-contrib] Fixed validation classifier, added clean plugin to prevent gwt-user from being deployed to GAE, ... (issue1377802)

2011-03-08 Thread drfibonacci
Reviewers: rchandia, Description: Fixed validation classifier, added clean plugin to prevent gwt-user from being deployed to GAE, upgraded to GAE 1.4.2 Please review this at http://gwt-code-reviews.appspot.com/1377802/ Affected files: M samples/expenses/pom.xml Index:

[gwt-contrib] Re: CompileModule / GwtAstBuilder (issue1373805)

2011-03-08 Thread zundel
LGTM, I have no substantive comments, go forth and code some more. I was asking myself if the stack approach might increase memory requirements, but the entire tree must already be in memory, so I stopped worrying about it.

[gwt-contrib] Re: CompileModule / GwtAstBuilder (issue1373805)

2011-03-08 Thread scottb
Okay.. so should I submit this? That way, future reviews will be vs. trunk. Maybe I should add a basic unit test to make sure that this at least doesn't crash, and maybe even that the output is the same as the web mode compiler for some test file.

[gwt-contrib] Re: CompileModule / GwtAstBuilder (issue1373805)

2011-03-08 Thread Eric Ayers
On Tue, Mar 8, 2011 at 9:36 PM, sco...@google.com wrote: Okay.. so should I submit this? That way, future reviews will be vs. trunk. Maybe I should add a basic unit test to make sure that this at least doesn't crash, and maybe even that the output is the same as the web mode compiler for

[gwt-contrib] Makes gadget linker shardable, derived from CrossSiteIframeLinker (issue1370808)

2011-03-08 Thread zundel
Reviewers: unnurg, http://gwt-code-reviews.appspot.com/1370808/diff/2001/gadgets/src/com/google/gwt/gadgets/linker/GadgetLinker.java File gadgets/src/com/google/gwt/gadgets/linker/GadgetLinker.java (right):

[gwt-contrib] PatternValidator matches the whole input string. (issue1378801)

2011-03-08 Thread nchalko
Reviewers: rchandia, Description: PatternValidator matches the whole input string. [JSR 303 TCK Result] 111 of 257 (43.19%) Pass with 19 Failures and 9 Errors. Please review this at http://gwt-code-reviews.appspot.com/1378801/ Affected files: M

  1   2   >