Re: How to get the unexpected exception thrown by backend component onthe client side

2010-09-20 Thread Paul Grenyer
Hi (There's no need to copy my personal email address. Please do not). What we do is this. 1. We have a custom RuntimeException: public class ServerSideException extends RuntimeException implements IsSerializable { private static final long serialVersionUID = 1L;

Re: Error compiling GWT source code from trunk

2010-09-20 Thread Thomas Broyer
On Sep 20, 5:26 am, hezjing hezj...@gmail.com wrote: Hi Ashton I have successfully compiled the GWT source codes from the trunk. 1) Install a Windows standalone command line Subversion packagehttp://www.sliksvn.com/en/download/ FYI, this is not mandatory. SVN CLI is used to automatically

Re: How to get the unexpected exception thrown by backend component onthe client side

2010-09-20 Thread 全能
Hi Paul, It seems that all beans derived from RemoteServiceServlet should be listen to, but not RemoteService? -- 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

Re: How to get the unexpected exception thrown by backend component onthe client side

2010-09-20 Thread Paul Grenyer
Hi It seems that all beans derived from RemoteServiceServlet should be listen to, but not RemoteService? Yes, if you have beans that inherit from RemoteServiceServlet. Our spring integration implementation doesn't require it. -- Thanks Paul Paul Grenyer e: paul.gren...@gmail.com b:

Re: MVP pattern and dynamic widgets

2010-09-20 Thread daniel
Maybe you can give the Tags (currentUser.getTags()) to the view, so that the view is responsible for creating checkboxes or whatever, so the presenter does not have to deal with widgets. the view can map each Tab to the created Checkbox (to avoid the for- loop) und call a method like

Re: MVP pattern and dynamic widgets

