Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
Hi Sri, Its working fine after disabling the appengine. Thanks sri. regards, Muthu On Nov 18, 3:44 pm, Sripathi Krishnan wrote: > Short Answer : Just disable Google App Engine for your project, and things > should start working. Its a setting in the Google Eclipse Plugin. > > Long Answer : > G

Re: Is there a way to tell the GWT Compiler to ignore pieces of code?

2009-11-18 Thread Tristan
Excellent! That is exactly what I needed Sri, thank you. On another note, I am having trouble compiling and running the debug/ test module at all. I can compile it, but I don't know how to use the test module instead of the regular module when launching from Eclipse. I'm using gwt 2.0 built from t

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
Solved the problem :) It wasn't the GWT making complications, the chars arrived at the server correctly, but were misinterpreted by Apache Commons Fileupload reading the items with the filItem.getString()-Method. In addition to upload.setHeaderEncoding("UTF-8"), I had to add a argument to every ge

Re: Decent development hardware for GWT ?

2009-11-18 Thread hjo1620
Thanks for your answer: i7 based machine with 1 rpm disks, ought to be good enough for me, since my project is way smaller. Any URL you can share to a pre-built system ? Or is it a DIY PC build ? -- You received this message because you are subscribed to the Google Groups "Google Web Toolki

Re: GWT on PlayStation 3 (PS3) browser

2009-11-18 Thread Angel Marquez
I know once you are in the browser you need to into menu/tools/javascript and enable. I think it is off by default. On Wed, Nov 18, 2009 at 8:58 PM, Angel Marquez wrote: > I have been using the PS3 browser with TVersity and my primary objective is > to use GWT in a similar fashion. BD-J apps are

Re: GWT on PlayStation 3 (PS3) browser

2009-11-18 Thread Angel Marquez
I have been using the PS3 browser with TVersity and my primary objective is to use GWT in a similar fashion. BD-J apps are embedded java applications and I want to create the menu systems discless. If I could get the app engine tutorial to deploy I would check for you; but, I can't. I tried the PS3

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Open eSignForms
Turns out I lied. The debugger only seems to break in server code and won't break in client code, most likely because of the module load failure when using the debug URL generated. So this appears to be a bug with the 2.0 RC1 debugger in some fashion, as it relates to Eclipse or the browser plug-

How to tie Image and Label together so when I move Image then Label will follow it??

