Re: Unchecked exceptions from server to client

2010-09-16 Thread Sripathi Krishnan
Does anyone have a reason for why I should not report this a bug in the issue tracker ? Its a feature, not a defect. You have to *explicitly* declare any methods you want to send to the client. Without this declaration, GWT would have had to create javascript code for every RuntimeException

Re: Unchecked exceptions from server to client

2010-09-16 Thread Kasper Hansen
Its a feature, not a defect. You are quite right. You have to explicitly declare any methods you want to send to the client. Without this declaration, GWT would have had to create javascript code for every RuntimeException in the system - and that would certainly lead to code bloat.

Re: GWT Hosted Mode Slow

2010-09-16 Thread Frederic Conrotte
We have the same issue and we realized that deleting all the GWT- produced files in the Windows %Temp% folder solved the problem Fred On Sep 15, 11:26 pm, Niels n...@niemo.com wrote: I have a bit of a problem with GWT Hosted mode taking an awful long time to launch my app - even just reloading

Re: Unchecked exceptions from server to client

2010-09-16 Thread Sripathi Krishnan
You can create a new base exception class MyAppClientException extends RuntimeException, and then mandate all RPC methods to delcare MyAppClientException in the throws clause. If you do that, GWT will automatically write client code for any class that extends MyAppClientException, and you won't

Re: Unchecked exceptions from server to client

2010-09-16 Thread Kasper Hansen
and then mandate all RPC methods to delcare MyAppClientException in the throws clause. How would I do that ? I hope you do not mean by manually adding MyAppClientException to all my service interfaces... ? On Thu, Sep 16, 2010 at 9:57 AM, Sripathi Krishnan sripathi.krish...@gmail.com wrote:

Re: Invoking HTTPS Web Serivce

2010-09-16 Thread Deepak Singh
I also need to do similar task. For that, i integrated Spring with gwt and now am planning to use Spring-ws to invoke web services. On Wed, Sep 15, 2010 at 10:11 AM, Amit amitsdi...@gmail.com wrote: Hi, I want to invoke HTTPS Soap Call Using GWT, How Should I go about it? Thanks, Amit --

Identify Right and Left button click.

2010-09-16 Thread udayanga ranasinghe
Hi, I want to identify left or right button click event in the onCLickHandler. Plz help me, Thanks n Regards Udayanga. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Identify Right and Left button click.

2010-09-16 Thread Thomas Broyer
On Sep 16, 12:06 pm, udayanga ranasinghe udayanga.u...@gmail.com wrote: Hi, I want to identify left or right button click event in the onCLickHandler. Hi, event.getNativeEvent().getButton()

Re: Identify Right and Left button click.

2010-09-16 Thread udayanga ranasinghe
Thanks On Thu, Sep 16, 2010 at 4:11 PM, Thomas Broyer t.bro...@gmail.com wrote: On Sep 16, 12:06 pm, udayanga ranasinghe udayanga.u...@gmail.com wrote: Hi, I want to identify left or right button click event in the onCLickHandler. Hi, event.getNativeEvent().getButton()

Re: Unchecked exceptions from server to client

2010-09-16 Thread San0
Hi again, I did more research about our way of handling exceptions. Most of our service methods doesnt have any throws declarations but all of them have validation, which is throwing runtime exception (here we are sending field names with errors). Bad service: public interface

My kingdom for a cache

2010-09-16 Thread David Pinn
I'm looking for a Java class or Java library that will help me implement a client-side cache for data fetched from the server. I'm thinking of a Map-like structure the contents of which are evicted on a least-recently-used basis, or after some predefined duration. Since it will be embedded in a

Re: Unchecked exceptions from server to client

2010-09-16 Thread Kasper Hansen
Hi, And thanks for your continuing interest in this subject.    void getObject() throws RuntimeException; // or our GwtClientException } Problem is gone... Every method from service can throw our RuntimeExceptions. Is it feature or a bug? If you need to declare a RuntimeException, or

Re: Can't Set App Engine SDK - Eclipse Plugin

2010-09-16 Thread -Erno
I had same problem, but this way I get it. You have to add app engine sdk (properties-java build path- libraries) then remember make sure that all maven jars are at bottom in order and export tab. I hope this helps. On Sep 8, 2:56 am, sdoca sd...@shaw.ca wrote: Hi, I have been trying to set

