why does there have two groups of classes about json?

2011-09-09 Thread wahaha
the two packages com.google.gwt.dev.json and com.google.gwt.client.json,all have a group of classes about json of there own,why? i think i must hava some grammar mistakes,my english is very poor. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Anyone using Place/Activity feature in GWT?

2011-09-09 Thread Robin
I tried to adopt this feature which is available since 2.1. Basically I followed the example from the following link: http://code.google.com/webtoolkit/doc/latest/DevGuideMvpActivitiesAndPlaces.html However, it seems not quite working well for me. First it requires to create more java classes

GWT 2.4 Designer na split-view editing

2011-09-09 Thread maticpetek
Hello, Question : how to switch to split-view editing in new GWT Designer? What should I press in Eclipse? Thank you Environment : Eclipse 3.7 OS X Regards, Matic -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: What's the version of Jetty in gwt-dev.jar ?

2011-09-09 Thread Sudhakar Abraham
Jetty 6.1.x version is included in gwt-dev jar. S. Abraham www.DataStoreGwt.com On Sep 8, 11:56 pm, Leonel Gayard leonel.gay...@gmail.com wrote: Title says it all. What version of Jetty is included in gwt-dev.jar ? Also, did it change over the latest versions of GWT ? From GWT 2.0 to

Re: Hosting GWT applications

2011-09-09 Thread Sudhakar Abraham
Go to the build directory of project. Copy the required jar from your Project_Directory\build\web\WEB-INF\lib . Go to the Google App engine sdk directory through command prompt C:\Program Files \GoogleAppEngine\appengine-java-sdk-1.5.0.1\bin. Type appcfg -- enable_jar_splitting update

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Tiago
Hello Thomas, On Sep 8, 11:38 am, Thomas Broyer t.bro...@gmail.com wrote: I believe RF is not meant to be used with lazy-loading if you don't also use (and accept the consequences) OpenSessionInView. That would be a pity. I thought the point of RF was dealing with ORM entities without having

Re: What's the version of Jetty in gwt-dev.jar ?

2011-09-09 Thread Thomas Broyer
On Friday, September 9, 2011 8:55:55 AM UTC+2, Sudhakar Abraham wrote: Jetty 6.1.x version is included in gwt-dev jar. And more precisely 6.1.11 http://code.google.com/p/google-web-toolkit/source/browse/tools/lib/jetty/ (note that there's a Jetty 7.x in there: attempts were made last year

Re: why does there have two groups of classes about json?

2011-09-09 Thread Thomas Broyer
com.google.gwt.dev.json is only used internally (hint: dev package, living in gwt-dev.jar), while com.google.gwt.json is what you'll use in your app (hint: there's a JSON.gwt.xml, and it's in gwt-user.jar). But actually, in most cases, it's much easier (and performs better at the same time) to

Re: WebSQL with GWT

2011-09-09 Thread Thomas Broyer
On Friday, September 9, 2011 6:54:07 AM UTC+2, Hilario Perez Corona wrote: Hi, Doing some searches, i've not found any libraries for using WebSQL on GWT. Maybe i did my searches wrong and there are libraries for this... Yes: http://code.google.com/p/gwt-mobile-webkit/wiki/DatabaseApi --

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Thomas Broyer
On Friday, September 9, 2011 9:23:51 AM UTC+2, Tiago wrote: Hello Thomas, On Sep 8, 11:38 am, Thomas Broyer t.br...@gmail.com wrote: I believe RF is not meant to be used with lazy-loading if you don't also use (and accept the consequences) OpenSessionInView. That would be a pity.

Re: New group for Google Plugin for Eclipse (GPE)

2011-09-09 Thread gwt.user
This is cool news. Thx. On Sep 8, 6:11 am, Sriram Saroop sar...@google.com wrote: Hi folks, We have created a new group for Google Plugin for Eclipse (GPE). https://groups.google.com/group/google-plugin-eclipse google-plugin-ecli...@googlegroups.com Do join this group and feel free to post

GWT RPC - Checked exception handling