2009-11-18 Thread guaz wk
I modify the AbstractConnectinExample so make the diagram have Image and label.. but I dont know how to tie them up so that both of it can move together. [code] protected UIObjectConnector createConnector(String text, int left, int top, Direction direction) { Image image3 = new Image(

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Yozons Support on Gmail
One final comment for tonight I did a compile and released to my Tomcat test system and it all appears to work fine. So it seems that the code is building correctly, etc., but I just cannot use the debugger. Then, I tried again using the Eclipse version for debugging, and while I get the err

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Open eSignForms
I should add that I'm only using GWT, not the App Engine, which is listed on the issues list. When I create a new google project, the greeting code works and I can debug it. But if I then copy over my code from a 1.7.1 project, it continues to get the error shown above. -- You received this mes

Re: Decent development hardware for GWT ?

2009-11-18 Thread Sripathi Krishnan
> > Unless you're unlucky enough to have started with a Struts-based > application, in which case it's hard to see how your GWT forms interact > with your real services unless you run from the WAR file. At least, we > never found a way to make it work. > You should try the oophm plugin, and run i

Re: GWT with IntelliJ?

2009-11-18 Thread Sripathi Krishnan
You really don't miss a whole lot .. . The Eclipse Plugin is great for newbies to get started with GWT. But once you gain some experience, it doesn't add much to your productivity. In fact - things like same folder for input as well as output have caused us great pain. In our project, we have ANT

google-web-toolkit-incubator for GWT 2.0RC1?

2009-11-18 Thread Open eSignForms
The google-web-toolkit-incubator site says it will have JARs built for release including RC, but I don't see any. "Google Web Toolkit 1.7 and earlier are supported via downloadable jars. New jars will be provided to match future GWT milestones, RCs, and releases." Is there a plan. Will the 1.7 v

Re: Is there a way to tell the GWT Compiler to ignore pieces of code?

2009-11-18 Thread Sripathi Krishnan
GWT builds that specific use case. Use the widget.ensureDebugId() to set the ids. In dev and test, inherit the debug module. Put the following line in your module xml When compiling for production, remove the debug module. That way, the test code will be removed. To simplify your scripts, crea

Re: GWT compiler option to simply validate code

2009-11-18 Thread MonkeyMike
Although I'm still very interested to get an answer to my previous post, I have just implemented the "temporary hack" that I mentioned, and I actually would say that it's a good approach. I created a "Build" gwt module, which has an entry point, and inherits the overlay type library. I edited my

GWT on PlayStation 3 (PS3) browser

2009-11-18 Thread bosco monkey
Has anyone gotten GWT to work on the PS3 browser? I tried the barebones app created by the Eclipse GWT plugin on the PS3 and it didn't work (only the static HTML showed up). On the other hand, a simple window.onload does work. So at least the PS3 browser has some JavaScript support. For example:

Success with an interesting configuration

2009-11-18 Thread Jeff Chimene
Hi, Here's a success report for latest GPE & RC2 in what may be an uncommon configuration: 1. SSH to an X Window client using the Cygwin X Window server; 2. Start Eclipse, which connects to the Windows X server; 3. Start GWT debug session; 4. Start Firefox 3.5.5 for Windows; 5. Pas

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Open eSignForms
I tried upgrading from 1.7.1 to 2.0RC1 and I must say I'm unhappy because I am running into this error, too, now. I tried renaming my gwt.xml file to be all lowercase, but that's not resolving it. The exception shown in Eclipse: [ERROR] Failed to load module 'esfgwt_app' from user agent 'Mozill

GWT compiler option to simply validate code

2009-11-18 Thread MonkeyMike
Hello, I am creating a GWT Overlay Type library, and have just written an ant build file for creating the JAR file that GWT applications will import. To maintain code integrity, I make the JAR creation depend on a java compile of all the code, and also a gwt compile. Obviously, this is meant

Re: @SingleJsoImpl in GWT 2.0??

2009-11-18 Thread MonkeyMike
That's great! Thanks for the quick reply. :) On Nov 18, 12:43 pm, Chris Ramsdale wrote: > The functionality that you are looking for is in 2.0. The compiler simply > figures it out, so there's no need for an explicit annotation. > > - Chris > > On Wed, Nov 18, 2009 at 3:25 PM, MonkeyMike wrote:

Re: Decent development hardware for GWT ?

2009-11-18 Thread Carl Pritchett
We are running in VMWare Workstation and the base machine is a i7 950 with 6gigs of RAM and 1 rpm disks (seperate disks for VMs and OS) The build produces a 10 meg war, of which about 3 megs of which is GWT / GXT. The dev compile (2 permutations) takes 2:12 including 300 tests - so the actual

GWT and Google Analytic's Events via JSNI

2009-11-18 Thread Nick
Hello, I want to be able to create Google Analytic's Events from GWT. I am able to call the trackPageview method but not the trackEvent from GWT using JSNI. Working: public static native void trackPageView(String pageName) /*-{ $wnd.pageTracker._trackPageview(pageN

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-18 Thread Jeff Chimene
On Wed, Nov 18, 2009 at 3:12 PM, Rajeev Dayal wrote: > Hi Jeff, > > This is a known bug that we'll have fixed for the next RC. > > To avoid this error, do not close the Web App Launch View once it has been > opened (minimization is okay, the problem occurs when you actually close the > view). >

Re: GWT with IntelliJ?

2009-11-18 Thread wil.pannell
In my brief experience, there are no inherent advantages of the GWT plugin except (1) the ease with which it facilitates creation of configurations for running and debugging in hosted-mode; and (2) the breadth of GWT examples that use eclipse. To point (2), there is a dearth of such examples that

Re: Will 2.0 get rid of the deprecated APIs?

2009-11-18 Thread Jim Douglas
That seems to be the official position: http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/33ef903fe5097437/82dc098a5854df1a My guess is that someone just started working on the GWT 2.0 javadocs -- copying over the 1.6 doc tree as a starting point. On Nov 18, 2:0

Re: GPE debug error: ContentViewer must have a content provider when input is set

2009-11-18 Thread Rajeev Dayal
Hi Jeff, This is a known bug that we'll have fixed for the next RC. To avoid this error, do not close the Web App Launch View once it has been opened (minimization is okay, the problem occurs when you actually close the view). If you do get into this state, restarting Eclipse will fix the problem

Will 2.0 get rid of the deprecated APIs?

2009-11-18 Thread dmen
Hi, are deprecated APIs going to get cleaned with the final 2.0? The docs still have them. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/index.html Thank you -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this grou

Re: Decent development hardware for GWT ?

2009-11-18 Thread David C. Hicks
Olivier Gérardin wrote: > GWT-compiles are slow, that's a fact. But they are normally used only > for deployment or when you exceptionally need to test in a real > browser. > Normally when you make changes to your code you just need to hit > reload in the hosted modewindow, and that takes only seco

Re: Decent development hardware for GWT ?

2009-11-18 Thread Olivier Gérardin
GWT-compiles are slow, that's a fact. But they are normally used only for deployment or when you exceptionally need to test in a real browser. Normally when you make changes to your code you just need to hit reload in the hosted modewindow, and that takes only seconds. On Nov 18, 12:52 pm, hjo162

GPE debug error: ContentViewer must have a content provider when input is set

2009-11-18 Thread Jeff Chimene
I received this error today after starting a debug session: "ContentViewer must have a content provider when input is set" I resisted writing this email, so did not copy more details. Restarting Eclipse did not resolve this error. I resolved this problem by closing/opening the project. I really

Re: GEP 1.1.2 GWT 2.0 rc1 error Unknown argument: -style Google Web Toolkit 2.0.0-rc1

2009-11-18 Thread Trevor Skaife
I guess I should have read this http://code.google.com/p/google-web-toolkit/wiki/GWT_2_0_RC so nevermind. On Nov 18, 3:07 pm, Trevor Skaife wrote: > Trying to run dev mode from GEP 1.1.2  with 2.0 rc1 I get this error > > Unknown argument: -style > Google Web Toolkit 2.0.0-rc1 > > I haven't had

GEP 1.1.2 GWT 2.0 rc1 error Unknown argument: -style Google Web Toolkit 2.0.0-rc1

2009-11-18 Thread Trevor Skaife
Trying to run dev mode from GEP 1.1.2 with 2.0 rc1 I get this error Unknown argument: -style Google Web Toolkit 2.0.0-rc1 I haven't had any problems with ms1 or ms2. Seems when you try to run you project as a web application with GEP 1.1.2 it automatically adds a -style attribute which no longer

Re: @SingleJsoImpl in GWT 2.0??

2009-11-18 Thread Chris Ramsdale
The functionality that you are looking for is in 2.0. The compiler simply figures it out, so there's no need for an explicit annotation. - Chris On Wed, Nov 18, 2009 at 3:25 PM, MonkeyMike wrote: > Dear GWT 2.0 developers, > > I noticed the latest announcement about GWT 2.0, Milestone 2, > he

Great Tool for Load Testing GWT sites => BrowserMob

2009-11-18 Thread Davis Ford
I have no affiliation with this service, but I just started using it today to set up some load testing for the site I just built, and I am really impressed with it. Easy to use, great features / reporting, fully support for AJAX / JavaScript heavy sites like GWT if you use their real browser tests

@SingleJsoImpl in GWT 2.0??

2009-11-18 Thread MonkeyMike
Dear GWT 2.0 developers, I noticed the latest announcement about GWT 2.0, Milestone 2, here... http://groups.google.com/group/google-web-toolkit/browse_thread/thread/15f20608f0a73b73 ...and I noticed that it does not make any mention of the @SingleJsoImpl feature, which is described here...

Is there a way to tell the GWT Compiler to ignore pieces of code?

2009-11-18 Thread Tristan
Here's what I would like to do: Selenium tests are easiest to run if each element has a unique id. I would like to be able to do something along the lines of: if Compiler style is Pretty.. include the line: widget.setElementId("easy-to-locate-id-for-tests") but if I set the Compiler to Obfusc

GWT with IntelliJ?

2009-11-18 Thread Jason Rosenberg
I see in the docs that there seems to be special support for GWT in Eclipse (with the developer plugin). I have been using IntelliJ, I'm wondering if I will be ok, or should really switch to Eclipse. IntelliJ does seem to have a GWT 'facet', but I don't think it has all that the eclipse plugi

Re: Will 2.0 be backwards compatible with 1.7?

2009-11-18 Thread Chris Ramsdale
While we don't have a specific date, we're eager to finalize 2.0 and don't expect this RC cycle to be too long. - Chris On Wed, Nov 18, 2009 at 2:42 PM, Jason Rosenberg wrote: > Thanks Chris, > > I'll get started with the 2.0 RC... > > Do we have a prospective release date for 2.0? > > Jason >

Re: Will 2.0 be backwards compatible with 1.7?

2009-11-18 Thread Sanjiv Jivan
Chris, SmartGWT 1.3 supports GWT 2.0. If anyone runs into any issues, feel free to post the details on the SmartGWT forum. Thanks, Sanjiv On Wed, Nov 18, 2009 at 2:37 PM, Chris Ramsdale wrote: > With 2.0 we've added added features such as UiBinder, ClientBundle, and > layout panel while continui

Re: Will 2.0 be backwards compatible with 1.7?

2009-11-18 Thread Jason Rosenberg
Thanks Chris, I'll get started with the 2.0 RC... Do we have a prospective release date for 2.0? Jason Chris Ramsdale wrote: > With 2.0 we've added added features such as UiBinder, ClientBundle, > and layout panel while continuing to work with existing 1.x > applications. Given this, you sh

Re: Will 2.0 be backwards compatible with 1.7?

2009-11-18 Thread Chris Ramsdale
With 2.0 we've added added features such as UiBinder, ClientBundle, and layout panel while continuing to work with existing 1.x applications. Given this, you shouldn't have any issues working through the existing documentation and examples using the 2.0 Release Candidate. I would suggest upgrading

Help with connection properties

2009-11-18 Thread Rinuz
So, i have DBProperties.xml file in PUBLIC package in my app. I read this xml by RequestBuilder class. Next i put read data to panel with database configuration. If the data on this panel will change i want to write them to the same file (DBProperties.xml). Next I wanted to read xml in the same wa

Re: GWT 2.0 RC1 - Mail Sample display blank on IE browser in "Quirks Mode"

2009-11-18 Thread Hekke
They're using the new layout panels, which can only be expected to work in standards mode. On 18 Nov., 09:16, shiang wrote: > Hi, > > I tried the Mail Sample in GWT 2.0 RC1 and encountered the followings: > -- > for Internet Explorer: > When run with th

Re: GWT Hosted Mode crashing after Snow Leopard 10.6.2 Update

2009-11-18 Thread jimsmart
another, possibly better fix can be found here:- http://code.google.com/p/google-web-toolkit/issues/detail?id=4220#c22 hth, /J On Nov 16, 6:28 pm, ale wrote: > thanks a lot! It's work fine. > > On 12 Nov, 12:35, Daniel Kurka wrote: > > > > > I found a very UGLY solution to my problem (which ena

Will 2.0 be backwards compatible with 1.7?

2009-11-18 Thread Jason Rosenberg
Hello, I'm looking at starting some new development with GWT, and I'm intrigued by the changes coming in 2.0. I'd like to use 2.0, if for no other reason than that it supports java 6 64-bit, so I don't have to worry about fiddling with my development environment, or adding special java installs o

Update data in real-time

2009-11-18 Thread iaio81
Hi all, in my application I need update for example a number in a cell after having inserted in the DB particular records...Is it better using RPC call with Timer class every 1 minute ( for example) or using comet (for example GWTAdapterStreamHub) or someone has some other advises? Thanks in advan

Re: Static variables or Session?

2009-11-18 Thread iaio81
Ok, what I've done until nowthanks!!! But in order to authorize RPC request, couldn't you use static variables or you intend for make it easier? On 18 Nov, 19:24, Sripathi Krishnan wrote: > I am assuming you mean client side static variables v/s server session > (doesn't make sense any other

Re: Static variables or Session?

2009-11-18 Thread Sripathi Krishnan
I am assuming you mean client side static variables v/s server session (doesn't make sense any other way).. GWT recommends going stateless - which means no session. In practice, however, we compromised a little. In our application, we store roles/permissions in session so that we can authorize a

Static variables or Session?

2009-11-18 Thread iaio81
Hi all, according to you, in order to save user's information, is it better saving them into static variables or in session? 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

Where to get GWT 2.0 browser blugins for offline usage

2009-11-18 Thread Aekold
Hi All! GWT 2.0 requires browser plugin to debug application. Is there any code hosting or downloads repository where I can get those plugins to reinstall them on demand event without connecting to the internet? -- You received this message because you are subscribed to the Google Groups "Googl

google-web-toolkit@googlegroups.com

2009-11-18 Thread Thomas Broyer
On Nov 17, 10:32 pm, mnenchev wrote: > Hi, i have image 1x600px that i need to "repeat" as panel background. > I am using CssResource and Client Bundle but i do not know how to do > it or i am missing somthing. I use �...@imageoptions > (repeatStyle=RepeatStyle.Horizontal), but it seems it is not

Re: instanceof Element check fails in FF

2009-11-18 Thread Thomas Broyer
On Nov 17, 6:14 am, bhomass wrote: > I have this statement >                 NodeList childNodes = tdElement.getChildNodes(); >                 for (int i=0; i                         Node childNode = childNodes.getItem(i); >                         if (childNode instanceof Element&& !"#text".eq

Re: Google Web Toolkit 2.0 RC1 Now Available

2009-11-18 Thread Arthur Kalmenson
Oh, good to hear. There was some discussion about whether deRPC would make it into 2.0 or not, and I didn't see it mentioned in the Wiki. Sorry about that! -- Arthur Kalmenson On Tue, Nov 17, 2009 at 3:33 PM, Chris Ramsdale wrote: > The deRPC components live under the com.google.gwt.rpc packag

Re: Trouble installing Google Eclipse Plugin 1.2 RC1

2009-11-18 Thread Chris Ramsdale
Glad to hear that you are up in running. The plugin installation process will be simplified via the update mechanism once we roll out the official release. On Wed, Nov 18, 2009 at 1:27 AM, Dalla wrote: > Hi again > > I got it working now, apperently it wasn´t enough to uninstall the > GEP, I als

GWT 2.0 RC1 - Mail Sample display blank on IE browser in "Quirks Mode"

2009-11-18 Thread shiang
Hi, I tried the Mail Sample in GWT 2.0 RC1 and encountered the followings: -- for Internet Explorer: When run with this doctype: "Quirks Mode" Result: IE displays nothing but a blank page. When run with this: Standard Mode: Result: OK Chrome / Fire

ParseException with gwt 2 rc1

2009-11-18 Thread pjulien
Downloaded and used gwt 2 rc1 and was happy to see my production project just compiles out of the box, however I kept getting this exception. Generated a new project in netbeans and used a hello world service and I still get the following error: I've gone the URL myself '/org.codepimps.webapplica

Problem run hosted mode in tomcat

2009-11-18 Thread Mario
Hello I have a problem run hosted mode in gwt 1.7 from tomcat. I was read article from http://code.google.com/intl/pl/webtoolkit/doc/1.6/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s and do not know how can I do it. I do not want use a jetty because

Navigation and GWT

2009-11-18 Thread Jaber
Hi, iam on the process of evaluating GWT for a new project, i have 2 questions: - How does GWT handles or lets say simulate the navigation between pages, and is there any atricles/best practices for handling that. - Where can i find a list of GWT widgets demo, where i can introduce GWT in action

Re: GWT: JUnit & Google App Engine Tutorial assumes intelligence

2009-11-18 Thread Chris Ramsdale
Good find. We'll get this updated in the final release. On Wed, Nov 18, 2009 at 1:15 AM, Angel Marquez wrote: > Consistently, The DynaTable Example pop up included with GWT 2.0RC refers > to 'hosted mode' in the RPC could not be reached dialog window. The dialog > should read 'development mode'.

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Chris Ramsdale
Thanks. The issue is a result of ModuleDefLoader looking for a caseless version of your module name. We're currently looking into a fix. More information can be found on the GWT Contributors Group: http://groups.google.com/group/google-web-toolkit-contributors/browse_thread/thread/4f1dc198248c1b0d

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Prashant
it is A_Test_App.gwt.xml -- 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 google-web-toolkit+unsubscr...@googlegroups.c

Re: just completed the stockwatcher tutorial..

2009-11-18 Thread Chris Ramsdale
The following link contains information related to deploying your GWT application: http://code.google.com/webtoolkit/doc/1.6/DevGuideDeploying.html On Wed, Nov 18, 2009 at 9:40 AM, NMAGOCIO wrote: > If you just want to test it in a browser click the Compile/Browse > button in the hosted mode br

Re: com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Chris Ramsdale
Prashant, Would you mind replying back with the case sensitive name of your module? E.g. is it: a_test_app.gwt.xml or A_Test_App.gwt.xml? - Chris On Wed, Nov 18, 2009 at 8:56 AM, Prashant wrote: > Hi, > > I am getting following error while trying to access > http://localhost:/A_Test_App.h

Re: just completed the stockwatcher tutorial..

2009-11-18 Thread NMAGOCIO
If you just want to test it in a browser click the Compile/Browse button in the hosted mode browser and that kicked off Firefox for me. That red toolbox on the menu runs the compiler so I don't think you need to mess with a build.xml when you run the compiler you get something like: Compiling modu

Re: Decent development hardware for GWT ?

2009-11-18 Thread Zé Vicente
Heheeh... It takes a few minutes for me as well. Maybe more than 5 minutes! What means to have many permutations? Is it bad? In terms of code, what it means? Anyway... I could take 30 minutes to compile as long as it continues to work fine for me. [], José Vicente On 18 nov, 12:20, Paul Robins

com.google.gwt.core.ext.UnableToCompleteException while using Development Mode

2009-11-18 Thread Prashant
Hi, I am getting following error while trying to access http://localhost:/A_Test_App.html?gwt.codesvr=172.16.14.38:51241 Connection received from SonyVaio.mshome.net:51327 [ERROR] Failed to load module 'a_test_app' from user agent 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread Martin Trummer
hm - works for me maybe you should make a simple testapplication and post the entry point class and a minimal version of your servlet On 18 Nov., 13:20, GWT-Newbie wrote: > Yes, I'm using commons-file upload. > > My meta tag is: > request.getCharacterEncoding() shows "UTF-8" > upload.getHeaderE

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
Yes, I'm using commons-file upload. My meta tag is: request.getCharacterEncoding() shows "UTF-8" upload.getHeaderEncoding() now also shows "UTF-8" But still getting the wrong result. -.- On 18 Nov., 11:40, Martin Trummer wrote: > what does request.getCharacterEncoding() show? > > if you use co

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Sripathi Krishnan
Short Answer : Just disable Google App Engine for your project, and things should start working. Its a setting in the Google Eclipse Plugin. Long Answer : GWT and Google App Engine (GAE) are two separate projects, and you don't have to use them together. If you enable GAE - you cannot use any oth

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
Hi Sri, I am using Hibernate to access the database and used the example from http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html. When i create a hibernate session from rpc servlet, it throws error "INetAddress is a restricted class". :( Even i tried GiLead library, even in

Re: Decent development hardware for GWT ?

2009-11-18 Thread Paul Robinson
The javac compiles are a small fraction of the total time taken - that you have third party stuff and common classes javac-compiled separately is probably not very important to the time taken overall. It's the monolithic compile to javascript that's slow. What is most important is the number of pe

Using different jars for GWT and server-side Java for same package in hosted mode

2009-11-18 Thread Bruno Harbulot
Hello, Is it possible to use different jar files for the same package, depending on whether this jar is used for server-side Java or if it's used for GWT code? This problem occurs with the latest development version of Restlet, which provides two different editions of the same package (this is

Decent development hardware for GWT ?

2009-11-18 Thread hjo1620
My compiles are getting slower and slower (4 mins currently). It's a not a huge app, master detail input forms, grids, tabs, menubar and status bar, one servlet, ca 10 RPC calls. Third party grid, compiled separetly. Common classes in a separate project, compiled separetly. WinXP SP3, AMD Athlon D

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread Martin Trummer
what does request.getCharacterEncoding() show? if you use commons-file upload, you could try to manually set the encoding upload.setHeaderEncoding(encoding) --> to the same value you use in your meta tag On 18 Nov., 10:18, GWT-Newbie wrote: > Thanks for your answer! > > My html file has the cor

Re: Serving the GWT files from a CDN?

2009-11-18 Thread lowecg2004
It's definitely possible to serve GWT static assets from a CDN, see comments from an earlier discussion: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/92ec90538cb4453a/a4dfe85c81c2e8ce?q=#a4dfe85c81c2e8ce I've not tried the JS technique you describe nor have I used the pr

Re: Problem: FormPanel / FileUpload - special characters and german umlauts

2009-11-18 Thread GWT-Newbie
Thanks for your answer! My html file has the correct type and I am using the correct method on your form. In the Client, the special chars of the FormPanel items are still ok, before it's submitted. (e.g. "Grüße") If I get the Strings of the submitted items in the servlet (item.getString()), the s

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Sripathi Krishnan
If you are using Google App Engine, you cannot access databases even @ server side. You are tied to the persistence approach that GAE provides. --Sri 2009/11/18 Muthukumaran Balan > Thanks for the reply chris. > > The code for accessing the database is running on the server-side of > the RPC[

Re: Help - laying out contents on a page

2009-11-18 Thread jd
You can also just use a FlowPanel with gives you a div which you can then style using css. i.e. create 3 divs for each column and float each to the left to stack them horizontally. On Nov 18, 1:16 pm, nick_name wrote: > Hi, > I am a noob and am trying to draw something like below on the screen.

Re: GWT Mysql Error - java.net.InetAddress is a restricted class.

2009-11-18 Thread Muthukumaran Balan
Thanks for the reply chris. The code for accessing the database is running on the server-side of the RPC[servlet]. Moreover, if mysql-jdbc-driver cant use these inetaddress class, then we cannot access the database even @ server side? is there anyother way or my configuration is wrong? thanks and