Re: Custom map

2010-09-17 Thread chinese
It seems to be pretty! I'll try and then I'll communicate my results. Thanks a lot. Bye! On 15 Set, 15:44, Mikael Couzic wrote: > I heard some guys did pretty crazy stuff with OpenLayers, like Tetris- > style games. So I guess displaying an image in background and some > clickable geometries and

Re: Can we run selenium tests in GWT dev mode?

2010-09-17 Thread Andrey
That doesn't work. My question is: how should we run selenium in dev mode? On Sep 16, 6:13 pm, András Csányi wrote: > On 16 September 2010 16:07, Andrey wrote: > > > Or we should compile the app first? > > I think you can run the test because dev mode uses the browser. > Basicly you can see in t

GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread AlexG
Hi @ all, On the Google GWT homepage, I found the GWT-Designer, ready to download. I just want to inform you, that it seems to be available. It´s OpenSource now, so have fun trying it. Greets Alex -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit"

Frame border problem in IE8

2010-09-17 Thread HenrikA
Making HTML content blend into your application using Frames worked well inn all browsers except IE8 (and older ?) where getting rid of the frame borders turned out to be quite tedious. We first resolved it by creating our own IFrame widget, but then resolved it by just extending the Frame class.

Using the same object at the server and client

2010-09-17 Thread Janko
Hi! I am trying to modify the stockwatcher example (http://code.google.com/ webtoolkit/doc/latest/tutorial/appengine.html#data) that the getStocks() in StockServiceImpl.java would return a list of Stocks object defined in com.google.gwt.sample.stockwatcher.server. I am having problems with using

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
Yeah its a great opensource tool launched by Google. Fun using it. makes client side's job easier than before. I think this would be a great answer for all those questions which were raised in the past about GWT's future. Google is thinking about GWT and making it more and more easier to use. Cheer

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread Jaroslav Záruba
Hopefully it will help making the out-of-the-box widget library a little bit richer. :) On Fri, Sep 17, 2010 at 12:45 PM, aditya sanas <007aditya.b...@gmail.com>wrote: > Yeah its a great opensource tool launched by Google. > Fun using it. > makes client side's job easier than before. > I think th

Re: Frame border problem in IE8

2010-09-17 Thread Thomas Broyer
On Sep 17, 11:13 am, HenrikA wrote: > Making HTML content blend into your application using Frames worked > well inn all browsers except IE8 (and older ?) where getting rid of > the frame borders turned out to be quite tedious. > > We first resolved it by creating our own IFrame widget, but then

Re: Using the same object at the server and client

2010-09-17 Thread Janko
PS: I get the "did you forget to inherit a required module" error.. -- 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 go

Re: Using the same object at the server and client

2010-09-17 Thread Brett Thomas
I think you need to move the stock class from the .server. package to .shared. so the client knows about it On Fri, Sep 17, 2010 at 7:09 AM, Janko wrote: > PS: I get the "did you forget to inherit a required module" error.. > > -- > You received this message because you are subscribed to the Goo

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Ji Janko, yes you get this Error Message, if the client doesn´t know the source-code of the object. As Brett said, move it to the shared package. Note: You can´t use persisted classes on the client. But in the StockWatcher example there nothing is persisted, so moving your class to the shared pac

Re: Using the same object at the server and client

2010-09-17 Thread Janko
Thank you for the quick response. I now get the 13:25:23.531 [ERROR] [homework] Line 9: The import com.google.appengine cannot be resolved Line 9 is: import com.google.appengine.api.users.User; I found I need probably inherit it... in what way? what do I need to do? On Sep 17, 1:13 pm, Brett Th

Re: GWT Eclipse Project not always updating classes

2010-09-17 Thread AlexG
Hi Samuru, maybe you have two instances of your App running? This could be one reason. Make sure, that you close all instances, then clean your project, and retry. The classes in the war/WEB-INF directory are only classes in your server package. Maybe they should be re-enhanced?? You can also tr

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread aditya sanas
here is the link for the reference - http://code.google.com/webtoolkit/tools/gwtdesigner/features/gwt/smartgwt.html -- Aditya 2010/9/17 Jaroslav Záruba > Hopefully it will help making the out-of-the-box widget library a little > bit richer. :) > > On Fri, Sep 17, 2010 at 12:45 PM, aditya sanas

Re: GWT Designer available on Google GWT-Homepage :-)