2011-09-09 Thread Alex
Hi guys, I am stuck on the gwt rpc exception handling. I got a service method that throws a checked exception. My AsyncCallback forces me to add two methods: onFailure(Throwable caught) and onSuccess. If the checked exception is thrown, the callback method onFailure is invoked. - So far

2.4: Is gwt-user required at runtime?

2011-09-09 Thread Alexander Orlov
In 2.3 *dependency* *groupIdcom.google.gwt/groupId* *artifactIdgwt-user/artifactId* *version${gwt.ver}/version* *!--COMPILE scope necessary since 2.4?!--* *scopeprovided/scope* */dependency* worked fine for me. Now I

Re: 2.4: Is gwt-user required at runtime?

2011-09-09 Thread Thomas Broyer
Make sure you have gwt-servlet.jar (and check the version) or requestfactory-server.jar in your WEB-INF/lib. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: GWT RPC - Checked exception handling

2011-09-09 Thread Thomas Broyer
You should declare thrown exceptions only on the sync interface, not the async one. Sync: boolean doFoo(int bar) throws MyException; Async: void doFoo(int bar, AsyncCallbackBoolean callback); // no throws clause here -- You received this message because you are subscribed to the Google

Re: GWT RPC - Checked exception handling

2011-09-09 Thread Alex
A alright! I knew there must have been some stupid mistake. Thank you! On Sep 9, 10:54 am, Thomas Broyer t.bro...@gmail.com wrote: You should declare thrown exceptions only on the sync interface, not the async one. Sync:    boolean doFoo(int bar) throws MyException; Async:    void

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-09 Thread gwt.user
Hi Alfredo, I m looking forward to having some insight about how you get that to work. DevMode is one part of GWT that is not really well documented. Sadly. Keep up the good work. @Thomas Could you get DevMode to work for AIR. We d love to have that feature at my company. -- You received

Re: GWT RPC - Checked exception handling

2011-09-09 Thread Alex
Someone should report this, the AsyncCallback in the demo application has a throws declaration too: void greetServer(String input, AsyncCallbackString callback) throws IllegalArgumentException; -- You received this message because you are subscribed to the Google

2.4: Is gwt-servlet still necessary when using RF instead of RPC?

2011-09-09 Thread Alexander Orlov
On Fri, Sep 9, 2011 at 10:50 AM, Thomas Broyer t.bro...@gmail.com wrote: Make sure you have gwt-servlet.jar (and check the version) or requestfactory-server.jar in your WEB-INF/lib. Ah, thx! I've added requestfactory-server and thought it would make gwt-servlet obsolete. So I've removed

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Tiago
On Sep 9, 10:31 am, Thomas Broyer t.bro...@gmail.com wrote: .with() has nothing to do with lazy-loading or lazy initialization exceptions; it's only about what goes over the wire, and what's available on the client-side. Right, but if I haven't explicitly said that a certain property is going

Forum

2011-09-09 Thread Thomas Lefort
Hi, I would like to integrate a forum in my gwt application. I would like to know if there are any existing solution I could use off the shelf or any recommended way of doing so. Thanks for any help. Thomas -- You received this message because you are subscribed to the Google Groups Google

GWT customized history handler

2011-09-09 Thread Sanjay Jain India
Hello all I am using gwt2.3 with gwtp frame work.In this application I using the history management provided by gwtp. Now my issues how to write some code which invoke on as any of name token fires. For this I have written a customize history handler like below: public class NameTokenHandler

Template Alternatives to UiBinder?

2011-09-09 Thread Tom Carchrae
Does anyone use an alternatives to UiBinder for the purpose of separating page design from GWT source code? I admit, I'm not a fan of UiBinder, it could be my innate hatred of having to work with XML documents. I realize GQuery is one option, if you're ok with the progressive enhancement

Re: Template Alternatives to UiBinder?

