Re: Announcing GWT 1.6 Release Candidate

2009-03-21 Thread El Mentecato Mayor
Just to report back on the problem I reported, I was able to uncompress fine the GWT 1.6 download using the gnome application File Roller. I guess bunzip2 can't handle a directory like gwt-linux/./ mozila but FileRoller can. Still the GWT team might want to modify the download file. On Mar 19,

Reverse direction of suggestions in suggestBox

2009-03-21 Thread matttai
Hi everyone, just wondering is this possible? I haven't been able to find a way to get this to work. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

PreparedStatement works half way

2009-03-21 Thread Pham Tran Quoc Viet
Hi All,I my GWT-based application, the INSERT statement inserts a record into the database. It, however, throws the error in red below when hitting the UPDATE statement (in bold and at the bottom). Please help. com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your

Problems using GWTCDatePicker - third party gwt jar

2009-03-21 Thread PeteF
I am trying to use GWTCDatePicker from http://code.google.com/p/gwtchismes/. Here is what I am doing: 1) I have added the entry: inherits name='com.google.code.p.gwtchismes.GWTChismes.GWTCDatePicker'/ in MyApplication.gwt.xml file. 2) I am also adding gwtchismes-0.9.0.jar to my shell and

Re: Rpc Serialization best practice

2009-03-21 Thread Arthur Kalmenson
As far as I know, GWT's serialization policy is about as good as you're going to get for compressing data. The only way to decrease the size of the data being sent to and from the server is to send less data. Perhaps there's a way to split up your calls so you don't need to fetch all the data at

Re: Best Practices for managing GWT 1.6 based Applications, Projects and Modules?

2009-03-21 Thread jgr...@gmail.com
Hi Lance, I suggest you build one module for each functional area, plus some modules common across the application, with each module *not* having an entry point. The functional area module would inherit from the common modules, in essence treating them as libraries. Eventually, you will have

Re: PreparedStatement works half way

2009-03-21 Thread Vitali Lovich
Do not do executeUpdate(sql). I'm pretty sure that's the problem. Just do an executeUpdate(). Hope you can see why. Does that fix the problem? On Sat, Mar 21, 2009 at 11:01 AM, Pham Tran Quoc Viet phamtranquocv...@gmail.com wrote: Hi All,I my GWT-based application, the INSERT statement

Re: PreparedStatement works half way

2009-03-21 Thread Pham Tran Quoc Viet
You are right on. Why did I not see that? Thanks. Viet Pham On Sat, Mar 21, 2009 at 11:21 AM, Vitali Lovich vlov...@gmail.com wrote: Do not do executeUpdate(sql). I'm pretty sure that's the problem. Just do an executeUpdate(). Hope you can see why. Does that fix the problem? On Sat,

file upload from popup

2009-03-21 Thread Riyaz Mansoor
The form panel below is in a vertical panel which has submit link. The vertical panel is in a popup panel. Clicking submit has no effect! The examples seem to show formpanel being added to rootpanel. can't use popup? Grid grid = new Grid(3, 2); grid.setCellSpacing(8);

How to configure web.xml to include RPC service?

2009-03-21 Thread stsch
I am referring to this chapter from the FAQ: Google Web Toolkit 1.5 FAQ Deploying a GWT Application How do I package a GWT application into a WAR file? -- http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=FAQ_PackageAppInWARFile It says: # The

Re: Best Practices for managing GWT 1.6 based Applications, Projects and Modules?

2009-03-21 Thread Lance Weber
Hi James, Thanks for the thoughtful reply, it helps me to just talk this through. I really like the idea of having a topmost runtime module and a topmost test scaffold module. Quick question: would you recommend 1 project per module so you end up with multiple projects? Is there an easy way to

Re: How to configure web.xml to include RPC service?

2009-03-21 Thread Vitali Lovich
url-pattern/GwtEjbSrc/url-pattern I believe that you need url-pattern/module_name/GwtEjbSrc/url-pattern I'm assuming GwtEjbSrc is the name of your RPC service. Here's a snippet from the web.xml of my GWT 1.6 project: !-- Servlets -- !-- Login -- servlet

Re: twitter GWT integration

2009-03-21 Thread urmila rathod
hi Along with GWT u have to use tweeter4j is an open source library. from urmila On Sun, Mar 22, 2009 at 10:57 AM, John Webster joster.j...@gmail.comwrote: Hi- Has anyone successfully integrated twitter tweets into a GWT application? If so, what libraries have you used to integrate twitter

twitter GWT integration

2009-03-21 Thread John Webster
Hi- Has anyone successfully integrated twitter tweets into a GWT application? If so, what libraries have you used to integrate twitter API into a GWT application. Any source code pointers would be appreciated. Thanks in advance, Joster --~--~-~--~~~---~--~~ You