2010-09-17 Thread Jaroslav Záruba
That's exactly the framework that made me running back to GWT's native components. On Fri, Sep 17, 2010 at 1:33 PM, aditya sanas <007aditya.b...@gmail.com>wrote: > here is the link for the reference - > > http://code.google.com/webtoolkit/tools/gwtdesigner/features/gwt/smartgwt.html > -- > Aditya

Re: Using the same object at the server and client

2010-09-17 Thread Janko
Hi Alex and Thomas. This is really fast:D I guess the Stock.java is persisted: --- @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Stock { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private User user; @P

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Hi again, do you have the App-Engine-Library on your classpath? It seems, that your App is missing this library. Greets On 17 Sep., 13:30, Janko wrote: > Thank you for the quick response. > > I now get the 13:25:23.531 [ERROR] [homework] Line 9: The import > com.google.appengine cannot be reso

Re: Using the same object at the server and client

2010-09-17 Thread AlexG
Ji Jakob, yes this is a persisted class. The jdo-annotations, tells datanucleus to persist this in the datastore. Yea, I´m sorry but you got me right. I ran into this too, when I started to work with GWT and GAE. The solution is quite simple, you already said it. Make a so called: "DataTransferOb

GWT and concurrency

2010-09-17 Thread Johannes Lehmann
Hi, here is something that has been puzzeling me (and that may just be because I have misunderstood something trivial): I have read that JavaScript interpreters are usually single threaded. A page on supported language features seems to imply that for this reason, GWT doesn't not honor the synchro

Re: gwt-maven-plugin: include files from src/main/test for gwt:debug

2010-09-17 Thread Thalles
Thanks, I'll have a look at this. Bye Henry On Sep 16, 4:55 pm, Hilco Wijbenga wrote: > On 16 September 2010 06:18, Thalles wrote: > > > Does anybody have an idea? Thanks in advance! > > http://mojo.codehaus.org/build-helper-maven-plugin/index.htmlis > probably what you need. -- You received

Gettting an error when the app starts

2010-09-17 Thread harjit.singh
Hi there, When I try to run the app which is compiled in Gwt 2.0 in IE 8 I keep getting this exception quiet a lot. If I run the same app in Firefox, I don't see the error. Here is a stack trace 08:32:38.251 [ERROR] [gwebtop] Uncaught exception escaped java.lang.ExceptionInInitializerError: nul

Re: How to supply bindAddress

2010-09-17 Thread Nairutee
If you are using an Eclipse IDE, i) you will need to have the latest GWT plugin for Eclipse http://code.google.com/eclipse/docs/getting_started.html . ii) In the Run / Debug configurations in the arguments tab you will need to provide -bindAddress 0.0.0.0 (0 should be replaced by the ip you wish

GWT Complier OutOfMemory issue

2010-09-17 Thread lin.liang
The OutOfMemory exception always happen when the gwt project was complied. The gwt project has 7 modules, and about 5,700 java files. I have a look at gwt docs. It said that when the project became bigger, the complier using the memory more too. However, I have set the memory to 1.7G, it still rep

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Helder Suzuki
+1 On Aug 4, 9:17 am, André Moraes wrote: > Hi, > > I saw the presentation of the GWT team and they talked about sending the > permutation without sending first the selection script. > > I can read the HTTP headers and find-out what is the browser which is making > the request, this is the "easy"

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-17 Thread Eric Clayberg
Anything prior to GWT 2.1M3 does not support the GWT Designer hooks required to provide WYSIWYG editing of UiBinder components. You need at least GWT 2.1M3 for visual editing, and even newer to also support the ui:field attribute and the @UiField annotation. The missing UiBinder template file is a

Re: GWT and concurrency

2010-09-17 Thread Thomas Broyer
On Sep 17, 2:17 pm, Johannes Lehmann wrote: > Hi, > > here is something that has been puzzeling me (and that may just be > because I have misunderstood something trivial): I have read that > JavaScript interpreters are usually single threaded. A page on > supported language features seems to imp

Re: Gettting an error when the app starts

2010-09-17 Thread Thomas Broyer
On Sep 17, 2:37 pm, "harjit.singh" wrote: > Hi there, > > When I try to run the app which is compiled in Gwt 2.0  in IE 8 I keep > getting this exception quiet a lot. If I run the same app in Firefox, > I don't see the error. Here is a stack trace > > 08:32:38.251 [ERROR] [gwebtop] Uncaught exce

