Re: Bundling Background Images defined in CSS

2009-08-02 Thread George Georgovassilis
There is also an online generator: http://spritegen.website-performance.org/ On Jul 31, 3:15 am, Salman Hemani salman.hem...@gmail.com wrote: Mr Truett, I was trying to be polite in my first post but here goes... In your first post you took two different statements from two different posts

Problem creating a RPC Service

2009-08-02 Thread Sednus
Hi, I am tring to implement a service using RPC, this service should be able to take a string (originally written by user on a text area) and save it into a text file onto the server side. My problem is that when I create the FileWriter object Eclipse says that FileWriter is not

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-08-02 Thread mirceade
Perfect. Thanks! On Jul 30, 8:00 pm, Miguel Méndez mmen...@google.com wrote: Hi everyone, We wanted to let all of you know that the Google Plugin for Eclipse 1.1.0 is now available.  Some of the notable improvements are:    - Support for Eclipse 3.5 (Galileo)    - GWT RPC interface

GWT + GAE + S3 onSubmitComplete IS NOT FETCHING?

2009-08-02 Thread jlc488
I have implemented a page which upload a file to S3 using post method. Somehow, I have made it work and actually file is uploading to S3, but onSubmitComplete event is not fetching at all, eventhough file is uploaded. When I checked the response using firebug, It shows it still needs to receive

Re: Mouse events on single items in a multiple-select ListBox ?

2009-08-02 Thread Palietta
There are two problems with that. First of all, it's a multple-selection ListBox, so getSelectedIndex would only return the first selected item. Second, I don't need to know which items are selected, but which item is the mouse pointer currently over. I need to capture mouseover events *before*

Re: Automated JUnit Tests for GWT

2009-08-02 Thread Ben2008
Is there anyway to do this with eclipse only? I do not want to have too much other stuff that will only complicate my project ... Best way is possibly to define a compile or build configuration in eclipse that will serve my needs. IF i click on that GWT compiler, just compile and run my test

Re: Several test suites in a run

2009-08-02 Thread Ben2008
So what was the answer? Just define different public String getModuleName() ?? On Aug 2, 1:02 am, Marcelo Sena marceloslace...@gmail.com wrote: Oh god I can't believe I'm that dumb. The answer was right in front of me the whole time. Sorry for asking. On Aug 1, 4:12 pm, Marcelo Sena

dead code elimination of unused method arguments?

2009-08-02 Thread Ed
Hellu, Does the GWT compiler currently support the removal of unused method arguments? And if not, will this be supported? Example: Suppose you have the method: doSomething(final boolean hellu, final String info). This method is located in different implementations that are used depending on

Re: Automated JUnit Tests for GWT

2009-08-02 Thread Daniel Wellman
I don't know of a way to do this in Eclipse only - I'm not sure that it's possible. You mention that you don't want to complicate the project - for what it's worth, Ant and Maven are two mainstream Java tools that most developers have seen or used (especially Ant). While they do add some

Re: Modelling framework

2009-08-02 Thread Nathan Wells
I'm with Chad here... Dynamic Data structures sound cool and even a little sexy, but they are by definition contradictory. Your data structure is like the foundation of your application: you want it to be as solid as possible. Allowing for extensibility for future improvements is one thing. A

Re: How does cooiked be transfered?Where is that cookies be hold when being tranfered to client?

2009-08-02 Thread Nathan Wells
Alex, 1) Use the Cookies class, as in http://lkamal.blogspot.com/2007/08/gwt-cookie-expire-time.html 2) GWT-RPC has no mechanism for setting Cookies in the response. All cookie setting work is done purely client-side. In normal HTTP, you have the option of setting cookies in the response, but

sometime text box didn't work

2009-08-02 Thread z65536
hello, all: i created a gwt application, and the front end has a text input dialog, which consists one plain text box and one rich text box. The app is meant to save the user's input to the database. it works fine. however, sometime i just couldn't type in anything in either text box of the

Re: how to load a url in a GWT application