2011-09-09 Thread Gal Dolber
I am experimenting with Google Clousure Templates http://code.google.com/closure/templates/. Exploring their source code I realized that they support compilation to Java, so you can compile your closure templates to java and use them with gwt On Fri, Sep 9, 2011 at 8:15 AM, Tom Carchrae

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Juan Pablo Gardella
Hi Tiago, I use JPA2 (with Hibernate as a provider) in a GWT application. I use a *Filter *that put to null uninitialized properties in a transparent manner. So if you in service layer don't initialize the properties, this filter solve the problem of serialization. Check this

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-09 Thread Thomas Broyer
I won't invest any time in Adobe AIR-related devs, so the simple answer is no. Having said that, the only missing part for making it work at the time was to decipher how to put breakpoints in JavaScript programmatically, through the FDB API. Aptana was able to do so (but Adobe helped them, so

Re: GWT 2.4 Designer na split-view editing

2011-09-09 Thread gary.r...@cisx.com
Hi, I was struggling to find this too but have just found it can be set as follows: Go to Window menu - Preferences - Google - Webb Toolkit - Designer Then select the desired layout from the Editor Layout dropdown. e.g. Side by side with a split pane (Source First) Best regards, Gary -- You

Plural examples and design

2011-09-09 Thread Zdenek Juran
Hi, I have two questions for you: 1) can anybody review the http://code.google.com/intl/cs/webtoolkit/doc/latest/DevGuideI18nPluralForms.html page and check curly brackets in examples? Lot of them are missing. 2) could you include some choice format examples? We have lot of modules that we

how use a DialogBox

2011-09-09 Thread Jean1979
Hi everyone I'm begginer in GWT so i have a question , how can i put a DialogBox on First, i create a DockLayoutPanel on my browser page then i put a SimplePanel on DockLayoutPanel (SimplePanelnorth, SimplePanelsouth, SimplePaneleast, SimplePanelwest, and SimplePanelcenter) , on

missing text in the dev guide

2011-09-09 Thread magnum
http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsCompatibility.html lase section [Classes that provide similar functionality] says [hyperlink] com.google.gwt.user.client.rpc : A marker class used similarly to java.io.Serializable for GWT RPC. should say [hyperlink]

Re: GWT 2.4 Designer na split-view editing

2011-09-09 Thread Eric Clayberg (Google)
You should use the take a look at the *Preferences*http://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/preferences_gpe_designer.html . http://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/images/preferences_gpe_designer.png -- You received this message because

Re: GWT designer keeps hanging!! going mental

2011-09-09 Thread Elhanan
steps to reproduce: get brand new indigo download GPE create new GWT project (no app engine sdk) in the entry point: RootLayoutPanel layoutPanel=RootLayoutPanel.*get*(); then switch to side by side designer. drag a button and place it on the screen. press Ctrl+Save, also note this happens

PlaceController constructor Deprecated

2011-09-09 Thread Fabricio Pizzichillo
Hello friends. I use GIN to implement dependency injection. I upgraded to version 2.4.0 and I encounter a problem when I bind ( EventBus.class).To (SimpleEventBus.class). In (Singleton.class); The log says Deferred binding result type ' com.google.gwt.event.shared.EventBus' should not be abstract

Re: how use a DialogBox