Re: GWT and concurrency

2010-09-17 Thread Johannes Lehmann
OK, that is basically what I assumed. This however seems to create concurrency issues, which the synchronized keyword was designed to address. Without any language support such as semaphores or mutexes and without any guarantees regarding preemption, how could I solve a problem such as the above?

Re: Return permutation directly from the server without selection script.

2010-09-17 Thread Etienne Lacazedieu
I wrote such a Linker : /** * This GWT linker creates a properties file which can be used to resolve Permutation Strong name given UserAgent and locale. * * @author Etienne Lacazedieu * */ @LinkerOrder(Order.PRE) public class StrongNameOracleLinker extends AbstractLinker { public static f

Re: de-mavenize a project

2010-09-17 Thread Brad
Just grab the GWTUpload jar and add it to your classpath. On Sep 16, 12:20 pm, John wrote: > A few weeks ago I was interested in GWTUpload, and I wanted to install > it on Eclipse.  I saw the project maintainer had written: > > The project has been mavenized,... > > Well, over the past couple of

Re: GWT Complier OutOfMemory issue

2010-09-17 Thread Chris Conroy
That should be more than enough memory to run your compile. Do you have a stack trace for the OOME? FWIW, I have a pending change that should decrease the amount of memory needed to run a compile or DevMode. On Fri, Sep 17, 2010 at 7:19 AM, lin.liang wrote: > The OutOfMemory exception always ha

Re: de-mavenize a project

2010-09-17 Thread olivier nouguier
Or learn maven ;) More seriously, you can easy "de mavenize" aproject, but maven will help you: - mvn dependency:copy-dependencies will copy all dependencies in a folder target/dependency Then you'll just have to add those lib in your build classpath. - mvn eclipse:clean eclipse:ecli

Re: plugin failed to connect to hosted mode server at 127.0.0.1:9997

2010-09-17 Thread consutes
Hi bouadma abderrazak, are you found the solution? -- 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-tool

Re: GWT Designer & Custom widgets

2010-09-17 Thread Eric Clayberg
Definitely, yes! Here are some relevant docs... http://code.google.com/webtoolkit/tools/gwtdesigner/wizards/gwt/composite.html http://code.google.com/webtoolkit/tools/gwtdesigner/features/custom_composites.html On Sep 16, 2:20 pm, "marius.andreiana" wrote: > Hi, > > It it possible to use custo

Re: GWT and concurrency

2010-09-17 Thread Thomas Broyer
On Sep 17, 4:13 pm, Johannes Lehmann wrote: > OK, that is basically what I assumed. This however seems to create > concurrency issues, which the synchronized keyword was designed to > address. Without any language support such as semaphores or mutexes > and without any guarantees regarding preem

Re: Google Releases Instantiations Development Tools, Free Of Charge

2010-09-17 Thread Eric Clayberg
We are working hard on UiBinder support and some preliminary support is in the current release (requires GWT 2.1M3 or better). On Sep 16, 1:41 pm, chiappone wrote: > http://googlewebtoolkit.blogspot.com/2010/09/google-relaunches-instan... > > This seems like good news, curious if people have used

Re: Frame border problem in IE8

2010-09-17 Thread HenrikA
On Sep 17, 1:01 pm, Thomas Broyer wrote: > On Sep 17, 11:13 am, HenrikA wrote: > > > Making HTML content blend into your application using Frames worked > > well inn all browsers except IE8 (and older ?) where getting rid of > > the frame borders turned out to be quite tedious. > > > We first r

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread marius.andreiana
On Sep 17, 8:45 am, Sunny wrote: > In step 2, on the server, using gwt can I make REST API calls to > server B in domain B? Yes. On server/domain A you have * gwt compiled files, including project_nocache.js * assets such as css/images * container.html which loads domainb.com/project.html in an i

Re: Development Mode performance with Chrome

2010-09-17 Thread Michael Kelley
Speaking of other browsers, has anyone successfully gotten a GWT plugin for Firefox 4.0 to work? On Sep 16, 10:13 am, PhilBeaudoin wrote: > I echo these thoughts. Chrome is easily my favorite browser for > everything but testing my GWT apps in dev mode. > > On Sep 16, 6:04 am, Sean wrote: > > >

Re: GWT Complier OutOfMemory issue