Re: IE 9 Beta exception in IE9Standards mode on button creation

2010-09-16 Thread Brian
fixed this by specifying the IE8 useragent in the hosting html page header: meta http-equiv=X-UA-Compatible content=IE=8 On Sep 15, 7:01 pm, Thomas Broyer t.bro...@gmail.com wrote: On 15 sep, 21:30, Brian hibr...@gmail.com wrote: Just downloaded the IE9 beta, and ran my site

Re: My kingdom for a cache

2010-09-16 Thread Marcin Zawadzki
Take a look at this, might help http://turbomanage.wordpress.com/2010/07/12/caching-batching-dispatcher-for-gwt-dispatch/ On Thu, Sep 16, 2010 at 2:15 PM, David Pinn dp...@byandlarge.net wrote: I'm looking for a Java class or Java library that will help me implement a client-side cache for

Re: Development Mode performance with Chrome

2010-09-16 Thread Sean
I'm not sure if this deserves it's own post either, but I can't stand using Chrome in dev mode because when Debugging Chrome constantly informs me that the plugin has stopped responding and do I want to kill it. Is there anyway to say Don't Tell Me Again for the rest of this page's session? Or for

gwt-maven-plugin: include files from src/main/test for gwt:debug

2010-09-16 Thread Thalles
Dear mailinglist, I need to include classes located in the src/main/test folder to be compiled with the other classes in the src/main/java folder when I start my project with gwt:debug. Is there any way to configure a second source folder for the compilation process with the gwt-maven-plugin?

Re: My kingdom for a cache

2010-09-16 Thread Sebastian Hoß
Well there is a browser cache already. Once you've configured your server to send out some cache related headers you get a client-side cache with no further additional work. On Thu, Sep 16, 2010 at 2:36 PM, Marcin Zawadzki marcin.zawad...@gmail.com wrote: Take a look at this, might help

Re: DockLayoutPanel inside a TabLayoutPanel

