Re: 请问gwt的学习应该是怎样的步骤呢

2013-08-05 Thread Neo Wang
我跟你一样也是初学者, 每个人应该都有适合自己的学习方法, 会js,html 会java就差不多了, 最好会css 在 2013年7月31日星期三UTC+8上午10时05分47秒,buha...@gmail.com写道: 我现在是大一的学生,只学习了Java和C,仅仅是书本知识,如果想学gwt的话,应该怎样安排呢,我看到gwt不仅仅涉及了Java,请各位长辈给点意见,十分感谢。 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

servlet calls fill apache logs

2013-08-05 Thread Magnus
Hi, my GWT apps makes RPC calls to servlets at /game, chat and event. These calls seem to be logged into the apache's access.log (see below). Since some calls are made often, I would like to avoid this. Is this possible? Thanks Magnus - 91.60.114.113 - - [04/Aug/2013:23:16:30 +0200] POST

Re: Test qwt project with selenium

2013-08-05 Thread antw...@gmail.com
I would suggest you to use Jenkins: [ Task I: Compile package GWT app ] --- triggers [ Task II: Deploy .war in appspot/tomcat ] --- triggers [ Task III : Run Selenium tests ] That's how we usually configure our uitests around gwt apps where in Jenkins, the 1st task is a simple 'mvn clean

Re: servlet calls fill apache logs

2013-08-05 Thread Jens
Sure if you have access to the apache configuration just tell apache to not log certain requests. Conditional logging can be configured using SetEnvIf and CustomLog. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe

Re: servlet calls fill apache logs

2013-08-05 Thread Magnus
SetEnvIf works, thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

Re: Bean Serialization Problem: com.google.gwt.user.client.rpc.SerializationException: Type 'com.dg.common.client.beans.DGUser' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable'

2013-08-05 Thread dingolfy
Thanks JM for posting the solution. I too had the same problem. It is working fine in the dev environment but not in live. both are in Linux. Not sure why. Your solution helped to get it working. Thanks ! On Thursday, November 6, 2008 1:41:01 PM UTC, JM wrote: I fixed it by implementing

Re: Bean Serialization Problem: com.google.gwt.user.client.rpc.SerializationException: Type 'com.dg.common.client.beans.DGUser' was not assignable to 'com.google.gwt.user.client.rpc.IsSerializable' a

2013-08-05 Thread Jens
Thanks JM for posting the solution. I too had the same problem. It is working fine in the dev environment but not in live. both are in Linux. Not sure why. Your solution helped to get it working. If you see INFO: ERROR: The serialization policy file '/

Re: Test qwt project with selenium

2013-08-05 Thread salk31
We just use maven jetty plugin to start it up as close to production mode and it starts/stops around the maven integration cycle. http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing The only pain is you end up having to support dev mode, jetty for integration tests and

Re: Failing to install Google Web Toolkit Eclipse plugin

2013-08-05 Thread Rodrigo Rodriguez
I was able to download after turning off the proxy, and allow all sites to install plugins. Firefox | Preferences | Advanced | Connection settings Then select the No Proxy setting Firefox | Preferences | Security and deselect the Warn me when sites try to install add-ons That fixed it for

Re: 请问gwt的学习应该是怎样的步骤呢

2013-08-05 Thread Xi
学习GWT要先从它的几个特点出发: 第一,写程序时,要分清楚,哪些类或者代码是在客户端用的,哪些是在服务器端用的,那些是用来客户端和服务器端沟通的。因为GWT 的客户端的代码是要重新转换(编译)成javascript,因而有很大的局限性,,例如,所有的stream类都不能在客户端用(详见 http://www.gwtproject.org/doc/latest/RefJreEmulation.html)。在写程序时,客户端的代码和服务器端的代码有着很明显的分界线。 第二,就是asynchronous call。GWT

Grid Frameworks, Responsive Design and GWT

2013-08-05 Thread Lavie Tobey
Hello GWT Community! I'm looking to gather the collective knowledge of this community to answer a subjective question regarding GWT. I'm starting to rewrite our suite of applications from scratch (i.e. version next) and our group is mainly made up of GWT engineers, so GWT will be the basis

Re: Grid Frameworks, Responsive Design and GWT

2013-08-05 Thread Thomas Broyer
On Monday, August 5, 2013 11:52:59 PM UTC+2, Lavie Tobey wrote: Hello GWT Community! I'm looking to gather the collective knowledge of this community to answer a subjective question regarding GWT. I'm starting to rewrite our suite of applications from scratch (i.e. version next) and our

Re: seamless rpc during upgrades

2013-08-05 Thread QC
I'd like to pick up this topic again after 2 years, what an interval! My general concern is that during the deployment refreshing the page wouldn't solve the RPC break problem. As long as we have a mix of old and new server during deployment and no measure to ensure that the new clients only

Seamless rpc during upgrades continued

2013-08-05 Thread QC
Seems the topics are ranked by post date by default, this is the link to the old topic I'd like to bring to people's attention again. https://groups.google.com/d/msg/google-web-toolkit/-p5wr04A-eg/cmxBYlwYhrYJ Basically I hit the rpc outage problem during deployment I wonder how to solve it.

Re: auto refersh list grid

2013-08-05 Thread mukarev
You should have a look at http://www.gwtproject.org/javadoc/latest/com/google/gwt/view/client/AsyncDataProvider.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Regarding TimePicker

2013-08-05 Thread mukarev
1. You need to make the TimePicker visible when TextBox gets onFocus or onClick. U can use a PopUpPanel/DielogBox therefore. 2. for using native JavaScript have a look at http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html You might prefer a gwt port from jQuery like