2009-08-02 Thread Manuel Carrasco Moñino
So, use an iframe to load the second application: Frame frame = new Frame(http://path_to_your_second_app;); Manolo Carrasco On Sun, Aug 2, 2009 at 6:55 AM, Saeed Zarinfam zarinfa...@gmail.com wrote: Hi Manuel. I build a GWT application (called app A) and then i compile it and deploy it on

Re: Google analytics integration

2009-08-02 Thread Juraj Vitko
Does anything you just wrote invalidate the need of GWT applications for tracking individual dynamic pages via Google Analytics, in a way that admins don't have to manually correlate real GWT dynamic page urls (with hashes), with the pseudo page urls (classic urls) in the Google Analytics user

Re: Modelling framework

2009-08-02 Thread Kaspar Fischer
Chad, Nathan, First of all, thanks for your feedback and comments. I am not really sure what you mean by dynamic data structures. -- I was not talking about creating, altering, or removing tables in the DB at runtime if that or something close to that is what you ment. Maybe it is easiest

Re: How do you deal with Validation and MVP?

2009-08-02 Thread Kwhit
This is a hot topic for me at the moment and I'll come back to you directly probably at the end of this coming week. Here's my interim thoughts though. I've been working on MVP over the last two weeks and don't think the various patterns I know of (including (Ray Ryan's, Fowler, Greer, and

GWT Map Application in Eclipse: Search Button problem in Browser mode

2009-08-02 Thread sam
I am designing a Google Map application using GWT in Eclipse. I have designed a draggable marker, and it works fine in the hosted mode. After I compile it in the browser, I can see the map in different modes like 'hybrid', 'map', and 'satellite'. But after I type in the address, my search

Re: Getting a simple GWT project to gwt-compile in maven2

2009-08-02 Thread Manuel Carrasco Moñino
There is a maven archetype I use to create my gwt projects. It is a bit old but with little modifications to the pom file it works fine: mvn archetype:create -DarchetypeGroupId=com.totsp.gwt \     -DarchetypeArtifactId=maven-googlewebtoolkit2-archetype \     -DarchetypeVersion=1.0.4 \    

Re: dead code elimination of unused method arguments?

2009-08-02 Thread Manuel Carrasco Moñino
as I know, Gwt compiler removes all unused stuff from your application and inherited modules. It removes classes, methods, attributes ... Manolo Carrasco On Sun, Aug 2, 2009 at 2:37 PM, Edpost2edb...@hotmail.com wrote: Hellu, Does the GWT compiler currently support the removal of unused

Re: Several test suites in a run

2009-08-02 Thread Marcelo de Sena Lacerda
There is no need to define a different getModuleName() The same module name applies to the whole project and one can instantiate and test any classes from the project. So a test suite will do just fine. On Sun, Aug 2, 2009 at 7:57 AM, Ben2008umi...@googlemail.com wrote: So what was the answer?

No source code is available for type...

2009-08-02 Thread Marcelo Sena
Hi, I keep getting this message after running tests on my code: No source code is available for type com.google.gwt.junit.tools.GWTTestSuite; did you forget to inherit a required module? Does anybody knows what this means. Should I be worried about it? The tests seems to run just fine with this

Re: fileupload: ensuring the same file being uploaded

2009-08-02 Thread twittwit
if you mean common fileupload. it should be at the server. nope for web.xml. and nope for project.gwt.xml -- since you putting common fileupload to the server. try to be more clear ini what u want? and where is the problem. On Jul 21, 4:13 pm, Vinz369 vincentriv...@gmail.com wrote: Hello

Re: Google analytics integration

2009-08-02 Thread Ian Bambury
I didn't comment on the *need* to be able to track bookmarks, just the difficulties. Personally, I am not troubled by GA reporting /Home in place of #Home and /Widgets/Grid instead of #Widgets/Grid. Ian http://examples.roughian.com 2009/8/2 Juraj Vitko juraj.vi...@gmail.com Does anything

Re: inject hack value when call RPC like setScore(..)

2009-08-02 Thread brett.wooldridge
The answer is, of course. The code is on the client, and even though obscured, is JavaScript. Using something like firebug or even editing the JavaScript in the browser cache the logic of the client can be altered. Like any effort/reward system, it's a question of how much it is worth to the

Re: Quick fix for broken hosted mode with Snow Leopard 10A380 on x86_64

2009-08-02 Thread pohl
GWT 0.0.0 At revision 5593. I noticed that you are using a trunk build of GWT here. Do you believe this is a necessary step in getting this to work? Also, does this mean that it is the new OOPHM that you got to work, or the legacy hosted mode? I just pre-ordered 10.6 today, and don't

Re: inject hack value when call RPC like setScore(..)

2009-08-02 Thread asianCoolz
1.u mentioned about https. even if using https, the javascript is still visible to user. therefore using firebug..etc still possible to change the value right? 2. what is the extra measurement taken by google for app like gmail and adsense written in gwt?

Re: Modelling framework

2009-08-02 Thread Jeff Chimene
Hi Kaspar, I found some javascript +XML libraries out there. My issue was that none of them really modeled the questionnaire I was asked to build. I rolled my own using GWT+XML. It isn't that difficult. Once I had the DTD, the survey designer could use that DTD in an XML aware editor to create

Eclipse 3.5 Plugin

2009-08-02 Thread dougx
For anyone who missed the memo. http://code.google.com/eclipse/docs/install-eclipse-3.5.html ~ Doug. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

MapBasedValueModel and GWT1.7 binding

2009-08-02 Thread ajaxDeveloper
Hi, I had developed my MapBasedValueModel for my swing applications. As it is MapString, Object based I was wondering that it might possible that I can use it with GWT by using some wrapper or GWT event model. I am not able to understand first of all how can I access these files as they are in

Re: How does cooiked be transfered?Where is that cookies be hold when being tranfered to client?

2009-08-02 Thread Alex Luya
Hello,Nathan Actually,we can set cookies into response,try this: -- package com.ts.test.server; import javax.servlet.http.Cookie; import

How to insert a static content from html into div placeholder?

2009-08-02 Thread sandlex
Hello. I need to accomplish a trivial task but I don't have any hints. I have a prototype of two-pages web-site and trying to implement a simple menu allowing to switch between these two pages. I'm trying to do it in a such way: In my application starting html file I have two divs (placeholders)

hostes mode without database access?

2009-08-02 Thread Anton
Hi! I just started with GWT some hours ago, and I have allready a full functional web application :) The only issue is, that I can not use hosted mode (which would be great for development) when I have to access the database: [code] Caused by: java.net.SocketException:

GWT Hosted Mode Schriftgrößen Problem

2009-08-02 Thread Julia_HD
Hallo, ich versuche mich seit einigen Wochen an GWT und bin an sich sehr begeistert. Bisher lief alles und meine Anwendung ist auch soweit fertig, nur habe ich heute beim Testen (im Hosted Mode) irgendein Tastaturkürzel gedrückt, sodass die Oberfläche komplett vergrößert ist. Der Style, den ich

Creation of Exception Object causes undesired throw

2009-08-02 Thread Enmanuel Rivera
I am simply creating an exception object but not throwing it. Storing it for later use. When I try to run this code (hosted mode) the runtime complains that the exception has been thrown from this location. Yet there is no *throw* keyword used. Simply creation of an exception object and

Error message on 64 bit system

2009-08-02 Thread ubuntu_user
Hi All, I installed GWT using Eclipse 3.5. Tried to create the first blank app and I got this message when I ran it: Exception in thread main java.lang.UnsatisfiedLinkError: /myHome/bin/ eclipse/plugins/ com.google.gwt.eclipse.sdkbundle.linux_1.7.0.v200907291526/gwt-

Font-Size in Hosted Mode

2009-08-02 Thread Julia_HD
Hi everyone, first sorry, if someone reads the same in German - I'm new to Google Groups (and GWT), and posted the message in a wrong group before :( I am finished with my last Web App today and in the last weeks everythings worked fine. Today...when I run the testings in Hosted Mode, all my

Re: Font-Size in Hosted Mode

2009-08-02 Thread Jeff Chimene
On Sun, Aug 2, 2009 at 5:49 AM, Julia_HDjulia.tscherkasch...@gmx.de wrote: Hi everyone, first sorry, if someone reads the same in German - I'm new to Google Groups (and GWT), and posted the message in a wrong group before :( I am finished with my last Web App today and in the last weeks

Re: Error message on 64 bit system

2009-08-02 Thread Anton
Hi! Not for hosted mode. (see http://code.google.com/intl/de-DE/webtoolkit/gettingstarted.html - the note for Mac users at the top). I am on am Mac and have to use an old Java version because 1.6 is only available in 64 bit on the Mac... Anton

Re: hostes mode without database access?

2009-08-02 Thread Anton
I found it tonight: Do NOT use the Google App Engine (in the properties) if you use anything other ;) --~--~-~--~~~---~--~~ 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: Error message on 64 bit system

2009-08-02 Thread Jeff Chimene
On Sun, Aug 2, 2009 at 7:24 AM, ubuntu_usertie...@tiennguyen.net wrote: Hi All, I installed GWT using Eclipse 3.5. Tried to create the first blank app and I got this message when I ran it: Exception in thread main java.lang.UnsatisfiedLinkError: /myHome/bin/ eclipse/plugins/

[gwt-contrib] [INFO] A new version of GWT (1.7.0) is available

2009-08-02 Thread Eric B. Ridge
I'm a random lurker who recently started using GWT 1.6. Since 1.7 was released (to which I have not yet upgraded), I now see this in the hosted mode log window: [INFO] A new version of GWT (1.7.0) is available Without trying to be argumentative, is it really necessary for a supporting

[gwt-contrib] Async interface black magic

2009-08-02 Thread jd
Hi, I am just getting started on GWT and one of the things that strikes me is the amount of error prone black magic involved in creating an Async interface. Sure tools can help you keep it in sync with your Service interface but something seems wrong with it. This may be naive but I was