2011-09-09 Thread Sudhakar Abraham
Please see the code segment below. Hope this useful for you S. Abraham www.DataStoreGwt.com public class Dialogbox implements EntryPoint { VerticalPanel panel; DialogBox dialogbox; PopupPanel glass; VerticalPanel DialogBoxContents; ClickListener listener; HTML message; Button button;

Re: Anyone using Place/Activity feature in GWT?

2011-09-09 Thread cri
We use it on all of our projects/web apps with very good success. At least a half dozen so far and counting. A good way to get started is using New - WindowBuilder - GWT Designer - Model - GWT Java Project - enter project name - press next business - check create gwt module check use mvp framework

Re: IE8 ListBox Height

2011-09-09 Thread Sudhakar Abraham
As far as my understanding goes, this is the default behaviour of IE (Internet Explorer) browser, which can not be changed. S. Abraham www.DataStoreGwt.com On Sep 7, 5:57 pm, Jeffrey Roe jefrey...@gmail.com wrote: Hello all, I am using a list box. It displays correctly in Firefox and chrome.

set element name in ie/quirks mode

2011-09-09 Thread Dennis Haupt
hi, i've noticed that public static void setName(final Widget widget, final String name) { widget.getElement().setAttribute(name, name); } does not work in IE quirks mode. how should i do it? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWT Math.tan(Math.toRadians(45)) is not giving the correct value

2011-09-09 Thread saurabh saurabh
Hi everyone, in my code Math.tan(Math.toRadians(45)) is giving '-1.362044..' while it should be 1 or .999.. Can anyone help please. Thanks in advance -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

I want to do POC with gwt-spring-hibernate

2011-09-09 Thread satya t
Hi, Please any one give information or good simple project with gwt-spring- hibernate integration. Regards, Satya. -- 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: IE8 ListBox Height

2011-09-09 Thread Jeffrey Roe
Thanks Sudhakar, I was starting to think it was just my code. Does anyone know of a work around or another type of list/box I could use. Jeffrey Roe, www.tog.ie On Fri, Sep 9, 2011 at 2:15 PM, Sudhakar Abraham s.abra...@datastoregwt.com wrote: As far as my understanding goes, this is the

Re: Creating my own UiBinder panel

2011-09-09 Thread John LaBanca
You're best bet is to email Google-Web-Toolkit@googlegroups.com after joining https://groups.google.com/group/google-web-toolkit. You can cc me on the email, but hopefully one of our other users will be able to answer your questions. If you haven't already seen it, the UiBinder Dev

Re: 2.4: Is gwt-servlet still necessary when using RF instead of RPC?

2011-09-09 Thread David Chandler
Hi Alexander, If using RF only, you no longer need gwt-servlet, just requestfactory-server, which is now available in Maven Central. The POM for requestfactory-server also declares the javax.validation and json dependencies so you no longer need them explicitly in your project POM; however, you

Re: PlaceController constructor Deprecated

2011-09-09 Thread Thomas Broyer
There must be somewhere in your code where you have a dependency on com.google.gwt.event.shared.EventBus rather than com.google.web.bindery.event.shared.EventBus. What happens is: in the absence of a binding, GIN will use a GWT.create() (contrary to Guice which will fail to build the

relational persistence

2011-09-09 Thread thiago borges martins
Hi, I have a problem relational persistence that I found very strange! I have a relationship OneToOne in an entity called User and UserDocument below follows the server-side Domains // User package br.com.tbm.consult.domain.user.model; import java.io.Serializable; import java.util.Date; import

Re: PlaceController constructor Deprecated

2011-09-09 Thread Fabricio Pizzichillo
HI Thomas. Thanks for the quick response. I'll check the code and see if I have any error. regards 2011/9/9 Thomas Broyer t.bro...@gmail.com There must be somewhere in your code where you have a dependency on com.google.gwt.event.shared.EventBus rather than

Re: Design mode and Can't create SWT browser

2011-09-09 Thread darrell pfeifer
This is issue 6029 again. Fixed with the workaround. On Sep 8, 4:48 pm, darrell pfeifer darrel...@gmail.com wrote: I keep getting the Can't create SWT browser screen. This was happening with 2.3 so I waited and updated to the 2.4 release but I still can't get a designer screen. I thought

Re: Creating my own UiBinder panel

2011-09-09 Thread Aviad Ben Dov
Sure thing. Here goes: I want to create my own UiBinder-enabled panel. This panel is a double-sided panel as can be seen in this examplehttp://developer.apple.com/library/safari/#documentation/InternetWeb/Conceptual/SafariVisualEffectsProgGuide/Transitions/Transitions.html . What I would like is

Re: relational persistence

2011-09-09 Thread Juan Pablo Gardella
Use javax validation APIhttp://java.sun.com/javaee/6/docs/api/javax/validation/constraints/package-summary.htmland not Hibernate validators, see the import import org.hibernate.validator.constraints.Length; Juan 2011/9/9 thiago borges martins tborgesmart...@gmail.com Hi, I have a problem

Re: Creating my own UiBinder panel

2011-09-09 Thread Thomas Broyer
You won't be able to do the exact same as LayoutPanel or DockPanel, but what you're asking is absolutely possible, and as easy as markup your setFront(Width) and setBack(Widget) methods in your java code with

Problem by finding gwt.xml

2011-09-09 Thread ph09
Hello, I have changed and renamed my packet structur of my gwt project. Then I want to start the project as a web application, but the module isn't found and I get the following Exeption: [ERROR] Unable to find 'de/xx/focus/My_Projekt.gwt.xml' on your classpath; could be a typo, or maybe you

Re: onModuleLoad() - what is it in javascript

2011-09-09 Thread dreamer
To answer my own question, looks like, onLoadModuleLoad() - won't be converted into javascript as is. It is a directive to java-javascript cross compiler telling what is main script and how rest of the scriptlets are to be arranged. Global School District http://schoolk12.appspot.com/ On Sep

Re: GWT Developer Plugin for Firefox 6

2011-09-09 Thread Jim Douglas
Any progress on the Firefox 6 plugin? This page still reports that the highest supported version is 5.0: http://gwt.google.com/samples/MissingPlugin/MissingPlugin.html On Aug 16, 2:03 pm, Chris Conroy con...@google.com wrote: Jason, Unfortunately, for the time being we're unable to keep pace

Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-09 Thread nino
@Thomas You probably ment Gwt4Air (which we have not released yet). Gwt4Flex(which is allready out) does not need a special DevMode since it s browser based. @gwt.user Concerning AIR support we definitly have some intersting things coming out next(DevMode beeing one of them). And with Adobe

Re: GWT Developer Plugin for Firefox 6

2011-09-09 Thread Thomas Broyer
In case you missed it: https://groups.google.com/d/msg/google-web-toolkit/SNNKn7VK9-Y/hLqvyt3X56cJ I'm using it since then without any problem so far. Don't why it hasn't been promoted yet. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: 2.4: Is gwt-servlet still necessary when using RF instead of RPC?

2011-09-09 Thread Alexander Orlov
Thx a lot for uploading the JARs to Maven Central! Unfortunately I've got your message just now. In the meantime I came to the same result which background you've described. The absolute minium to get RF + GWT working is: dependency groupIdcom.google.gwt/groupId

Re: WebSQL with GWT

2011-09-09 Thread Hilario Perez Corona
Wow, thanks for the link. This implementation looks really good. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/EBrXILb9hCAJ. To post to this

Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread pohl
Hi Thomas, I'm bringing up an old question here now that GWT 2.4 is out, and wondering if the new support for polymorphism in the RequestFactory mechanism changes whether a command-pattern ActionService is now possible: http://code.google.com/webtoolkit/release-notes.html#Release_Notes_Current

Re: Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread Thomas Broyer
I guess it would now be possible yes. I'm still not sure how it would be an improvement though, unless you intend to serialize the commands somewhere (localStorage?) to play them later, but even then you could add a field telling which method to call, i.e. doing the dispatch on the cilent-side

Re: Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread Juan Pablo Gardella
If someone can share a sample will be very helpfull. I use GWT-RPC with gwt-dispatch, but I want learn more about RF. 2011/9/9 Thomas Broyer t.bro...@gmail.com I guess it would now be possible yes. I'm still not sure how it would be an improvement though, unless you intend to serialize the

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Tiago
Thank you very much Juan, you helped me finding an easier workaround. After seeing your use of filters to the RPC calls, I imagined there should be a way to filter the creation of properties in RequestFactory, and after searching a little I found that the ServiceLayerDecorator could help me if I

Re: GWT Developer Plugin for Firefox 6

2011-09-09 Thread Jim Douglas
Thanks, Thomas. Yes, I saw that, and I suppose I should have clarified that I'm asking about the status of the actual production version, as opposed to go fetch it from such and such repository. On Sep 9, 7:39 am, Thomas Broyer t.bro...@gmail.com wrote: In case you missed

Re: PlaceController constructor Deprecated

2011-09-09 Thread Fabricio Pizzichillo
HI Thomas. In my code, I have a class that extends AbstractActivity. The problem is that the interface Activity, which has the method void start (AcceptsOneWidget panel, EventBus eventBus). EventBus belongs to the packagecom.google.gwt.event.shared and should be the

Canvas and anti-aliasing

2011-09-09 Thread Christopher Piggott
Hi, I made an analog gauge using GWT Canvas but the needle isn't anti- aliased so it doesn't look so hot. Is there a way to draw using .lineTo() and get a nice anti-aliased line? --Chris -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: PlaceController constructor Deprecated

2011-09-09 Thread Thomas Broyer
Maybe [1], but that's not relevant to your issue: start() is not called by GIN but by an ActivityManager. That one has a dependency on some EventBus, but the web.bindery one, so it's not the guilty party either. [1] Changing the type of the argument from the com.google.gwt.… EventBus to its

Re: Creating my own UiBinder panel

2011-09-09 Thread aviadbd
Okay, this looks very promising! I'll try it and let you know..! But one question: shouldn't this be described somewhere in the documentation? I don't remember seeing this anywhere... Thanks! On Sep 9, 5:18 pm, Thomas Broyer t.bro...@gmail.com wrote: You won't be able to do the exact same as

Re: GWT Developer Plugin for Firefox 6

2011-09-09 Thread Dan
Works great for me on Mac OSX -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/EVU9czP71j0J. To post to this group, send email to

Re: Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread pohl
On Sep 9, 9:53 am, Thomas Broyer t.bro...@gmail.com wrote: I guess it would now be possible yes. I'm still not sure how it would be an improvement though, unless you intend to serialize the commands somewhere (localStorage?) to play them later, but even then you could add a field telling

Hosted mode issues

2011-09-09 Thread Vrushali Patil
Hi I want to use GWT hostel mode so I can access other URL's using sendRequest() without any issues. I searched all the earlier posts and couldn't get the right solution for how to use hosted mode or edit the Program Arguments or VM arguments. Following code I have put in Program Arguments: -port

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Sanjiv Jivan
Just curious to know what you're using for your persistence layer? On Fri, Sep 9, 2011 at 4:31 AM, Thomas Broyer t.bro...@gmail.com wrote: On Friday, September 9, 2011 9:23:51 AM UTC+2, Tiago wrote: Hello Thomas, On Sep 8, 11:38 am, Thomas Broyer t.br...@gmail.com wrote: I believe RF is

scalable server backend for browser games

2011-09-09 Thread Karel
Hey guys, I'm currently investigating the possibilities of using GWT to develop a facebook browser game. The client should pose no problem; the main issue here seems to be the server. For starters, I don't want to use a php backend, because that would give up one of the main advantages of using

Re: scalable server backend for browser games

2011-09-09 Thread Gal Dolber
Checkout http://code.google.com/appengine/ and http://aws.amazon.com/ec2/ On Fri, Sep 9, 2011 at 2:36 PM, Karel karel.cromb...@gmail.com wrote: Hey guys, I'm currently investigating the possibilities of using GWT to develop a facebook browser game. The client should pose no problem; the main

Re: I want to do POC with gwt-spring-hibernate

2011-09-09 Thread gpike
There is an example app at: http://code.google.com/p/gwtrpc-spring/ you could look at. Thanks, Gordon -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Installation Problem: Eclipse HELIOS and the latest GWT Eclipse

2011-09-09 Thread DavidPShaw
Hi, I had used GWT back in the 1.4 days, and recently had a project that I thought I could use it again. I have had some difficulty installing, however. As suggested here: http://code.google.com/webtoolkit/usingeclipse.html#eclipse I downloaded

Re: scalable server backend for browser games

2011-09-09 Thread Jamie
I think this may depend on what you intend to do on the server. Database? CPU intensive calculations? Calling out to some other web services? If you use Apache plus Tomcat, then you can set up load balancing. Depending on the system it's running on, it should be able to process a large volume of

Re: Canvas and anti-aliasing

2011-09-09 Thread Jamie
I do not believe you can control this, but rather, it is left up to the browser / OS. I have done some html5 drawings that are anti-aliased, with FF on Windows and Linux. What browser and OS are you using? Also, you can just try adjusting the line width. On Sep 9, 11:54 am, Christopher Piggott

Re: Canvas and anti-aliasing

2011-09-09 Thread David Chandler
According to http://www.html5rocks.com/en/tutorials/canvas/performance/, if you draw with sub-pixel coordinates, Canvas will automatically do anti-aliasing. HTH, /dmc On Fri, Sep 9, 2011 at 11:54 AM, Christopher Piggott cpigg...@gmail.comwrote: Hi, I made an analog gauge using GWT Canvas but

Re: Tracking multiple steps in a RPC request on the client

2011-09-09 Thread Nestor
Could you clarify that? My understanding is that once I send a response back to the client, the connection is closed. How do I then get a response for the next step? If I make another RPC request, is there a guarantee that I'll connect to the same session that executed the previous step? Let me

Re: Anyone using Place/Activity feature in GWT?

2011-09-09 Thread BM
The idea of creating Tokenizer is to have tokens for Browser History. The questions to consider would be do you care to have browser history? And what that means is do you care if the user have to use Back and Forward buttons of the browser? Because you can always use navigation buttons/anchors

does gwt use ANTLR ?

2011-09-09 Thread Saeed Zarinfam
Hi guys, I want to know , does gwt use ANTLR for java language processing or something in any compilation phase ? -- 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

Re: Installation Problem: Eclipse HELIOS and the latest GWT Eclipse

2011-09-09 Thread Seth Hollyman
GPE has a dependency on components from the web tools platform, which is project thats part of eclipse.org. You may want to check and see if you have the main eclipse helios update site available in your available software sites (same place you added the GPE update site) and enabled. For

New GWT theme

2011-09-09 Thread Travis Camechis
Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those lines. -- 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

Re: Can't get correct DOMImpl when chromeframe installed but turned off

2011-09-09 Thread Paul Smith
After taking 2.4 I got caught by this issue also. If chrome frame is installed but not enabled for the page, then gwt uses deferred binding stuff meant for chrome and not the ones meant for ie. It breaks all over the place! Please fix this! You might say just add the meta tag to make it use

Re: New GWT theme

2011-09-09 Thread Qian Qiao
On Sat, Sep 10, 2011 at 03:51, Travis Camechis camec...@gmail.com wrote: Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those lines. I guess you mean com.google.gwt.user.theme.clean.Clean -- Joe -- You received this message because you are subscribed to the

Re: New GWT theme

2011-09-09 Thread Travis Camechis
yeah, that is it. I found it as soon as I sent the email. On Fri, Sep 9, 2011 at 4:02 PM, Qian Qiao qian.q...@gmail.com wrote: On Sat, Sep 10, 2011 at 03:51, Travis Camechis camec...@gmail.com wrote: Wasn't there a new theme created for GWT 2.3 ? Clear or Clean? Something along those

Re: Conditional CSS Updates

2011-09-09 Thread rth
Thanks all for your feedback. The reason I was trying to do this in CSS is that I have one CSS files with media selectors that handle subtle (but important) layout changes for different orientations that also work on mobile phones, small (~7in) tables, and large tablets. To do this in UIBinder

Re: does gwt use ANTLR ?

2011-09-09 Thread David Chandler
Nope, but if you're interested in using ANTLR w/ GWT, check out http://code.google.com/p/gwtified/ Gary Miller of Sumwise.com has made available the GWT ANTLR support used in their flagship spreadsheet in a browser. /dmc On Fri, Sep 9, 2011 at 3:32 PM, Saeed Zarinfam zarinfa...@gmail.com wrote:

Re: Is command-pattern RPC using RequsetFactory now possible?

2011-09-09 Thread Thomas Broyer
On Friday, September 9, 2011 6:57:19 PM UTC+2, pohl wrote: On Sep 9, 9:53 am, Thomas Broyer t.br...@gmail.com wrote: I guess it would now be possible yes. I'm still not sure how it would be an improvement though, unless you intend to serialize the commands somewhere

Re: Hosted mode issues

2011-09-09 Thread Thomas Broyer
Are you looking for this? http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT's -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: EntityProxy, AutoBeanVisitor and Hibernate lazy properties.

2011-09-09 Thread Thomas Broyer
In my current project, MongoDB through Morphia (without lazy-loading). But it would be the same with, say, AppEngine Objectify. The persistence API doesn't change much things; what matters is that if you think of things without lazy-loading, it changes the way you design your data-access APIs.

Re: Conditional CSS Updates

2011-09-09 Thread Thomas Broyer
If you can detect the changes in JS, can't you simply switch a few CSS classes here and there? You could even switch a global one on the body element and use the descendant selector everywhere: .portrait .foo, .landscape .foo, putting class=portrait or class=landscape on the body element. --

CellTables and css

2011-09-09 Thread Tony Kennah
Hi Could someone help me in setting the background of a CellTable row please, I've been trying all night to do it and keep failing and it's driving me mad. I tried using a call to setRowStyles() but that doesn't seem to be working and I've read that you can't change the style for a CellTable

[gwt-contrib] Re: Less Name Mangling (issue1542804)

2011-09-09 Thread stephen . haberman
http://gwt-code-reviews.appspot.com/1542804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-09 Thread rchandia
http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-09 Thread rchandia
Please take another look. http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/lib-gwt.sh File maven/lib-gwt.sh (right): http://gwt-code-reviews.appspot.com/1520810/diff/12001/maven/lib-gwt.sh#newcode87 maven/lib-gwt.sh:87: maven-deploy-file $mavenRepoUrl $mavenRepoId

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-09 Thread rjrjr
http://gwt-code-reviews.appspot.com/1520810/diff/10020/maven/README.txt File maven/README.txt (right): http://gwt-code-reviews.appspot.com/1520810/diff/10020/maven/README.txt#newcode10 maven/README.txt:10: build/dist if you've just built it). By default, the script deploys to your local Maven

[gwt-contrib] Re: Converts the validation sample to build with maven. (issue1537805)

2011-09-09 Thread Ray Ryan
My main problem was that I had lost the web.xml file (duh). Still trying to figure out the ScriptAssertValidator issue. I wonder if an extra copy is being pulled in by maven. On Thu Sep 08 18:15:07 GMT-700 2011, Nick Chalko wrote:

[gwt-contrib] Re: Converts the validation sample to build with maven. (issue1537805)

2011-09-09 Thread rjrjr
http://gwt-code-reviews.appspot.com/1537805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Converts the validation sample to build with maven. (issue1537805)

2011-09-09 Thread drfibonacci
http://gwt-code-reviews.appspot.com/1537805/diff/2002/samples/validation/pom.xml File samples/validation/pom.xml (right): http://gwt-code-reviews.appspot.com/1537805/diff/2002/samples/validation/pom.xml#newcode200 samples/validation/pom.xml:200: artifactIdexec-maven-plugin/artifactId Looks like

[gwt-contrib] Re: Converts the validation sample to build with maven. (issue1537805)

2011-09-09 Thread Ray Ryan
Thanks. Do I need the validation-api dependency (in any of samples/*/pom.xml), or does gwt 2.4.0 bring that along? On Fri, Sep 9, 2011 at 12:09 PM, drfibona...@google.com wrote: http://gwt-code-reviews.**appspot.com/1537805/diff/2002/**

[gwt-contrib] Re: Scripts and configuration to upload GWT bits to Maven repos (issue1520810)

2011-09-09 Thread rchandia
http://gwt-code-reviews.appspot.com/1520810/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

  1   2   >