2010-09-17 Thread jocke eriksson
I had this trouble but my project was very small, but my solution was to divide my clientbundles to smaller ones. processing lots of images can consume very much memory. 2010/9/17 Chris Conroy > That should be more than enough memory to run your compile. Do you have a > stack trace for the OOME?

Custom Widget Creation - use widgets or elements?

2010-09-17 Thread Falcon
Hey all, I'm creating my own version of a TabPanel that works in standards mode and doesn't require one of the layout panels so that the content area can take up just the amount of space needed for the content inside. I have a panel container (which is a div), tab bar (a ul or ol), and tab conten

[ERROR] [gmn] Unable to find 'gmn.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

2010-09-17 Thread ziv
hey everybody, I am new to gwt programing, and I could really use some help.. I have been writing a GWT application with eclipse. I have a GMN.JAVA that has a class that I created. and I keep getting this error, what is the problem here? a little about my hierchy: GMN/src/com/gmn/ui/client/GMN.j

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread Sunny
Thanks but I need more clarification so let me rephrase my question which is server/domain A has its own portal developed using GWT and server/domain B is not GWT generated code and needs to exposes a API to do CRUD operations from server/domain A so my question is if the API on server/domain B is

Re: Development Mode performance with Chrome

2010-09-17 Thread Chris Conroy
FF4 is not yet supported, but it will be soon. On Fri, Sep 17, 2010 at 12:33 PM, Michael Kelley wrote: > Speaking of other browsers, has anyone successfully gotten a GWT > plugin for Firefox 4.0 to work? > > On Sep 16, 10:13 am, PhilBeaudoin wrote: > > I echo these thoughts. Chrome is easily my

Re: REST vs SOAP for calls to remote server

2010-09-17 Thread Jeff Chimene
You're using the term "server/domain", perhaps that muddies the waters. You might want to make the request from the client to server A. Server A then makes a request of Server B. Server A collects the answer and forwards/reformats it for the client. For example, server A is a custom application,

Re: Gettting an error when the app starts

2010-09-17 Thread harjit.singh
I don't think the issue is related to 4584. I did try to see and check the IE8 mode. It was running in IE7 Standars mode. I changed it to IE8 mode and now I get this java.lang.NoClassDefFoundError: null at com.google.gwt.user.client.ui.PopupPanel.setState(PopupPanel.java: 1387) at com.go

Re: GWT Designer & Custom widgets

2010-09-17 Thread markM
What's the code that it's producing look like though? That's been the problem with UI designers in the past is that the code they output is generally not readable by humans. I haven't checked it out yet but maybe this weekend. On Sep 16, 2:25 pm, Kasper Hansen wrote: > I'm building visual compo

Reverse proxy problem once again

2010-09-17 Thread pete
Hallo, I've looked around several hours to solve this problem, but I just can't figure it out (even though I find many similar posts and tips about it). The set up is quite simple, I have my GWT-Module running at http://localhost:8080/bla and if I address it like this, everything runs fine. I furt

Re: GWT designer error - Unable to open file /templates/Composite.jvt from UiBinder

2010-09-17 Thread marius.andreiana
Thanks Eric! On Sep 17, 4:41 pm, Eric Clayberg wrote: > Anything prior to GWT 2.1M3 does not support the GWT Designer hooks > required to provide WYSIWYG editing of UiBinder components. You need > at least GWT 2.1M3 for visual editing, and even newer to also support > the ui:field attribute and t

EventBus and HandlerManager Classes. Difference?

2010-09-17 Thread Ashton Thomas
I am confused as to when use the abstract class EventBus class that implements HasHandlers: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/event/shared/EventBus.java and the class HandlerManager that also implements HasHandlers: http://code.google.com/p/goo

An Updated GWT Designer Tutorial

2010-09-17 Thread Chad Lung
I'm posting this in the GWT Group simply because not everyone is aware of the GWT Designer forum yet ( http://forums.instantiations.com/viewforum.php?f=11 ). I have written an updated version of my prior tutorial using the GWT Designer, you can find it here: http://giantflyingsaucer.com/blog/?p

Re: An Updated GWT Designer Tutorial

2010-09-17 Thread Jaroslav Záruba
Now when GWT Designer is in Google portfolio, wouldn't it make sense to have mailing list for it, as all Google products/services have? I personally find emails way more comfortable compared to forums. On Fri, Sep 17, 2010 at 9:10 PM, Chad Lung wrote: > > I'm posting this in the GWT Group simply