2010-09-16 Thread andrew_d_mackenzie
I do this in my app without a problem, with the slight different that to the TabLayoutPanel I add my own composite widget, which has a DockLayoutPanel. I have no problems, and almost all my tabs in the tabpanel do the same... something along the lines of public void MyWidget extends Composite {

Can we run selenium tests in GWT dev mode?

2010-09-16 Thread Andrey
Or we should compile the app first? Thanks in advance! -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-16 Thread Jason Hatton
Lalit we are not using Spring MVC. We am using gwt-dispatch and have extended that project's dispatch servlet to get the Spring integration. We then added a custom annotation to pick up the appropriate dispatch action handler for a particular GWT-RPC on the server side. All of our GWT-RPC calls

Re: My kingdom for a cache

2010-09-16 Thread David Pinn
Thank you, Marcin; that is useful. On Sep 16, 10:36 pm, Marcin Zawadzki marcin.zawad...@gmail.com wrote: Take a look at this, might help http://turbomanage.wordpress.com/2010/07/12/caching-batching-dispatch... On Thu, Sep 16, 2010 at 2:15 PM, David Pinn dp...@byandlarge.net wrote:

Re: My kingdom for a cache

2010-09-16 Thread David Pinn
That would work fine if I was fetching HTML pages, but in fact, I'm fetching data - records from a database, if you will - via AJAX. On Sep 16, 11:36 pm, Sebastian Hoß m...@shoss.de wrote: Well there is a browser cache already. Once you've configured your server to send out some cache related

Re: My kingdom for a cache

2010-09-16 Thread mooreds
Hi David, Most AJAX implementations respect caching headers, then you can let the browser handle eviction of your data. http://www.mnot.net/javascript/xmlhttprequest/cache.html has a set of tests for browsers. However, if you want to mark something dirty and have the cache pull it down, then

Re: GWT 2.1M3 Expenses

2010-09-16 Thread David Chandler
Which class is not found? Do you have json-20090211.jar in your classpath? /dmc On Sep 16, 1:38 am, Rud rudmerr...@gmail.com wrote: Thomas, Thanks, that let me make some headway but not there yet. My web.xml now has: servlet    servlet-namerequestFactory/servlet-name    servlet-

Re: Unchecked exceptions from server to client

2010-09-16 Thread Etienne Lacazedieu
I managed to d that, but its quite tricky... What we have : - a GWT RPC controller servlet, that handles ALL RPC calls (all calls URL are of the form MyService.rpc - it uses MyService to resolve a Spring bean, which is used to perform the service (we inject the request and response in the

Re: My kingdom for a cache

2010-09-16 Thread bbraasch
Itemscript is a Gwt library with a client side mock server. See http:itemscript.org for documentation and downloads. Bill On Sep 16, 7:15 am, David Pinn dp...@byandlarge.net wrote: I'm looking for a Java class or Java library that will help me implement a client-side cache for data fetched

Re: gwt-maven-plugin: include files from src/main/test for gwt:debug

2010-09-16 Thread Hilco Wijbenga
On 16 September 2010 06:18, Thalles henry.rotz...@googlemail.com wrote: Does anybody have an idea? Thanks in advance! http://mojo.codehaus.org/build-helper-maven-plugin/index.html is probably what you need. -- You received this message because you are subscribed to the Google Groups Google

Any metrices on amount of code/data we can put on client side (browser)

2010-09-16 Thread lalit
Looking for some metrices about how much code and data we can push on the client side. I understand that this will be a function of client machine capabilities also. But if there are some specific indicators in terms of browser capabilities, that would be great. For example how much megs of code

Re: Development Mode performance with Chrome

2010-09-16 Thread PhilBeaudoin
I echo these thoughts. Chrome is easily my favorite browser for everything but testing my GWT apps in dev mode. On Sep 16, 6:04 am, Sean slough...@gmail.com wrote: I'm not sure if this deserves it's own post either, but I can't stand using Chrome in dev mode because when Debugging Chrome

Google Releases Instantiations Development Tools, Free Of Charge

2010-09-16 Thread chiappone
http://googlewebtoolkit.blogspot.com/2010/09/google-relaunches-instantiations.html This seems like good news, curious if people have used these tools before? Are they helpful do they make use of UiBinder? -- You received this message because you are subscribed to the Google Groups Google Web

Re: Google Releases Instantiations Development Tools, Free Of Charge

2010-09-16 Thread Joseph Ottinger
I don't know about UiBinder, but I can say that instatiations' stuff is the only UI design kit I've ever used that hasn't made me want to blow my cookies. On Thu, Sep 16, 2010 at 1:41 PM, chiappone chiapp...@gmail.com wrote:

Re: Google Releases Instantiations Development Tools, Free Of Charge

2010-09-16 Thread Christian Goudreau
Yes they did ! Still in beta stage. http://code.google.com/intl/fr-FR/webtoolkit/tools/gwtdesigner/ http://code.google.com/intl/fr-FR/webtoolkit/tools/gwtdesigner/Cheers, On Thu, Sep 16, 2010 at 1:59 PM, Joseph Ottinger j...@enigmastation.comwrote: I don't know about UiBinder, but I can say

Re: Google Releases Instantiations Development Tools, Free Of Charge

2010-09-16 Thread rip1870
I haven't built anything large with the tools, but I did run through some tutorials and these tools make it so easy to build an application. Adding events and integration of modules visually . . . very nice! It will be cool when they can integrate UIBinder with this too. On Sep 16, 2:05 pm,

GWT Designer Custom widgets

2010-09-16 Thread marius.andreiana
Hi, It it possible to use custom widgets (which extend Composite) in GWT Designer, just like the standard GWT widgets? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT Designer Custom widgets

2010-09-16 Thread Kasper Hansen
I'm building visual composites right now, using GWT Designer, and using them on other panels. It works :-) On Thu, Sep 16, 2010 at 8:20 PM, marius.andreiana marius.andrei...@gmail.com wrote: Hi, It it possible to use custom widgets (which extend Composite) in GWT Designer, just like the

GWT designer mVp

2010-09-16 Thread marius.andreiana
Do you see GWT designer working together with GWT 2.1 MVP model, and have it seamlessly generate UiBinder View files? Could it be a tool used by designers to do UiBinder mockups (instead of classic wireframes/mocks), ready to be used by developers? (a dream came true :) -- You received this

Re: GWT designer mVp

2010-09-16 Thread Christian Goudreau
You see Marius, now your business must take the train ! Don't miss it, what's ahead is bright and shiny ! Cheers :D On Thu, Sep 16, 2010 at 2:29 PM, marius.andreiana marius.andrei...@gmail.com wrote: Do you see GWT designer working together with GWT 2.1 MVP model, and have it seamlessly

GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-16 Thread marius.andreiana
When trying to create a New - Window Builder - GWT - UiBinder - Composite, I get Unable to open file /templates/Composite.jvt from com.instantiations.designer.gwt.UiBinder. New composite from GWT - Basic works. I'm using Eclipse 3.5. Is this a known issue? What would be the solution? Thanks

Configurable Date Serialization in GWT RPC

2010-09-16 Thread Slava Lovkiy
Hi, There is a number of discussions exist where people ask how they can serialize dates without timezone. And most popular solution to this problem is to replace the default implementation provided by Date_CustomFieldSerializer class in gwt-servlet.jar (gwt-user.jar) with modified version which

Lombok and GWT

2010-09-16 Thread Eric Valasek
Hi, I am trying to get Lombok and GWT working together in the GWT debug mode, but seem to be having some trouble getting everything working. The feature list is here: http://projectlombok.org/features/index.html, and the information on how to integrate with javadoc and GWT is here:

GWT Eclipse Project not always updating classes

2010-09-16 Thread Samuru Jackson
Hi, I have the problem, that sometimes it happens that my changed code in / src/* is not updated in /war/WEB-INF/classes/* Even if I delete the affected class in /war/* it puts an old version of the class again back into /war/* . How can this happen? Is there a cache somewhere around? Project

Receive xml file after authentication

2010-09-16 Thread kkpirri
Hi, Need to communicate a desktop application with my GWT site in a tomcat server. The desktop application creates a XML document and the authentication info must be sent to the GWT site. The authentication must be done automatically; the user and the password are stored on the client machine and

gxt window on top of two frames

2010-09-16 Thread shumi
i am facing issues when displaying a gxt window in my sample gwt application. 1. gxt window is not displaying on the whole viewport. I see scroll bars at the bottom and side. i would like the window placed above when maximised. 2. i have tow frames in my html page. when i try to display the

Re: Any metrices on amount of code/data we can put on client side (browser)

2010-09-16 Thread Jim Douglas
You'll probably need to test it and see. FWIW, Android doesn't seem to like very large html files. When I did a 'detailed' build of our GWT project (10+MB html files, compared to 1+MB obfuscated), it crashed the browser in the Android emulator. On Sep 16, 9:59 am, lalit lalit.bh...@gmail.com

Re: Can we run selenium tests in GWT dev mode?

2010-09-16 Thread András Csányi
On 16 September 2010 16:07, Andrey mino...@gmail.com wrote: Or we should compile the app first? I think you can run the test because dev mode uses the browser. Basicly you can see in the browser. But - this is my opinion - this way not so effective. You can check that the test are okay or not

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-16 Thread Paul Stockley
What version of GWT are you using? I think it may require 2.1M3 On Sep 16, 2:49 pm, marius.andreiana marius.andrei...@gmail.com wrote: When trying to create a New - Window Builder - GWT - UiBinder - Composite, I get  Unable to open file /templates/Composite.jvt from

de-mavenize a project

2010-09-16 Thread John
A few weeks ago I was interested in GWTUpload, and I wanted to install it on Eclipse. I saw the project maintainer had written: The project has been mavenized,... Well, over the past couple of years, I've seen people rant about how great maven is, and I've gone and looked at it. My eyes glaze

Re: GWT designer mVp

2010-09-16 Thread marius.andreiana
It's really not that usable now, or at least I don't know how to use it. Would be great to have some video tutorials building real life Views with it. Some quick issues I encountered: * cannot add widgets to HTMLPanel * cannot add new CSS classes, as the dialog says * CSS class editor has poor

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-16 Thread Deepak Singh
Yes it requires 2.1M3. I need to know that , Is the designer support any Spring integration or any facility to integrate other server side frameworks? On Fri, Sep 17, 2010 at 12:45 AM, Paul Stockley pstockl...@gmail.comwrote: What version of GWT are you using? I think it may require 2.1M3

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-16 Thread marius.andreiana
On Sep 16, 10:15 pm, Paul Stockley pstockl...@gmail.com wrote: What version of GWT are you using? I think it may require 2.1M3 2.0, and the error message shows it's an issue in com.instantiations.designer.gwt.UiBinder , not gwt. On Sep 16, 2:49 pm, marius.andreiana marius.andrei...@gmail.com

Re: GWT Hosted Mode Slow

2010-09-16 Thread Niels
Thanks for the suggestions - I did find a whole lot of garbage in temp (maybe that need to be addressed too :) ), but removing it did not really make a difference. I'll get started on the good old tearing down game and see how much I have to take out to make the issue go away :). On Sep 16, 9:04 

DockLayoutPanel and LazyPanel

2010-09-16 Thread Jason Stratton
I have an application that uses a DeckPanel for the content area of my app. I have been inserting LazyPanels into the deck so that each panel only gets created when the panel is displayed. I was hoping this would help the app perform better. (As an aside, there has not been a performance issue

JAX-WS not supported on GAE

2010-09-16 Thread Deepak Singh
Hi, Recently i configured Spring with gwt 2.1m2. Now i am in need to call a SOAP based web service so i chose JAX-WS and configured this in applicatioContext.xml to consume the wsdl. When i run the application, i found that JAX-WS is not supported by GAE. Any alternative to do this ? Now i think

Re: GWT 2.1M3 Expenses

2010-09-16 Thread Rud
The missing class is: java.lang.NoClassDefFoundError: org/json/JSONException It confused me that it was an exception class. Made me think the exception was reporting the missing class instead of it being the missing class. No, I didn't have the json jar in the class path but adding it hasn't

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-16 Thread Paul Stockley
I remember seeing changes being made to the core of GWT to support UiBinder editing. That is why you need 2.1M3. Even then I don't think it is complete yet On Sep 16, 3:28 pm, marius.andreiana marius.andrei...@gmail.com wrote: On Sep 16, 10:15 pm, Paul Stockley pstockl...@gmail.com wrote: What

Re: Configurable Date Serialization in GWT RPC

2010-09-16 Thread Thomas Broyer
On 16 sep, 15:06, Slava Lovkiy slava.lov...@gmail.com wrote: Hi, There is a number of discussions exist where people ask how they can serialize dates without timezone. And most popular solution to this problem is to replace the default implementation provided by Date_CustomFieldSerializer

Re: GWT 2.1M3 Expenses

2010-09-16 Thread Thomas Broyer
On 16 sep, 22:42, Rud rudmerr...@gmail.com wrote: The missing class is: java.lang.NoClassDefFoundError: org/json/JSONException It confused me that it was an exception class. Made me think the exception was reporting the missing class instead of it being the missing class. No, I didn't

Re: DockLayoutPanel and LazyPanel

2010-09-16 Thread Thomas Broyer
On 16 sep, 21:43, Jason Stratton jason.e.strat...@gmail.com wrote: I have an application that uses a DeckPanel for the content area of my app. I have been inserting LazyPanels into the deck so that each panel only gets created when the panel is displayed. I was hoping this would help the app

Re: GWT 2.1M3 Expenses

2010-09-16 Thread Rud
Thanks...that fixed it after I also added javax.validation. On to further explorations... Rud k5rud http://www.mysticlakesoftware.com/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

REST vs SOAP for calls to remote server

2010-09-16 Thread Sunny
Greetings, I need to fetch data from a remote server which is not located in the same domain as the GWT application. My understanding is that as per same origin policy I might not be able to use REST. Is there a simple workaround or SOAP is the only alternative ? Thanks --

Re: REST vs SOAP for calls to remote server

2010-09-16 Thread marius.andreiana
On Sep 17, 6:27 am, Sunny sravip...@gmail.com wrote: Greetings,                    I need to fetch data from a remote server which is not located in the same domain as the GWT application. My understanding is that as per same origin policy I might not be able to use REST. Is there a simple

Re: GWT designer mVp

2010-09-16 Thread marius.andreiana
I'd like to add one more note to the comment below. GWT Designer seems now a tool for engineers, which don't want to learn all UiBinder tags or simply want to write code faster. IMHO, I see two possible paths for GWT Designer future: 1. Continue to improve it and address usability issues such as

Re: REST vs SOAP for calls to remote server

2010-09-16 Thread Sunny
Infact the client and the server are both in domain A. I need to make API calls to server B in domain B to get data. I think I can use SOAP to make API calls from server A in domain A to server B in domain B which are not necessarily Ajax. The server will be in java as using GWT. In step 2, on

Re: [gwt-contrib] [google-web-toolkit] r8780 committed - Fixes https://jira.springsource.org/browse/ROO-1213 - Hide Property fr...

2010-09-16 Thread Patrick Julien
2010/9/15 Miguel Méndez mmen...@google.com: Thanks for spotting that Patrick.  I'll get the code updated. no thank you -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-16 Thread Patrick Julien
Is there another wave than this one that explains how you do find() on the server using only the stable id? I really don't get how you fill in that part. My understanding is that the stable id is generated client side, so we can't persist it on the server since it will be browser session based.

Re: [gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-16 Thread Ray Ryan
For now, via the same static find methods you already provide. As quickly as we can manage it, via the same service object api already discussed. On Sep 16, 2010 6:04 AM, Patrick Julien pjul...@gmail.com wrote: Is there another wave than this one that explains how you do find() on the server

[gwt-contrib] [google-web-toolkit] r8796 committed - Fix warnings and checkstyle errors...

2010-09-16 Thread codesite-noreply
Revision: 8796 Author: gwt.mirror...@gmail.com Date: Thu Sep 16 08:13:28 2010 Log: Fix warnings and checkstyle errors Review at http://gwt-code-reviews.appspot.com/882802 Review by: amitman...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8796 Modified:

Re: [gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-16 Thread Patrick Julien
On Thu, Sep 16, 2010 at 10:30 AM, Ray Ryan rj...@google.com wrote: For now, via the same static find methods you already provide. As quickly as we can manage it, via the same service object api already discussed. I'm sorry if I am slow but how is the stable id alone sufficient to find whatever

Re: [gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-16 Thread Amit Manjhi
The stable id encodes the datastore id and the entity-type. If the RequestFactory find method cannot lookup the datastoreId for a stableId, a client side exception is thrown. On Thu, Sep 16, 2010 at 9:23 AM, Patrick Julien pjul...@gmail.com wrote: On Thu, Sep 16, 2010 at 10:30 AM, Ray Ryan

Re: [gwt-contrib] Re: Remove SyncResults. Use EntityProxyId and RequestFactory.find(EntityProxyId) (issue887802)

2010-09-16 Thread Patrick Julien
On Thu, Sep 16, 2010 at 12:29 PM, Amit Manjhi amitman...@google.com wrote: The stable id encodes the datastore id and the entity-type. If the RequestFactory find method cannot lookup the datastoreId for a stableId, a client side exception is thrown. Ah, there you go, that would do it, thanks

[gwt-contrib] [google-web-toolkit] r8797 committed - Fix RF tests...

2010-09-16 Thread codesite-noreply
Revision: 8797 Author: gwt.mirror...@gmail.com Date: Thu Sep 16 09:35:10 2010 Log: Fix RF tests Review by: rj...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8797 Modified: /trunk/user/src/com/google/gwt/requestfactory/RequestFactory.gwt.xml

[gwt-contrib] GWT Designer for UiBinder?

2010-09-16 Thread Patrick Julien
http://googlewebtoolkit.blogspot.com/2010/09/google-relaunches-instantiations.html Yeah, you guys released instantiations' gwt designer but honestly, it's still pretty unusable to me due to the fact that it's generating/parsing java code instead of UiBinder. Any plans to release a uibinder

[gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-16 Thread Thomas Broyer
On 16 sep, 19:02, Patrick Julien pjul...@gmail.com wrote: http://googlewebtoolkit.blogspot.com/2010/09/google-relaunches-instan... Yeah, you guys released instantiations' gwt designer but honestly, it's still pretty unusable to me due to the fact that it's generating/parsing java code

Re: [gwt-contrib] Re: GWT Designer for UiBinder?

2010-09-16 Thread Patrick Julien
I just noticed that it's there but it fails to load with the error: Actually, UiBinder is in the menu but it fails with the error message: Unable to open file /templates/Composite.jvt from com.instantiations.designer.gwt.UiBinder On Thu, Sep 16, 2010 at 1:34 PM, Thomas Broyer

[gwt-contrib] Calling the reset methods from gwtTearDown() results in nondeterminism. (issue890801)

2010-09-16 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/890801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-16 Thread rchandia
http://gwt-code-reviews.appspot.com/886801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-16 Thread rchandia
Implemented remaining part of the design using an ExceptionHandler http://gwt-code-reviews.appspot.com/886801/diff/3001/4005 File user/src/com/google/gwt/requestfactory/shared/Receiver.java (right): http://gwt-code-reviews.appspot.com/886801/diff/3001/4005#newcode57

[gwt-contrib] [google-web-toolkit] r8798 committed - Calling the reset methods from gwtTearDown() results in nondeterminism...

2010-09-16 Thread codesite-noreply
Revision: 8798 Author: b...@google.com Date: Thu Sep 16 08:28:57 2010 Log: Calling the reset methods from gwtTearDown() results in nondeterminism. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/890801

[gwt-contrib] [google-web-toolkit] r8799 committed - Simplifies the RequestObject api:...

2010-09-16 Thread codesite-noreply
Revision: 8799 Author: rj...@google.com Date: Thu Sep 16 08:54:56 2010 Log: Simplifies the RequestObject api: * No more clearUsed(). Requests are always usable * No more reset(), it was basically unused, and untested * RequestData move to an impl package Also fixes violation reporting in

[gwt-contrib] [google-web-toolkit] r8800 committed - Extending SuggestOracle.Response to pass along isTruncated informati...

2010-09-16 Thread codesite-noreply
Revision: 8800 Author: porte...@google.com Date: Thu Sep 16 08:59:16 2010 Log: Extending SuggestOracle.Response to pass along isTruncated information with the suggestion list. Review at http://gwt-code-reviews.appspot.com/873801 Review by: jlaba...@google.com

[gwt-contrib] GEP open source status

2010-09-16 Thread olivier nouguier
Hi all, First of all thanks you all Google Inc friend for all GWT ecosystem. I'm studying a plugin to let: - maven via m2eclipse - GWT / GAE via m2eclipse-gdt ( our plugin ). - WTP via m2eclipse-wtp coexist smoothly. I have 2 simple question: - do you plan to support maven

[gwt-contrib] Re: Simplifies the RequestObject api: (issue880801)

2010-09-16 Thread rjrjr
Test added, submitted r8799 On 2010/09/15 17:25:21, rjrjr wrote: Fair enough re: the test. http://gwt-code-reviews.appspot.com/880801/diff/3001/4001 File user/src/com/google/gwt/app/place/AbstractProxyEditActivity.java (left):

[gwt-contrib] [google-web-toolkit] r8801 committed - Rollback of issue 887801...

2010-09-16 Thread codesite-noreply
Revision: 8801 Author: con...@google.com Date: Thu Sep 16 10:01:06 2010 Log: Rollback of issue 887801 *** Reason for Rollback *** Received a report that this changes breaks hosted mode for some users. *** Original change description *** Optimize ResourceOracle refresh by doing multiple oracles

[gwt-contrib] Why not Events API as part of Guava?

2010-09-16 Thread Andrés Testi
Since events API core in com.google.gwt.event.shared has not JSNI nor static dependencies, it could be externalized as an API isolated from GWT. Why not include it on Guava for non GWT projects? Regards. - Andrés -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-16 Thread bobv
http://gwt-code-reviews.appspot.com/886801/diff/13001/14006 File user/src/com/google/gwt/requestfactory/server/RequestFactoryServlet.java (right): http://gwt-code-reviews.appspot.com/886801/diff/13001/14006#newcode70 user/src/com/google/gwt/requestfactory/server/RequestFactoryServlet.java:70:

[gwt-contrib] [google-web-toolkit] r8803 committed - Add error message when non-static inner class throws NoSuchMethodExcep...

2010-09-16 Thread codesite-noreply
Revision: 8803 Author: zh...@google.com Date: Thu Sep 16 10:52:13 2010 Log: Add error message when non-static inner class throws NoSuchMethodException Review at http://gwt-code-reviews.appspot.com/876801 http://code.google.com/p/google-web-toolkit/source/detail?r=8803 Modified:

[gwt-contrib] A patch for clientHeight returns 0 on FF36 on Win XP (issue891801)

2010-09-16 Thread zhuyi
Reviewers: jlabanca, Description: A patch for clientHeight returns 0 on FF36 on Win XP Please review this at http://gwt-code-reviews.appspot.com/891801/show Affected files: M dev/core/src/com/google/gwt/dev/shell/ModuleSpace.java M user/src/com/google/gwt/dom/client/Document.java M

[gwt-contrib] Re: A patch for clientHeight returns 0 on FF36 on Win XP (issue891801)

2010-09-16 Thread zhuyi
Please ignore the change in ModuleSpace.java. I forgot to clean the previous change. http://gwt-code-reviews.appspot.com/891801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8804 committed - Rolling back r8752 and r8762 for now....

2010-09-16 Thread codesite-noreply
Revision: 8804 Author: sco...@google.com Date: Thu Sep 16 12:36:47 2010 Log: Rolling back r8752 and r8762 for now. This change is tickling a bug in some JS engines, for some apps. http://code.google.com/p/google-web-toolkit/source/detail?r=8804 Deleted:

[gwt-contrib] [google-web-toolkit] r8805 committed - JUnit ought to just serialize exceptions....

2010-09-16 Thread codesite-noreply
Revision: 8805 Author: sco...@google.com Date: Thu Sep 16 12:42:20 2010 Log: JUnit ought to just serialize exceptions. Back in the day, Exceptions couldn't be serialized. So we had to do hacky things to support JUnit, since we needed to transmit exceptions across the wire. Better days are

[gwt-contrib] Remove ThreadLocal nonsense. (issue892801)

2010-09-16 Thread rjrjr
Reviewers: bobv, Description: Remove ThreadLocal nonsense. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/892801/show Affected files: M user/test/com/google/gwt/requestfactory/client/EditorTest.java M

[gwt-contrib] [google-web-toolkit] r8806 committed - Finish botched roll-back of r8752 and r8762....

2010-09-16 Thread codesite-noreply
Revision: 8806 Author: sco...@google.com Date: Thu Sep 16 13:48:34 2010 Log: Finish botched roll-back of r8752 and r8762. This finished the roll-back start in r8804. Review by: c...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=8806 Modified:

[gwt-contrib] [google-web-toolkit] r8807 committed - Remove ThreadLocal nonsense....

2010-09-16 Thread codesite-noreply
Revision: 8807 Author: b...@google.com Date: Thu Sep 16 14:14:13 2010 Log: Remove ThreadLocal nonsense. Patch by: bobv Review by: rjrjr Review at http://gwt-code-reviews.appspot.com/892801 http://code.google.com/p/google-web-toolkit/source/detail?r=8807 Modified:

[gwt-contrib] Get strong permutation from headers rather than serialized log record (issue880802)

2010-09-16 Thread unnurg
Reviewers: fredsa, Description: Get strong permutation from headers rather than serialized log record Please review this at http://gwt-code-reviews.appspot.com/880802/show Affected files: M samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/DynaTableRf.java M

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-16 Thread rchandia
http://gwt-code-reviews.appspot.com/886801/diff/13001/14006 File user/src/com/google/gwt/requestfactory/server/RequestFactoryServlet.java (right): http://gwt-code-reviews.appspot.com/886801/diff/13001/14006#newcode70 user/src/com/google/gwt/requestfactory/server/RequestFactoryServlet.java:70:

[gwt-contrib] Re: Issue ROO-954: Support for transmitting stack traces for sever exceptions. (issue886801)

2010-09-16 Thread rchandia
http://gwt-code-reviews.appspot.com/886801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors