Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
Naw - the small connection limit (usually two) is per page. I forget how much IE defaults to, but Firefox allows up to something like 32 simultaneous connections. So push would still be an option. On Thu, Apr 16, 2009 at 6:39 PM, Arthur Kalmenson arthur.k...@gmail.com wrote: I'd venture to

Re: How to add close button to DialogBox title bar

2009-04-17 Thread alex.d
This question was already answered in this group. Please use search. On 17 Apr., 07:17, Tail jft...@gmail.com wrote: How to add close button to DialogBox title bar? DialogBox dialog = new DialogBox(); dialog .setHTML(divspan style='float:right;cursor: pointer;' onclick='alert(3)'

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread alex.d
Firebug is a great tool - but using OOPHM??? Is it ready? Imho it's ten times easier just to click Compile/Browse in the hosted-mode- browser and your page will be opened in Firefox if it's default browser - if not you can just copy the link and open it in FF manually. hth On 17 Apr., 06:36,

Re: SMart GWT API

2009-04-17 Thread Shawn Brown
I am new to smart GWT i need the API for this try http://lmgtfy.com/?q=smartGWT+api --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Additional method suggestions for ListBox

2009-04-17 Thread Rasit OZDAS
Hi, I think these methods will be a little bit improvement over ListBox: (All about direct label-value access, assuming user has unique list of labels and values. Useful when user knows what he/she is doing) addItems(String[] labels) addItems(String[] labels, String[] values) // I'm not sure

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread hezjing
Hi Here are my .gwt.xml and HTML, both are generated by webAppCreator except that I added two source paths in .gwt.xml: - Start of .gwt.xml ?xml version=1.0 encoding=UTF-8? !DOCTYPE module PUBLIC -//Google Inc.//DTD Google Web Toolkit 1.6.3//EN

Re: Clearing history token ver html or native javascript without reloading page?

2009-04-17 Thread Darkflame
Still having trouble with this. Anyone got any ideas? Either what html is needed to make a bookmark that dosnt refresh IE, or native javascript that would clear the history token. (or well, set it to anything). On Apr 11, 11:27 am, Darkflame darkfl...@gmail.com wrote: Just to clarify my

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread Vitali Lovich
I had no problems with it. It works beautifully. Compiling can take quite a while (even on my desktop took like 20 seconds) wheras hosted mode doesn't have the same overhead ( you can modify your code on the fly). On Fri, Apr 17, 2009 at 2:13 AM, alex.d alex.dukhov...@googlemail.comwrote:

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread Vitali Lovich
I'm assuming you have a file called shop.css in the same directory as shop.html? What platform are you on? On Fri, Apr 17, 2009 at 2:46 AM, hezjing hezj...@gmail.com wrote: Hi Here are my .gwt.xml and HTML, both are generated by webAppCreator except that I added two source paths in

Re: How to add close button to DialogBox title bar

2009-04-17 Thread kumarsri
HI., try adding a click listener, (For SMART_GWT also..) Which ll do a close by clicking he dialog Dialog dias=new Dialog(); dias.setTitle(); dias.setSize(500, 400); dias.addClickHandler(new ClickHandler(){ public void onClick(ClickEvent event) { dias.hide(); } }); On Apr 17,

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
I'm going to guess that GMail polls. I took a look at the requests that GMail makes with Firefox's Live HTTP headers when not actively interacting with GMail. It seems to: 1.) Make one GET request roughly once every 30 seconds. 2.) Make one POST request roughly once every 30 seconds (although

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread hezjing
Hi Vitali, I'm testing on Windows XP. Here is the ProductPanel extends DecoratorPanel. This class will populate the product details into the ProductPanel before adding it into the HorizontalPanel: class ProductPanel extends DecoratorPanel { ProductPanel(Product product) {

Re: GWT EJB

2009-04-17 Thread pepusz
You can easealy use your ejb like in the servlet. Simple create a referance into the gwt.server someServiceImpl @EJB private yourEjbRemote/local yourEjbname; after this you can call this ejb from the servlet method public String hello(String s) { // Do something interesting with 's'

GWT 1.6 with JETTY problem

2009-04-17 Thread Tail
When I user google plugin for eclipse dev application,run host mode in jetty. when some exception occur on server end, but no messages print on console, how to let errors print out on console? --~--~-~--~~~---~--~~ You received this message because you are

Re: Maven2 + Eclipse + GWT

2009-04-17 Thread Salvador Diaz
I'm new to all this so take what I have to save with a heap of salt, but have you considered dropping Maven for now? There's a pretty steep learning curve for learning how to use maven and understanding the principles behind how it works so it might not be for the hobbyist trying to piece

Re: GWT Serialization with CustomFieldSerializer fails because of SerializationPolicy

2009-04-17 Thread Vitali Lovich
Hasn't been accepted - just opened. Anyone can open issues against GWT. That being said, I think there could be room for improvement. For instance, if you specify a serializable interface or serializable abstract class, you should be allowed to enumerate all the various types that can possibly

Re: gwt application out of date problem - please help

2009-04-17 Thread Salvador Diaz
I suggest you empty your browser cache, it happens to me quite often. What platform are you on ? Hope it helps, Salvador On Apr 17, 7:05 am, Joe Hudson joe...@gmail.com wrote: I have changed the signature of an RPC service interface (and then changed the async interface and the

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
I think that I'm going to have to take back a lot of my prior message. It seems like the Live HTTP headers extension does not correctly order hanging requests. The extension always seems to place a response after a request if they occur close to one another; either that, or I am misreading the

Re: GWT position - NYC

2009-04-17 Thread eggsy
If only I lived in NY (and was American) :( Eggsy On Apr 16, 8:30 pm, Ed ewins...@gmail.com wrote: Hi, my client has an exciting opportunity to redo their user interface with GWT, and is looking for someone with strong expertise, leadership and a passion for GWT. If you are interested

Re: Clearing history token ver html or native javascript without reloading page?

2009-04-17 Thread Salvador Diaz
* Create a class that extends DialogBox * In your constructor, hack away the caption through DOM calls * Create the widget that you want to add to the caption (it must implement SourcesMouseEvents if you want to be able to drag the dialog) * Attach your new widget to the dialog through DOM calls

Re: how to make gwt eclipse plugin compiler see other projects

2009-04-17 Thread Salvador Diaz
Add the other project to the classpath instead of adding the jar On Apr 17, 7:10 am, Joe Hudson joe...@gmail.com wrote: Hi, I have a separate eclipse project containing code used on the server- side of the RPC.  When I use the google plugin to recompile my GWT app, I get the error messages

Re: Clearing history token ver html or native javascript without reloading page?

2009-04-17 Thread Darkflame
Thanks for your help :) It would be nice to get back to a gwt solution, rather then having mess bits of native. My widget already extends DialogBox; Replaceing my; this.setHTML(div class=\captiontext\ - Post a new review - / diva href=\#\div onclick=\closeDialog()\ class=\closeimage \/div/a);

GWT RPC filter

2009-04-17 Thread dialloma
Hello group, I would like to implement the method or class that will be called before each GWT-RPC. Is there any method in GWT to do that ? I was trying to implement J2EE Filter on GWT server side. But when I throw Exception in my filter throws Exception but my GWT-RPC call return success. Is

Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
Thank you - that's exactly the kind of analysis I was too lazy to do :D. On Fri, Apr 17, 2009 at 4:02 AM, Tony Strauss tony.stra...@designingpatterns.com wrote: I think that I'm going to have to take back a lot of my prior message.  It seems like the Live HTTP headers extension does not

GWT combined with Grails,JSF or other server side technology

2009-04-17 Thread Paul van Hoven
I developped a gwt app. But now, i need an appropriate server backend. Therefore, i tried grails but it really isn't that good. First of all it seems to be extremly buggy, secondly it has no good ide support (except intellij = 249$) and finally it provides no gwt support although there exists a

Re: GWT combined with Grails,JSF or other server side technology

2009-04-17 Thread Salvador Diaz
For us it's Spring + Hibernate. But it clearly depends on the needs of your application. What does it do ? On Apr 17, 11:45 am, Paul van Hoven paul.van.ho...@googlemail.com wrote: I developped a gwt app. But now, i need an appropriate server backend. Therefore, i tried grails but it really

Re: Does gmail use GWT?

2009-04-17 Thread alex.d
I'm sorry guys but what is exactly server-push you are talking about? There can't be such thing as server-push in a pure html/ javascript world because http doesn't implement it. Applets (java, active-x, flash etc) can do that. But in the GWT world it's still the old good polling. Even if it's a

Re: GWT combined with Grails,JSF or other server side technology

2009-04-17 Thread Paul van Hoven
It is a web site for mobile devices and desktop pcs. 1. It is absolutly important that opera mini is supported, that means that ajax and gwt will not work on this device since it isn't supported completly. Therefore i need classic mvc stuff and server side generated web pages. 2. For other

Re: Does gmail use GWT?

2009-04-17 Thread Salvador Diaz
http://lmgtfy.com/?q=javascript+server+push http://lmgtfy.com/?q=comet On Apr 17, 12:12 pm, alex.d alex.dukhov...@googlemail.com wrote: I'm sorry guys but what is exactly server-push you are talking about? There can't be such thing as server-push in a pure html/ javascript world because http

Re: Deploying GWT applications on OSGi Equinox

2009-04-17 Thread lan
Hello. Sorry for being too late to respond. Yes I've seen this, I tested a simple web page and a simple servlet on embedded Jetty using extension points. And no I'm not from the UK, I'm from Tunisia :) On 11 avr, 02:11, Geoffry Roberts geoffry.robe...@gmail.com wrote: Ian, Did you see how

Re: Does gmail use GWT?

2009-04-17 Thread alex.d
Thx Salvador, that makes a few things clearer (i didn't know about multipart/x- mixed-replace-header for example) but anyway - technically there are two possibilities to implement non-applet-server-push and they both include a poll-request that just never ends. But i guess you can see it as

Re: Maven2 + Eclipse + GWT

2009-04-17 Thread Charlie Collins
Your'e not using the GWT-Maven plugin and the archetype there, you are using some net.sf.mgp:maven-gwt-plugin plugin (which I haven't heard of). Try actually using GWT-Maven itself (http://code.google.com/p/gwt- maven/) or use the Codehaus Maven GWT plugin -

Re: GWT combined with Grails,JSF or other server side technology

2009-04-17 Thread Leon
Hi Paul, If I were you I would not discount Grails so quickly. Despite there are issues with Grails GWT plugin you can go for example with GWT + REST backend combination. In my opinion using Grails is much easier then coding in Java with any other common MVC type framework. I heard NetBeans IDE

Re: Clearing history token ver html or native javascript without reloading page?

2009-04-17 Thread Salvador Diaz
Thanks for your help :) You're welcome It would be nice to get back to a gwt solution, rather then having mess bits of native. Well, DOM is a GWT class, so I consider my solution to be pure GWT :) Plus the widget handling the History change will be also pure GWT My widget already extends

Re: inline Hyperlink as part of a sentence -- spacing is getting battered by IE 6

2009-04-17 Thread Jeoff Wilks
Very true; when I use InlineHyperlink it does render without a div: span class=gwt-InlineHTMLYou may /spana href=#item1 class=gwt-InlineHyperlinkItem 1/aspan class=gwt-InlineHTML now if you like./span That markup, when placed alone in a test page along with my stylesheets, does show the proper

Re: how to make gwt eclipse plugin compiler see other projects

2009-04-17 Thread Joe Hudson
Thank you Salvador for your reply, I am have tried that (I think) and that was when I experience described above. Please let me explain how I am doing that because maybe I am doing something wrong: 1) Open the Run Configurations menu 2) Select my target under Web Application (with the google

Re: gwt application out of date problem - please help

2009-04-17 Thread Joe Hudson
Do you, by any chance, know how to clear the cache in the Google Web Toolkit Hosted Mode browser? It looks like to be embedded IE but there isn't a normal menu. Thanks Salvador, Joe On Apr 17, 3:46 am, Salvador Diaz diaz.salva...@gmail.com wrote: I suggest you empty your browser cache, it

Re: how to make gwt eclipse plugin compiler see other projects

2009-04-17 Thread Salvador Diaz
Try adding the source folders directly to the classpath (remember that GWT needs the java source to all the objects that will be compiled to javascript) because I think that adding the project just adds the default output folder to your classpath: 1) Open the Run Configurations menu 2) Select my

Re: gwt application out of date problem - please help

2009-04-17 Thread Salvador Diaz
Yes, if you're on windows you'll have to clear your IE cache the way you normally do it on IE: right click on desktop IE icon Preferences Clear cache (that might not be the exact wording, it's been ages since I booted up windows) On Apr 17, 2:34 pm, Joe Hudson joe...@gmail.com wrote: Do

Re: Does gmail use GWT?

2009-04-17 Thread Arthur Kalmenson
Naw - the small connection limit (usually two) is per page. I forget how much IE defaults to, but Firefox allows up to something like 32 simultaneous connections. So push would still be an option. Really? I thought it was a small number of connections per browser itself. I think IE has only

Re: Does gmail use GWT?

2009-04-17 Thread Arthur Kalmenson
Nice analysis Tony! This is just speculation, but perhaps before Google Talk, GMail polled for new messages every 30 seconds. When it became necessary to support Google Talk, Google switched to server push (for both services, in order to minimize the number of browser connections that

Re: Ant problem

2009-04-17 Thread El Mentecato Mayor
If you're using eclipse (and probably most of the other IDEs), ant comes bundled with it so you can just use it. I just do this: set PATH=%PATH%;[ECLIPSE_HOME]/plugins/org.apache.ant_ [VERSION_BUILD_NUM]/bin and have ant available to run a build. On Apr 12, 4:26 am, chandrashekhar mekala

Re: 1.6 Compile problem on Mac OSX

2009-04-17 Thread Arthur Kalmenson
If Java 1.6 is required and you don't mind working off of trunk, you can use OOPHM and use Java 1.6 since there is no hosted mode. I've heard people having success with that setup. -- Arthur Kalmenson On Thu, Apr 16, 2009 at 11:03 AM, Jason Essington jason.essing...@gmail.com wrote: Java

Re: Saving Pojo object to binary format (writeObject from outputStream)

2009-04-17 Thread Arthur Kalmenson
Hi Sumit, Do you know if there are any plans to create a Gears based ORM? Maybe something that could use JPA/JDO annotations and GWT deferred binds (not sure if that's even possible)? -- Arthur Kalmenson On Thu, Apr 16, 2009 at 12:42 PM, Sumit Chandel sumitchan...@google.com wrote: Hi

Re: Clearing history token ver html or native javascript without reloading page?

2009-04-17 Thread Darkflame
Thanks again so much for your help Well, DOM is a GWT class, so I consider my solution to be pure GWT :) Plus the widget handling the History change will be also pure GWT Oh, I understood that, I was infering your solution was much better then what I had already. Anyway, I think I'm 90%

Re: GWT 1.6.4 Modifying corners of DecoratorPanel

2009-04-17 Thread hezjing
Thanks everyone, the corners are now show-up with the images specified in the CSS. Thomas is right, and I have to load the CSS from Shop.gwt.xml as shown below: module ... entry-point class='com.dummy.shop.client.Shop' / stylesheet src=/Shop.css / /module On Fri, Apr 17, 2009 at 6:05 PM,

Re: Does gmail use GWT?

2009-04-17 Thread Tony Strauss
On Apr 17, 8:51 am, Arthur Kalmenson arthur.k...@gmail.com wrote: Nice analysis Tony! This is just speculation, but perhaps before Google Talk, GMail polled for new messages every 30 seconds.  When it became necessary to support Google Talk, Google switched to server push (for both

Re: how to make gwt eclipse plugin compiler see other projects

2009-04-17 Thread Jason Parekh
Hey Joe, It looks like you're hitting an issue where the Eclipse plugin does not include a dependent project's compiled classes into the packaged WAR that is deployed to the server. We're aware of the issue and it will be fixed in a future release. There are a couple workarounds, one of which

Re: Does gmail use GWT?

2009-04-17 Thread Rvanlaak
For the scalability, Continuations got a sollution. The link downbelow has a great table wich tells more: http://docs.codehaus.org/display/JETTY/Continuations Interview about continuations http://www.artima.com/lejava/articles/continuations.html I don't know or Jetty has invented Continuations,

Re: how to make gwt eclipse plugin compiler see other projects

2009-04-17 Thread Jason Parekh
BTW, another related issue when dealing with dependent projects is ensuring GWT inheritance is defined properly. For example, imagine project A has a GWT module MA and project B has a GWT module MB. If the types in MA refer to the types in MB then MA must inherit from MB. To properly

Re: Maven2 + Eclipse + GWT

2009-04-17 Thread DaiLL
Hey thanks for all your replies. The net.sg.mgp - archetype is one of two gwt archetypes which is available at the standard maven repo. Thats the reason why i used it or tried to use ist :). The problem still exists but i've found a solution to install the project in cli and eclipse (the test

Re: Does GWT 1.6 break in Safari 4?

2009-04-17 Thread Jason Essington
I've been using GWT (both 1.5.3 and 1.6.4) with Safari 4, and haven't noticed any issues. -jason On Apr 16, 2009, at 5:42 PM, Dobes wrote: A customer of ours reported that last week (before we uploaded a new version based on GWT 1.6) he could use our app in Safari 4 beta, but this week

Eclipse EE Servers

2009-04-17 Thread Jamie
Got the new GWT 1.6, and the Eclipse plugin. Awesome. I like the new deployment layout. One thing that I think is missing, however, is integration with the WST tools. So, here is a short instruction list on how to enable it: 1. Create your new GWT project using the Eclipse plugin 2. Open up

Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
Continuations are just syntactic sugar - it has nothing really to do with performance. It just makes it easier to write the push. On Fri, Apr 17, 2009 at 11:20 AM, Rvanlaak rvanl...@gmail.com wrote: For the scalability, Continuations got a sollution. The link downbelow has a great table wich

Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
Are you sure? Even IE supports 2 concurrent connections per server. My guess would be that if you sent a Google Talk message (or e-mail) that causes a POST back to the server. If you receive a Google Talk message, I'm pretty sure the hanging get returns early (along with any e-mails probably)

Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
That's the typical way it works well enough to emulate the behaviour. If you think about it, making a hanging call until the server has data for you is not going to have that much latency unless you're getting a lot of data (in which case it's up to the server to determine how much to buffer

Re: Saving Pojo object to binary format (writeObject from outputStream)

2009-04-17 Thread Vitali Lovich
JPA might require quite a bit of support from the GWT compiler (I doubt that would be high on their priority given the lack of browsers that implement this feature at this moment). However, native Javascript does have reflection (I'm not sure if GWT exposes that through Java's reflection -

Re: GWT Test

2009-04-17 Thread Janusz Prokulewicz
Hi, thanks for quick answer. Just before I get message from you I figured out how to solve this problem. It was something with my classpath - I think I pointed too much unecessary jars and classes. When I add only required files to my classpath it works fine. Attaching gwt-dev-patch.jar doesn't

Unable to find a usable Mozilla install on Linux

2009-04-17 Thread Simon
Hello, I get this error after installing GWT. ** Unable to find a usable Mozilla install ** You may specify one in mozilla-hosted-browser.conf, see comments in the file for details.

Error downloading Google Plugin for Eclipse

2009-04-17 Thread jtaylor
Hello, I keep getting this error when I try to install the Google Plugin, etc. in Eclipse. -- An error occurred while collecting items to be installed No repository found containing: com.google.appengine.eclipse.core/ osgi.bundle/1.0.0.v200904062334 No repository found containing:

Re: java.lang.StackOverflowError with GWT

2009-04-17 Thread Gleb
Hi, I have pretty the same problem. My project successfully works in Host- mode, can be compiled and opened in Web-mode (from Host mode or by ant), but when I try to deploy it to Google App Engines by Eclipse plugin, I always get during complication time the following error: [ERROR]

Re: java.lang.StackOverflowError with GWT

2009-04-17 Thread Vitali Lovich
There's a patch on the issue that was opened up. There's another thread that discusses it. On Fri, Apr 17, 2009 at 10:57 AM, Gleb iambookmas...@gmail.com wrote: Hi, I have pretty the same problem. My project successfully works in Host- mode, can be compiled and opened in Web-mode (from

Re: Unable to find a usable Mozilla install on Linux

2009-04-17 Thread Jason Parekh
Hey Simon, Have you tried using the Google Plugin for Eclipse? It can automatically grab the GWT SDK and set up the environment. jason On Fri, Apr 17, 2009 at 11:17 AM, Simon smuwa...@gmail.com wrote: Hello, I get this error after installing GWT.

Re: Error downloading Google Plugin for Eclipse

2009-04-17 Thread Jason Parekh
Hey, Which version of Eclipse are you using? Also, which update site did you try to install from? Thanks, jason On Fri, Apr 17, 2009 at 1:12 PM, jtaylor jatto@gmail.com wrote: Hello, I keep getting this error when I try to install the Google Plugin, etc. in Eclipse. -- An error

Re: SuggestBox addFocusHandler :? (GWT 1.6)

2009-04-17 Thread Alex Rudnick
Thanks for the heads up! Looks like we just forgot to add that. Putting it in the issue tracker... Issue http://code.google.com/p/google-web-toolkit/issues/detail?id=3575 . On Fri, Apr 17, 2009 at 1:33 PM, darkflame darkfl...@gmail.com wrote: I'm updateing my code for 1.6,but having trouble

Re: SuggestBox addFocusHandler :? (GWT 1.6)

2009-04-17 Thread Darkflame
ah, nice to know I'm not going mad :) On Apr 17, 7:49 pm, Alex Rudnick a...@google.com wrote: Thanks for the heads up! Looks like we just forgot to add that. Putting it in the issue tracker... Issuehttp://code.google.com/p/google-web-toolkit/issues/detail?id=3575. On Fri, Apr 17, 2009

Re: No serialization of exception subclasses

2009-04-17 Thread Sumit Chandel
Hi Daniel, That is not the intended behaviour for GWT RPC exception handling. You should be able to throw a subclass of a serializable exception across the wire and it should handle it appropriately. Having said that, here are a couple of questions to find out why this isn't working in your case:

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-17 Thread Sumit Chandel
Hi pohl, As far as I can tell, this is a GWT4NB limitation. Check out Issue #49 (link below) on the GWT4NB issues list. Issue #49 (also see issue #39 linked therein): https://gwt4nb.dev.java.net/issues/show_bug.cgi?id=49 It looks like a fix is planned for the issue. I recommend posting up your

Why am I seeing: GWTCompiler is deprecated and will be removed in a future release?

2009-04-17 Thread William
WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a future release. Use 'com.google.gwt.dev.Compiler' instead. (To disable this warning, pass -Dgwt.nowarn.legacy.tools as a JVM arg.) [ERROR] Unexpected java.lang.OutOfMemoryError: Java heap space at

Re: Error downloading Google Plugin for Eclipse

2009-04-17 Thread jtaylor
On Apr 17, 1:25 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey, Which version of Eclipse are you using?  Also, which update site did you try to install from? Thanks, jason I'm using Version 3.4.2. I used this update site. http://dl.google.com/eclipse/plugin/3.4 - Juan On

How to reference another Eclipse project?

2009-04-17 Thread Jeroen
It feels like I'm asking a FAQ, but I can't seem to find the answer. I want to make a separate Eclipse project for making a GUI on top of another project. I already made a reference in the project, and also on the classpath. Eclipse is happy, but when I run, I still get ClassNotFoundException:

Re: Eclipse Run Configurations confusion: GWTCompiler vs. Compiler

2009-04-17 Thread Jason Parekh
Hi William, Have you installed the Google Plugin for Eclipse? Using that, you can compile your GWT project with the red G icon in the toolbar (or alternatively, right-click on project Google GWT compile). jason On Fri, Apr 17, 2009 at 2:27 PM, William whatr...@gmail.com wrote: I'm

Re: How to reference another Eclipse project?

2009-04-17 Thread Jason Parekh
Hi Jeroen, There's an issue with dependent projects not properly being included. This will be fixed in a future release. For a couple of workarounds, please see http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/951499c5773693c9/6906075b8da782c6 . jason On Fri, Apr 17,

Re: Does gmail use GWT?

2009-04-17 Thread Vitali Lovich
On Fri, Apr 17, 2009 at 2:52 PM, Tony Strauss tony.stra...@designingpatterns.com wrote: On Apr 17, 12:51 pm, Vitali Lovich vlov...@gmail.com wrote: Are you sure?  Even IE supports 2 concurrent connections per server. My guess would be that if you sent a Google Talk message (or e-mail) that

Re: Official word on Safari 4 public beta support

2009-04-17 Thread Sumit Chandel
Hi Churk, It would be great if you could let us know what issues you experienced when trying to run your GWT application on Safari 4. As far as I know, there shouldn't be any major changes that we need to make in GWT to support Safari 4 because of backwards-compatibility. Meanwhile, we may want to

Re: How to reference another Eclipse project?

2009-04-17 Thread Jeroen
Sorry, I just came back because I found out I stopped searching just a bit too early... : Great product, overall, I love it! On 17 apr, 21:10, Jason Parekh jasonpar...@gmail.com wrote: Hi Jeroen, There's an issue with dependent projects not properly being included. This will be fixed in a

Re: Why am I seeing: GWTCompiler is deprecated and will be removed in a future release?

2009-04-17 Thread Vitali Lovich
Are you not understanding the warning? It seems pretty clear. The GWTCompiler class has been deprecated as of 1.6 you should use the new Compiler which understands the new project structure (the options don't have a 1:1 mapping, so you should read up the documentation on how to migrate from

Possibly OT: AccessControlException on server

2009-04-17 Thread Jeroen
Hello, from the server side, I use Apache's HttpClient to set up a HTTP connection to the outside world. Apparently this is forbidden? Why, and can I explicitly open it? I'm running in hosted mode. The server code works outside GWT. Caused by: java.security.AccessControlException: access denied

Re: GWT combined with Grails,JSF or other server side technology

2009-04-17 Thread sjbr
Seam integrates nicely with GWT, instead of RemoteServiceServlet you can use seam components, just like is described on the seam documentation. On 17 abr, 04:45, Paul van Hoven paul.van.ho...@googlemail.com wrote: I developped a gwt app. But now, i need an appropriate server backend.

Re: Why am I seeing: GWTCompiler is deprecated and will be removed in a future release?

2009-04-17 Thread William
Thank you. On Apr 17, 3:16 pm, Vitali Lovich vlov...@gmail.com wrote: Are you not understanding the warning?  It seems pretty clear.  The GWTCompiler class has been deprecated as of 1.6 you should use the new Compiler which understands the new project structure (the options don't have a 1:1

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-17 Thread Daniel Kurka
same here... 2009/4/17 P.G.Taboada pgtabo...@googlemail.com The one remaining issue is the new build output format (WAR), and how resources are deployed. I'm totally against having GWT compile directly into /src/main/webapp. It's completely against the principles of keeping your source

Re: GWT Serialization with CustomFieldSerializer fails because of SerializationPolicy

2009-04-17 Thread Daniel Kurka
this is exactly what i was thinking. we need a way to specify the classes that are okay to serialiaze with the service 2009/4/17 Vitali Lovich vlov...@gmail.com Hasn't been accepted - just opened. Anyone can open issues against GWT. That being said, I think there could be room for

Re: Trouble with asynchronous calls

2009-04-17 Thread badgerduke
Thank you for your help!!! On Apr 16, 5:06 am, Salvador Diaz diaz.salva...@gmail.com wrote: If you really really want for some code to be executed when the RPC call returns then you're forced to put that code in the onSuccess method of your callback, there's no other way around it. On Apr

FlexTable, onClick - get row which was clicked

2009-04-17 Thread serega.shey...@gmail.com
Hi, I have a very simple question, but I don't know how I can solve it using new Handler pattern of GWT 1.6 public class DataTable extends FlexTable{ public DataTable(){ super(); //TODO: add sort functionality and order production this.addClickHandler(new

Re: FlexTable, onClick - get row which was clicked

2009-04-17 Thread David Durham
On Fri, Apr 17, 2009 at 4:01 PM, serega.shey...@gmail.com serega.shey...@gmail.com wrote: public class DataTable extends FlexTable{ ...        this.addClickHandler(new ClickHandler() {            public void onClick(ClickEvent event) { .. source returns me of course my

Re: FlexTable, onClick - get row which was clicked

2009-04-17 Thread Vitali Lovich
Maybe you should explain that he should read the comment instead of simply directing him to the class (sounds like you're telling him to use the deprecated listener instead of the new handler). public class DataTable extends FlexTable{ public DataTable(){ super(); //TODO: add

Re: Error downloading Google Plugin for Eclipse

2009-04-17 Thread Sumit Chandel
Hi Juan, Could you try downloading the plug-in while having all other update sites disabled, if any? Cheers, -Sumit Chandel On Fri, Apr 17, 2009 at 11:51 AM, jtaylor jatto@gmail.com wrote: On Apr 17, 1:25 pm, Jason Parekh jasonpar...@gmail.com wrote: Hey, Which version of Eclipse

Re: Error downloading Google Plugin for Eclipse

2009-04-17 Thread Sumit Chandel
Hi Juan, Another quick thing to try and get you rolling - could you remove the Eclipse plug-in update site from the list of update sites in Eclipse, restart Eclipse, and then re-add the update site and see if it works then? It's possible that the problem you've experienced is an issue in Eclipse

Re: 1.6.4 - anyway to prevent body/anchor tags etc in theme stylesheets from being generated

2009-04-17 Thread Sumit Chandel
Hi M Shannon, The last imported stylesheet is the one whose styles are applied, essentially overriding any styles defined in any previously imported stylesheets. So you should be able to override the styles defined in the standard.css file with the ones you would like to use in a separate

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-17 Thread Benju
It would seem my original post has uncovered all sorts of aches and pains with the new GWT structure. Personally I use maven with the GWT- maven plugin from Google code and only had to change the version number of GWT 1.6.4 and it worked. I don't actually fully understand what was changed but I

Re: Does gmail use GWT?

2009-04-17 Thread Carl Pritchett
In regards to: Continuations are just syntactic sugar - it has nothing really to do with performance. It just makes it easier to write the push. I believe that continuations generally are about performance. Normal server push can leave a large amount of open threads on a server. Some

Re: HorizontalPanel and styles

2009-04-17 Thread Ian Bambury
You probably haven't set a width for the HP, or if you have, then you probably haven''t set a width for the cell with the button in it. But with no code, all anyone can do is guess. Ian http://examples.roughian.com 2009/4/17 badgerduke badgerd...@gmail.com Hello: I am working with a

GWT: Protege-OWL

2009-04-17 Thread vasu
Hey! I am new to GWT and i am struck now. I am working on GWT as well as Protege-OWL API using Eclipse. (http:// protege.stanford.edu/plugins/owl/api/guide.html) I have added the jar files of the Protege-OWL in the project class path as well as in the java build path (as external jars). I have

Re: Error downloading Google Plugin for Eclipse

2009-04-17 Thread jtaylor
On Apr 17, 5:35 pm, Sumit Chandel sumitchan...@google.com wrote: Hi Juan, Another quick thing to try and get you rolling - could you remove the Eclipse plug-in update site from the list of update sites in Eclipse, restart Eclipse, and then re-add the update site and see if it works then?

I installed the GEP and now...

2009-04-17 Thread Ian Bambury
...I get warnings like: The following classpath entry 'D:\sys\gwt-windows-1.6.2\gwt-dev-windows.jar' will not be available on the server's classpath Kivivi-1.6.1.02 Unknown Google Web App Problem Any idea how to get rid of them? I also get [ERROR] Errors in

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-17 Thread Keith Willard
I have been struggling updating my older style (gwt 1.5 with the older pre-codehause maven plugin) project working with the codehause gwt-maven-plugin 1.1-SNAPSHOT. So I resorted to start with a maven project created using the plugin's archetype in my Eclipse environment which gives looks like

Re: GWT RPC filter

2009-04-17 Thread hazy1
Yes, use the GWT RPC classes to return failure or exception to the client in the servlet filter. On Apr 17, 4:49 am, dialloma malim...@gmail.com wrote: Hello group, I would like to implement the method or class that will be called before each GWT-RPC. Is there any method in GWT to do that ?

Re: GWT 1.6 with Maven and build system questions/survey...

2009-04-17 Thread Murray Waters
Does the codehaus maven plugin have a decent mailing list? It seems like they don't have their own mailing list which is a bit of a pain. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: I installed the GEP and now...

2009-04-17 Thread Alex Rudnick
Hey Ian, If the plugin knows that you want to use GWT with your project, and you installed the bundled GWT SDK, then you can take the other GWT jars off your build path. Let us know if that fixes your problem? On Fri, Apr 17, 2009 at 8:20 PM, Ian Bambury ianbamb...@gmail.com wrote: ...I get

Re: Eclipse Run Configurations confusion: GWTCompiler vs. Compiler

2009-04-17 Thread William
Ah! I see. I created the project with GWT Designer, so when I follow your instructions it says This is not a GWT project. I have a feeling this is a problem with the way GWT Designer compiles projects - they do not seem to have upgraded to the latest version of GWT even though I have done so

  1   2   >