Re: An Updated GWT Designer Tutorial

2010-09-17 Thread Jeff Chimene
Yes. However, there's a lot of stored wisdom at that URL. Thanks for the pointer. 2010/9/17 Jaroslav Záruba > Now when GWT Designer is in Google portfolio, wouldn't it make sense to > have mailing list for it, as all Google products/services have? > I personally find emails way more comfortable

Re: plugin failed to connect to hosted mode server at 127.0.0.1:9997

2010-09-17 Thread Rajeev Dayal
Look at your c:\Windows\system32\drivers\etc\hosts file. What do the entries look like in there? On Fri, Sep 17, 2010 at 11:20 AM, consutes wrote: > > > Hi bouadma abderrazak, > > are you found the solution? > > > -- > You received this message because you are subscribed to the Google Groups > "

Re: GWT Eclipse Project not always updating classes

2010-09-17 Thread Rajeev Dayal
Can you expand on what you mean? How do you know that it puts the "old" classes back there? On Fri, Sep 17, 2010 at 7:33 AM, AlexG wrote: > Hi Samuru, > > maybe you have two instances of your App running? This could be one > reason. > Make sure, that you close all instances, then clean your proj

Correct way to use code modules

2010-09-17 Thread Greg Dougherty
I have objects from an external package that I need to use both client side and server side. I added the package to my eclipse project, which took care of the server side, and I created a Module.gwt.xml file to export those classes to the client side. No problem. Except for one thing: Every time

Re: Correct way to use code modules

2010-09-17 Thread Jaroslav Záruba
On Fri, Sep 17, 2010 at 10:01 PM, Greg Dougherty wrote: > I have objects from an external package that I need to use both client > side and server side. I added the package to my eclipse project, > which took care of the server side, and I created a Module.gwt.xml > file to export those classes

Re: EventBus and HandlerManager Classes. Difference?

2010-09-17 Thread Thomas Broyer
On Sep 17, 9:05 pm, Ashton Thomas wrote: > I am confused as to when use the abstract class EventBus class that > implements > HasHandlers:http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/... > > and the class HandlerManager that also implements > HasHandlers:http://code.goog

Re: Correct way to use code modules

2010-09-17 Thread Greg Dougherty
That would be the answer. Yes, it was (I had no idea that Property existed), no, it isn't any longer, and now GWT doesn't try to compile it as such. Thank you! Greg On Sep 17, 3:11 pm, Jaroslav Záruba wrote: > On Fri, Sep 17, 2010 at 10:01 PM, Greg Dougherty > > wrote: > > I have objects from

Re: de-mavenize a project

2010-09-17 Thread John
On Fri, Sep 17, 2010 at 11:06 AM, olivier nouguier wrote: > Or learn maven ;) There are s many interesting things to learn, rails, groovy, python, and on and on. It's hard to justify taking time to learn something that solves problems you don't have. > More seriously, you can easy "de mave

Re: de-mavenize a project

2010-09-17 Thread Thomas Broyer
On Sep 18, 12:10 am, John wrote: > On Fri, Sep 17, 2010 at 11:06 AM, olivier nouguier > > wrote: > > Or learn maven ;) > > There are s many interesting things to learn, rails, groovy, > python, and on and on.  It's hard to justify taking time to learn > something that solves problems you do

Re: GWT Designer & Custom widgets

2010-09-17 Thread Eric Clayberg
The generated code looks great! ;-) It is also highly configurable, so that you can adapt it to almost any style you want. Here's an example of all of the code gen options for GWT Designer... http://code.google.com/webtoolkit/tools/gwtdesigner/preferences/gwt/preferences_code_generation.html The

Re: de-mavenize a project

2010-09-17 Thread John
On Fri, Sep 17, 2010 at 4:06 PM, Thomas Broyer wrote: > If it's just about *using* GWTUploader, isn't it just a matter of > downloading the JAR (it's in the download section) and putting it in > your classpath/build path? (and probably commons-upload on the server- > side, maybe other dependencies

GWT 2.1 M3

2010-09-17 Thread gopal bhalala
Hi to all, any simple example of data presentation widget of GWT 2.1 M3 Best Regards & Thanking you, Gopal Dhanjibhai Bhalala -- 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...@googleg