2010-09-20 Thread Gal Dolber
I think you need a TagPresenter. public TagPresenter(Tag tag) { // Set the name to the view (checkbox) this.tag = tag; } // Capture click event { tag.setChecked(false); } When you end editing your list will be updated, cause you are sharing the Tag instance with the TagPresenters.

Hello7

2010-09-20 Thread Mad Max
Hello, What have you been up to ? Tell you a good news. At last few days,My friend Jack told me where was called the factory of world.All the things is very cheap. Register to be their members as soon as possible, during this time, they have discount sales, many surprises are waiting for you.

MVP framework: Mvp4g vs gwt-platform

2010-09-20 Thread Pierre
I wrote this article to compare Mvp4g gwt-platform, it will give you a better idea of the advantages of each framework: http://code.google.com/p/mvp4g/wiki/Mvp4g_vs_GWTP. Let me know what you think. Also a new version of Mvp4g is now available. Like before, Mvp4g 1.2.0 helps you build GWT

Form validation libraries?

2010-09-20 Thread RichardY
I'm looking to develop an app that involves the validation of user- submitted forms, similar to Formstack or other online form builders. I was wondering if any of the widget libraries supported such a feature, and if they are compatible with GWT 2.0. I am especially curious to know if, to this

An Example to Access to XML Web Service without same-origin problem

2010-09-20 Thread Isak1981
Hi Everbody ! This will be my first message in the Group. Can anybody show an example, how i call a Web Service with RequestBuilder without same- origin problem. The Webservice returns a xml-file.i know there is a workaround for json-responses, but i could find nowhere a workaround for

What is the appropriate data structure for a list of books, their authors, and publication dates?

2010-09-20 Thread Carlo del Mundo
Q1: I need a data structure suitable for the above description Q2: Is there someway I can automate conversion from Excel cells into a GWT readable format? I have an Excel file containing close to 250 entries of Books with their authors and publication dates. I was thinking of using a table data

Re: how to install GWT-2.1M3 from zip to eclipse

2010-09-20 Thread Nauman Badar
Kindly ignore my previous query. Sorry! *Best Regards Nauman Badar* On Sun, Sep 19, 2010 at 1:45 AM, Nauman Badar nauman@gmail.com wrote: Hi I am new to GWT. When I try to switch to design view after creating a new popup panel, eclipse gives the following error: You are

Widget libraries that work with uiBinder/GWT 2.0

2010-09-20 Thread RichardY
Do any exist? From what I know, SmartGWT and Ext-GWT are still incompatible with uiBinder. It'd be good to know if any other libraries are. -- 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: Configurable Date Serialization in GWT RPC

2010-09-20 Thread the blue mountain
i guess (depending on maven version, but it has been fixed a while ago), that the maven classloader now follows the order of dependency declaration in your pom file. On Sep 17, 12:27 am, Slava Lovkiy slava.lov...@gmail.com wrote: I'm using Maven to produce target deployable artifact. What do I

CSS doesn't handle Anchor visited/active properly

2010-09-20 Thread Mindaugas Jaunius
Anchors are used as menu items on webpage. inside ui.xml it look like this. div id=topmenu g:InlineLabel addStyleNames={style.namespacing} ui:field='loggedInName' visible='false'WOOP!/g:InlineLabel g:Anchor ui:field=contact span

how to install GWT-2.1M3 from zip to eclipse

2010-09-20 Thread Nauman Badar
Hi I am new to GWT. When I try to switch to design view after creating a new popup panel, eclipse gives the following error: You are attempting to use UiBinder, however your GWT version is old and does not support the GWT Designer hooks required to provide WYSIWYG editing. You need at least

Re: Using the same object at the server and client

2010-09-20 Thread Ketan Nale
Hi, I am facing same proble in my application. I am integrating hibernate 3 in my GWT appliaction, but app cant find my hibernate related classes (Sessionfactory, Configuration) which are there in my hibernate3.jar. Give me error did you forget to inherit a required module When i searched a lot i

Re: MVP pattern and dynamic widgets

2010-09-20 Thread cyij
Recently we are learning the MVP pattern. We think that the presenter don't need to know how the implementation of the view, but the data which the view is need. So, put the following code into the view will be better, * * *// Build the UI in the fly* *tagsContainer.clear();* * for (Tag tag :

NoClassDefFoundError on deployed gwt application

2010-09-20 Thread Pascal
Hi, I have encountered a problem, when calling a gwt server method on tomcat. I get a NoClassDefFoundError within the gwt servlet that references and uses another class in a jar package. The error happens where the class of the jar is used for the first time inside the server class. This jar

GWT save and modify in database(mysql)

2010-09-20 Thread Buica Tatiana
So i had to do the following assignment in GWT: 1.Implement a selection/de-selection component as described below: The selected item in the first list goes into the second list and is removed from the first list when the button is pressed. The selected item in the second list goes into the first

[ERROR] [gmn] Unable to find 'gmn.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-09-20 Thread ziv
hey everybody, I am new to gwt programing, and I could really use some help.. I have been writing a GWT application with eclipse. I have a GMN.JAVA that has a class that I created in my server called GMNworld. and I keep getting this error, what is the problem here? a little about my hierchy:

GWT RPC error with GWT 2.0.3

2010-09-20 Thread Shivender
Hi all We have an application that uses the GWT RPC to call the Service hosted on the server. If we call this service for the first few times(like 10 to 15), it is working fine. It is failing at later point of time with the following exception: com.google.gwt.user.client.rpc.StatusCodeException:

GWT Deployment Issues. Can't see latest changes when deploying a war to Tomcat

2010-09-20 Thread Timmah
After a few hours spent on this stuff, seems like I am hitting a wall: Every time I run my application in development mode, I can see all the changes. As soon as I deploy the project, I get this random screen that I have no idea where it's coming from. It seems to me that it's from like 2 months

US IT Recruiter opening - Chennai

2010-09-20 Thread priya hr
Dear All, We are currently looking for US IT Recruiter with over 1.5 years of experience Location: Chennai Compensation: Competitive Shift: Night shift Job Description: - The candidate should have at 1.5 – 4 years of experience in US IT Staffing - Should have experience in working

GWT Hibernate Integration

2010-09-20 Thread Ketan Nale
Hi, I am doing GWT and Hibernate integration (without spring) in my application. I have put entry in of POJO’s and hbm file package In my ….gwt.xml file like source path='domain'/ source path='hbm'/ I have written my hibernate.cfg.xml file and Accessing data from my service class

com.google.gwt.visualization.client.Query

2010-09-20 Thread Rumen Dimov
Hellow All, My question is: With the code below I only receive on the server side a parameter (reqId:0) instead of (tqx=reqId:123;reporttype:8;param:pid;pid: 101506368). Is this behaviour intentional or is a kind of a bug? I tried using: RequestBuilder builder = new

Re: MVP pattern and dynamic widgets

2010-09-20 Thread احمد عبدلله
2010/9/19, Sydney sydney.henr...@gmail.com: My question is related to the MVP pattern. I have a VerticalPanel in which I add several CheckBox. The UI is build on the fly since it depends on the user settings. The user clicks some of the checkboxes and in my presenter I would like to know which

howto alphanumeric key handler

2010-09-20 Thread Xavier
Hello I'm working on a game and have run into some trouble. I currently get my key inputs using a key down handler using the arrow keys for movement. That was easy enough however I want to change it to the more traditional w,a,s,d keys. This is where I'm at a loss the javadoc doesn't have the

GWT RPC communication error with GWT 2.0.3

2010-09-20 Thread Shivender
Hi all, We have an application that makes the GWC RPC call to the Service to get the needed values. It is working fine for 10 to 15 times and after that it is throwing the following exception: com.google.gwt.user.client.rpc.StatusCodeException: at

Duplicate case on switch statement by GWT compiler

2010-09-20 Thread Didier DURAND
Hi everybody, I need to escape utf-8 to their html format. I use the function below and the gwt compiler to JS doesn't like it: it says duplicate case for all cases starting with and after the agrave; a) Can somebody tell me what I am doing wrong ? b) Is there any better way (using official

link broken

2010-09-20 Thread maven apache
http://code.google.com/intl/zh-CN/webtoolkit/tools/download-wbpro.html THe update sites in the above page are all not avaible now. -- 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: Parameters in gwt.xml File?

2010-09-20 Thread Evan Ruff
Thomas, Thanks for the response. This is exactly what I was looking for. In case someone comes looking, you've got: define-configuration-property name=myPropertyName is-multi- valued=true|false/ to start, and extend-configuration-property name=myPropertyName value=myValue/ to set the value.

Error Plugin cannot connect to port 9997

2010-09-20 Thread harjit.singh
Hi there, I have the latest pluging and I'm compiling the code against GWT 1.7. When I run my code, I get an error saying plugin cannot connect to port 9997. How do I get around that ? I tried passing the bindaddress option but that seems like a option which was added to GWT 2.0. Thanks -

Re: Error compiling GWT source code from trunk

2010-09-20 Thread Ashton Thomas
I was trying to compile the source code on Ubuntu but switched to a mac and it compiled. Ubuntu has ant 1.8 and mac has ant 1.7.1 Not sure if this is specific to the the ant version on Ubuntu. On Sep 20, 4:21 am, Thomas Broyer t.bro...@gmail.com wrote: On Sep 20, 5:26 am, hezjing

Re: GWT RPC error with GWT 2.0.3

2010-09-20 Thread Prakash
Check your cookies and their size. We had this issue and later found out that it is due to the cookie size which is increasing for every request. -Prakash M On Sep 18, 10:44 am, Shivender shivend...@gmail.com wrote: Hi all We have an application that uses the GWT  RPC to call the Service

Re: GWT Hibernate Integration

2010-09-20 Thread John Ivens
Have you included the hibernate jars in your war/WEB-INF/lib directory when you deploy? On Mon, Sep 20, 2010 at 2:00 AM, Ketan Nale ketann...@gmail.com wrote: Hi, I am doing GWT and Hibernate integration (without spring) in my application. I have put entry in of POJO’s and hbm file package

Re: GWT Hibernate Integration

2010-09-20 Thread Thomas Broyer
On Sep 20, 11:00 am, Ketan Nale ketann...@gmail.com wrote: Errors in 'file:/E:/ workspace/GwtTest/src/edu/projectDir/util/ HibernateUtil.java Line 7: No source code is available for type org.hibernate.SessionFactory; did you forget to inherit a required module? Line 12: No source code is

Re: GWT Hibernate Integration

2010-09-20 Thread Harpal Grover
Hi, Have you heard of the Gilead project(http://noon.gilead.free.fr/gilead/ index.php?page=tutorial) It deals with workarounds with GWT-Hibernate integration. You may want to take a look at it, I was able to integrate hibernate with gwt using this library. Thanks Harpal On Sep 20, 5:00 am,

Re: GWT Deployment Issues. Can't see latest changes when deploying a war to Tomcat

2010-09-20 Thread cybervision
How do you create the war? On 17 Sep., 23:17, Timmah timrys...@gmail.com wrote: After a few hours spent on this stuff, seems like I am hitting a wall: Every time I run my application in development mode, I can see all the changes. As soon as I deploy the project, I get this random screen

GWT and MCV

2010-09-20 Thread CoDe
Hi there!! exist some way of integrate gwt with some framework mcv? Thx, Jorge -- 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

Re: DockLayoutPanel and LazyPanel

2010-09-20 Thread Jason Stratton
Thank you, Thomas. I finally had a chance to attempt your solution, but it did not resolve the issue for me. :( Here's the class I created: public abstract class ResizingLazyPanel extends LazyPanel implements RequiresResize, ProvidesResize { @Override abstract protected Widget

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

2010-09-20 Thread Brian Reilly
It should work fine. Just make sure that the URL that you point your selenium test at contains the gwt.codesvr query parameter. -Brian On Fri, Sep 17, 2010 at 4:18 AM, Andrey mino...@gmail.com wrote: That doesn't work. My question is: how should we run selenium in dev mode? On Sep 16, 6:13

Re: Organizing GWT modules

2010-09-20 Thread Brian Reilly
a. The final product should only contain what is actually used in the final module being compiled. However, I think you may experience longer compilation times if there is a lot of code not being used. I've heard stories of people seeing huge differences in compilation when inheriting incubator

How to Close the Application/Panel programmatically from a button press

2010-09-20 Thread JAppetta
Hello: I have a user request to have a Cancel button on my app for closing the application (similar to what you would expect by clicking the x to dismiss the panel). I've looked through the GWT API and can't find a call similar to Window.close(). Is there a GWT call(s) that can do this? I've

Re: PagingScrollTable Auto Resize

2010-09-20 Thread rvns-pats
could you please post the sample code where you are making a call to fill the width ?? I am using fillWidth() method and when the view gets loaded the initial table columns are not occupying the entire space available !!.. thanks On Sep 13, 10:02 am, Maurice maurice.ocon...@gmail.com wrote:

Re: PagingScrollTable Auto Resize

2010-09-20 Thread rvns-pats
Never mind..I got it working.. thanks On Sep 20, 2:33 pm, rvns-pats kommineni.sate...@gmail.com wrote: could you please post the sample code where you are making a call to fill the width ?? I am using fillWidth() method and when the view gets loaded the initial table columns are not

Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-20 Thread Janko
Hello everybody! What is the simplest way to evaluate an string expression with know parameters on the server side??? Please help! -- 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 Spring integration - what is the best method in late 2010?

2010-09-20 Thread Jason Hatton
Hey lalit, I will take a look at this further this was and example of how to implement Spring on a previous version and is basically the servlet example class I posted earlier. I will take a look at the newer version of gwt-dispatch to see what else has been included. We were waiting on

Re: Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-20 Thread Janko
The best way I found is using something like it is described here: http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html Where the server would host a mathparser.py... I would like to evaluate the string at the server side, so the server implementation would call the py script...

Re: Using the same object at the server and client

2010-09-20 Thread Slava Lovkiy
this is a bad sign if gwt tries to compile such classes as SessionFactory, etc. The idea behind compilation is to produce javascript version of these classes which I guess is not what you want. The best way to solve this (and a bit verbose) is to use DTO or VO objects between your gwt service

Re: Configurable Date Serialization in GWT RPC

2010-09-20 Thread Slava Lovkiy
Will the classpath order configrured via maven be respected on the target application server, i.e. the Webshere will load my clas for Date serializer always on top of the gwt one ? On Sep 20, 6:12 am, the blue mountain thebluemount...@gmail.com wrote: i guess (depending on maven version, but it

Grid shrink-to-fit

2010-09-20 Thread Hilco Wijbenga
Hi all, I've been trying to set up a simple panel/grid for a login box. Something like final Grid mainPanel = new Grid(2, 2); final Label userNameLabel = new Label(User Name); mainPanel.setWidget(0, 0, userNameLabel); final TextBox userNameField = new TextBox(); mainPanel.setWidget(0, 1,

Re: Grid shrink-to-fit

2010-09-20 Thread Hilco Wijbenga
On 20 September 2010 15:40, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: Each row has a height of 50% of the screen. How do I get mainPanel to shrink-to-fit? Mmmh, I can get what I want by adding another panel to hold mainPanel. Three divs for one table... :-) -- You received this message

Re: Evaluating string: (A+sin(B)) where A=1, B=2

2010-09-20 Thread lineman78
There are plenty of Java implementations that do the same thing if you would prefer sticking with Java. Popular Java projects include Jep(http://sourceforge.net/projects/jep/) and JFormula(http:// www.japisoft.com/formula/). On Sep 20, 4:04 pm, Janko janko.sla...@gmail.com wrote: The best way I

Re: MVP pattern and dynamic widgets

2010-09-20 Thread Sydney
@daniel I created the map but how do you register the value change handler on the checkboxes? Do you do it in the view or in the presenter? My guess is that it must be done in the presenter but how do you get a reference to the checkboxes? I was thinking of adding these methods in the view. //

Re: MVP framework: Mvp4g vs gwt-platform

2010-09-20 Thread Abdullah Shaikh
Pierre, Thanks for the article, it was good. I have been using mvp4g for around 4 months, and I loved it. Xplana is cool .. Abdullah On Mon, Sep 20, 2010 at 6:17 PM, Pierre plcoir...@gmail.com wrote: I wrote this article to compare Mvp4g gwt-platform, it will give you a better idea of the

[gwt-contrib] Re: Let MenuItem implement HasEnabled (issue846801)

2010-09-20 Thread johan . rydberg
Ping! On 2010/09/07 16:49:52, rjrjr wrote: Please! On Tue, Sep 7, 2010 at 8:01 AM, Joel Webber mailto:j...@google.com wrote: @rjrjr: I notice you own the bug -- do you have time to look at this, or would you like me to take it off your hands? Le 6 septembre 2010 04:48,

[gwt-contrib] Introducing DirectionalTextHelper, a new helper class for text and direction manipulations in wi... (issue901801)

2010-09-20 Thread tomerigo
Reviewers: jat, jlabanca, Description: Introducing DirectionalTextHelper, a new helper class for text and direction manipulations in widgets, and using it to enhance Anchor and Hyperlink with bidi support. Please review this at http://gwt-code-reviews.appspot.com/901801/show Affected files:

Re: [gwt-contrib] Re: Let MenuItem implement HasEnabled (issue846801)

2010-09-20 Thread Joel Webber
Sorry about that. Will look at it this afternoon (US/EST). Le 20 septembre 2010 04:45, johan.rydb...@gmail.com a écrit : Ping! On 2010/09/07 16:49:52, rjrjr wrote: Please! On Tue, Sep 7, 2010 at 8:01 AM, Joel Webber mailto:j...@google.com wrote: @rjrjr: I notice you own the bug --

[gwt-contrib] Re: Extract a RequestTransport interface and DefaultRequestTransport implementation from RequestFactory. (issue890802)

2010-09-20 Thread BobV
Yes, RequestFactory#URL should have been moved to DefaultRequestTransport. Will create a patch. -- Bob Vawter Google Web Toolkit Team -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Fixes two Roo issues: ROO-1238 (Amit) and ROO-1380 (pdr) (issue897801)

2010-09-20 Thread Amit Manjhi
Thanks Phil and Ray. On Sat, Sep 18, 2010 at 12:12 PM, Ray Ryan rj...@google.com wrote: LGTM++ On Sat, Sep 18, 2010 at 12:11 PM, p...@google.com wrote: http://gwt-code-reviews.appspot.com/897801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors --

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-20 Thread jlabanca
We need to update the Expenses sample with these changes. http://gwt-code-reviews.appspot.com/898801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-20 Thread rchandia
Yes, we are working on that. the current approach is to make RF work with both Strings and Longs instead of migrating Expenses to Strings. On 2010/09/20 16:13:39, jlabanca wrote: We need to update the Expenses sample with these changes. http://gwt-code-reviews.appspot.com/898801/show --

[gwt-contrib] Re: Introduce RequestFactory#getEventBus, make RFEditorDriver use it, fix (issue896801)

2010-09-20 Thread bobv
http://gwt-code-reviews.appspot.com/896801/diff/3001/2015 File user/src/com/google/gwt/requestfactory/client/RequestFactoryEditorDriver.java (right): http://gwt-code-reviews.appspot.com/896801/diff/3001/2015#newcode69

[gwt-contrib] Move RequestFactory.URL field into DefaultRequestTransport. (issue903801)

2010-09-20 Thread bobv
Reviewers: rjrjr, Description: Move RequestFactory.URL field into DefaultRequestTransport. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/903801/show Affected files: M doc/packages.properties M

[gwt-contrib] [google-web-toolkit] r8823 committed - Add streaming HTML parser library to tools/lib, as well as the guava l...

2010-09-20 Thread codesite-noreply
Revision: 8823 Author: x...@google.com Date: Mon Sep 20 07:10:58 2010 Log: Add streaming HTML parser library to tools/lib, as well as the guava library it depends on. Use this parser to verify (in non-prod mode) that arguments to SafeHtmlBuilder#appendHtmlConstant satisfy the SafeHtml

[gwt-contrib] Re: Adds support for List collections. Request methods are now permitted to return (issue893801)

2010-09-20 Thread bobv
LGTM http://gwt-code-reviews.appspot.com/893801/diff/23001/24005 File user/src/com/google/gwt/requestfactory/client/impl/JsoCollection.java (right): http://gwt-code-reviews.appspot.com/893801/diff/23001/24005#newcode39 user/src/com/google/gwt/requestfactory/client/impl/JsoCollection.java:39: *

[gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
What exactly fills in this field currently? This field is always null for me on the client -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] stableId

2010-09-20 Thread Amit Manjhi
stableId is not a field in the EntityProxy. It is computed when stableId() is called on an EntityProxy. Does that help? On Mon, Sep 20, 2010 at 10:36 AM, Patrick Julien pjul...@gmail.com wrote: What exactly fills in this field currently? This field is always null for me on the client --

Re: [gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
On Mon, Sep 20, 2010 at 1:48 PM, Amit Manjhi amitman...@google.com wrote: stableId is not a field in the EntityProxy. It is computed when stableId() is called on an EntityProxy. Does that help? not yet no, I understand what you're saying but I don't understand the comments in EntityProxyId that

[gwt-contrib] [google-web-toolkit] r8824 committed - Replace string.isEmpty() calls by string.length() == 0, for Java 1.5 c...

2010-09-20 Thread codesite-noreply
Revision: 8824 Author: amitman...@google.com Date: Mon Sep 20 07:42:54 2010 Log: Replace string.isEmpty() calls by string.length() == 0, for Java 1.5 compliance. Patch by: amitmanjhi Review by: jlabanca http://code.google.com/p/google-web-toolkit/source/detail?r=8824 Modified:

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-20 Thread cromwellian
LGTM so far. http://gwt-code-reviews.appspot.com/902801/diff/1/26 File user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java (right): http://gwt-code-reviews.appspot.com/902801/diff/1/26#newcode60 user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java:60:

Re: [gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
On Mon, Sep 20, 2010 at 2:16 PM, Amit Manjhi amitman...@google.com wrote: The javadoc wording can probably be improved. Comments welcome. Essentially, what the javadoc wants to capture is specified in the test: com.google.gwt.requestfactory.client.RequestFactoryTest::testStableId() Btw,

[gwt-contrib] Re: Move RequestFactory.URL field into DefaultRequestTransport. (issue903801)

2010-09-20 Thread rjrjr
Nice. One of the last warts. On 2010/09/20 17:11:06, bobv wrote: http://gwt-code-reviews.appspot.com/903801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-20 Thread rjrjr
http://gwt-code-reviews.appspot.com/902801/diff/1/26 File user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java (right): http://gwt-code-reviews.appspot.com/902801/diff/1/26#newcode60 user/src/com/google/gwt/requestfactory/server/JsonRequestProcessor.java:60: On 2010/09/20

Re: [gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
After tracing this, it's throwing an exception on this new generic find() stuff from the abstract editor so it has nothing to do with stableId. StableId is returning a value correctly. About the comment, I was just confused because of the word persisted which to me means JPA or something. We

[gwt-contrib] Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh()... (issue904801)

2010-09-20 Thread conroy
Reviewers: scottb, kplatfoot, Description: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh(). Note that this is still much faster than the old behavior of exploring each classpath individually. Please review this at

Re: [gwt-contrib] stableId

2010-09-20 Thread Ray Ryan
Ah, I noticed that exception in the find method too. I thought I had introduced the problem, but I think instead I just started using the feature for the first time. Patrick, is the exception reliable? Do you have a recipe? On Mon, Sep 20, 2010 at 11:56 AM, Patrick Julien pjul...@gmail.com

Re: [gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
On Mon, Sep 20, 2010 at 3:03 PM, Ray Ryan rj...@google.com wrote: Ah, I noticed that exception in the find method too. I thought I had introduced the problem, but I think instead I just started using the feature for the first time. Patrick, is the exception reliable? Do you have a recipe?

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-20 Thread nchalko
ping http://gwt-code-reviews.appspot.com/863801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Public: First take at GWT validation that actually validates on the client side. (issue863801)

2010-09-20 Thread nchalko
ping http://gwt-code-reviews.appspot.com/863801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] stableId

2010-09-20 Thread Patrick Julien
OK, for me, this has nothing to do with find, at least not yet, I don't even get that far. What's tripping me up is that up until now, we could always get back the id of the entity in AbstractProxyEditActivity before the find request had completed but now, getRecord() returns null, this is

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

2010-09-20 Thread unnurg
Thanks Bob! I've gone ahead and removed the addition of this header from this patch. - Unnur On 2010/09/17 18:59:41, bobv wrote: http://gwt-code-reviews.appspot.com/880802/diff/3001/4016 File user/src/com/google/gwt/requestfactory/client/impl/RequestFactoryJsonImpl.java (right):

[gwt-contrib] Re: Gets the code splitter to be effective even in draft compile mode. (issue875801)

2010-09-20 Thread spoon
Thanks, Scott! http://gwt-code-reviews.appspot.com/875801/diff/1/4 File dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRunAsyncs.java (right): http://gwt-code-reviews.appspot.com/875801/diff/1/4#newcode172 dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRunAsyncs.java:172: */ I'll add

[gwt-contrib] Re: Gets the code splitter to be effective even in draft compile mode. (issue875801)

2010-09-20 Thread scottb
SGTM http://gwt-code-reviews.appspot.com/875801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh()... (issue904801)

2010-09-20 Thread conroy
http://gwt-code-reviews.appspot.com/904801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8825 committed - Allow RPC stats system extensions....

2010-09-20 Thread codesite-noreply
Revision: 8825 Author: pmuetsch...@google.com Date: Mon Sep 20 10:54:28 2010 Log: Allow RPC stats system extensions. This patch allows for the extension of the RPC stats system by moving the stats methods into an object, making them non-static. This would allow application developers to extend

[gwt-contrib] Re: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh()... (issue904801)

2010-09-20 Thread scottb
LGTM. Nits. LOL. http://gwt-code-reviews.appspot.com/904801/diff/5001/6001 File dev/core/src/com/google/gwt/dev/resource/impl/ClassPathEntry.java (right): http://gwt-code-reviews.appspot.com/904801/diff/5001/6001#newcode36 dev/core/src/com/google/gwt/dev/resource/impl/ClassPathEntry.java:36:

[gwt-contrib] Re: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh()... (issue904801)

2010-09-20 Thread conroy
http://gwt-code-reviews.appspot.com/904801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix GWTShell. Compare classpaths by content instead of reference in ResourceOracleImpl.refresh()... (issue904801)

2010-09-20 Thread scottb
ROFL I mean, LGTM http://gwt-code-reviews.appspot.com/904801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

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

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

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

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

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

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-20 Thread Amit Manjhi
checkstyle fails probably because file name=trunk/user/src/com/google/gwt/requestfactory/client/impl/DeltaValueStoreJsonImpl.java error line=72 column=5 severity=error message=getEncodedId is not alphabetical. source=com.google.gwt.checkstyle.OrderCheck/ /file file

[gwt-contrib] Re: Replaces the public and obnoxious String EntityProxy#getId() with the (issue902801)

2010-09-20 Thread Amit Manjhi
LGTM, with a TODO (amitmanjhi) to change SimpleFoo id to String and checking if everything works. On Mon, Sep 20, 2010 at 9:15 PM, Amit Manjhi amitman...@google.com wrote: checkstyle fails probably because file