Atlanta Google Technology User Group meeting tonight at Google (7PM Google Midtown)

2010-04-27 Thread Charlie Collins
If you're in the ATL area come out to the GTUG-Atlanta meeting tonight (4-27-10) at Google. We'll be talking about GWT with David Chandler, and Wave with Rick Thomas. Also, as usual, we'll be hanging out at Google and having a general discussion with some of the Googlers that work on GWT and AppEng

GTUG-Atlanta meeting Thurs Feb 11th, 7PM Google Atlanta

2010-01-22 Thread Charlie Collins
A bit of a cross-post here, but wanted to let anyone interested know that we plan to have the first GTUG-Atlanta meeting in Feb (Feb 11th, 7PM, Google Atlanta). There will be a short intro about goals for the group, by me, and then a GWT best practices presentation by Chris Ramsdale (Googler). Aft

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

2009-07-22 Thread Charlie Collins
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/bf6d77a59c886e19/ And you might get more/better response on the gwt-maven-plugin mailing list. On Jul 21, 3:08 pm, Yaakov wrote: > Hi, > > I am trying to get a very simple GWT project to gwt-compile using the > codehaus' mav

Re: gwt-maven2-starter-app has been upgraded

2009-07-07 Thread Charlie Collins
Nice work Sam. I will try to dig into it more when I get a chance, but at first glance it looks very good - thanks for putting this together. On Jul 7, 4:25 am, Sam Brodkin wrote: > I'm pleased to announce that the gwt-maven2-starter-app has been > upgraded for GWT 1.6.x:http://code.google.com/p

Re: write file permission on the server side using gwt

2009-06-18 Thread Charlie Collins
GWT on the "server" side is a Servlet, so it's basically plain Java. It depends on your environment and what you are doing exactly on why you might have a permissions problem, but it's likely not related in any way to GWT. That said, what you are getting there is not a file system permissions err

Re: Is it safe to use the components for which the "deprecated" warning comes up!!

2009-06-18 Thread Charlie Collins
Deprecated is a warning to stay away, it means that item is supported for now, but may not be in a future version (and generally that is because there is a newer better way to accomplish the same goal). If you are concerned about migration to future versions, you should avoid the deprecated stuff.

Re: Reducing GWT Generated javaScript file size

2009-05-11 Thread Charlie Collins
First, if you search this forum you will see that this question has been explored many times here. Second, yes, GWT has been used for many large projects very successfully, in fact I would argue that it scales better than many other approaches - but that is really a personal take and beyond the p

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 - http://mojo.codehaus.org/gwt-maven-

Re: Why not use applets?

2009-03-31 Thread Charlie Collins
First, I have written a few non trivial GWT apps that weren't slow at all, and I have used/seen many more. Actually I have seen many that were really impressive and dealt with a huge volume of data, diagramming DNA sequences, for example, and they weren't slow either. And I don't really care how l

Re: How can I use gwt for my project

2009-03-04 Thread Charlie Collins
Though you can do one entry point per page, that is sort of missing the point. If your project is completed, then don't try to just use GWT to make it more "beautiful." GWT is about a different approach, about Ajax so that you really have a single *page* that can handle the entire web based appli

Re: which tools you have used for development of GWT?

2009-03-04 Thread Charlie Collins
Eclipse, Maven, emacs, bash. Sort of a vague question though ;). On Mar 4, 12:05 am, shiren1118 wrote: > which tools you have used for development of GWT? > I'm puzzled --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

Re: Problem in running JUnit testcases in GWT

2009-03-04 Thread Charlie Collins
Something is wrong with your classpath somewhere. Are you using JUnitCreator? If so what does the script look like. Did you compile your code (not GWT compile, just regular javac). See some of the other many threads here in this forum for examples (the end of this one has a working script, for e

Re: strange behavior for float numbers

2009-02-24 Thread Charlie Collins
On the "GWT Browser" they are still Java (hosted mode). In actual browsers they are JavaScript. You will get different results in browsers because JavaScript only has 64 bit floats. The GWT docs put it this way: "* Intrinsic types: Primitive types (boolean, byte, char, short, int, long,

Re: Anyone configure GWTShell to listen on a network interface?

2009-02-07 Thread Charlie Collins
You don't really have to dig into it to make it listen on a different port. It supports a "-port" option to tell it to listen on any port you want. As far as which interface it listens on, that's different, but in my experience (and on my machine right now, Linux, GWT 1.5.3), it doesn't bind just

Re: A possible critical bug for gwt-fabridge.

2009-02-05 Thread Charlie Collins
; following pagehttp://code.google.com/p/gwt-fabridge/ > > On Feb 4, 5:59 am, Charlie Collins wrote: > > > I don't know whatgwt-fabridgeis, but maybe that project has it's own > > support list you can use for issues such as this?  Not sure you will > > get much res

Re: A possible critical bug for gwt-fabridge.

2009-02-04 Thread Charlie Collins
I don't know what gwt-fabridge is, but maybe that project has it's own support list you can use for issues such as this? Not sure you will get much response here. On Feb 3, 4:00 pm, "Jihong Liu" wrote: > Hi. I have a problem for gwt-fabridge. I think it may be a critical > issue for gwt-fabridg

Re: Accessing Static Resources

2009-01-29 Thread Charlie Collins
If you want the images on another server, you could just use the Image class and refer to them where they end up? http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/Image.html You might be a lot better off though, to abandon that approach and use an ImageBundle

Re: need GWT tutorial

2009-01-29 Thread Charlie Collins
http://code.google.com/webtoolkit/gettingstarted.html On Jan 29, 5:20 am, babar wrote: > hi fellows, > > i need GWT tutorial urgently, > because i have to present it to my fellows > > Regards: > Babar --~--~-~--~~~---~--~~ You received this message because you are

Re: Where to declare a global logger for RPC?

2009-01-26 Thread Charlie Collins
I think most people just use the config file that you are checking for being null there to setup logging. If you have to make sure it works sans that file though, you could extend RemoteServiceServlet (which extends HttpServlet, which extends GenericServlet, which has a method called "init" that

Re: launch a service every n minuts

2009-01-26 Thread Charlie Collins
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/Timer.html On Jan 26, 3:48 am, jbroquefere wrote: > Hello, > I am interested in launching a RPC every 4 minuts. Is there a way to > do that in GWT? It seems there is no way, but... i hope i'm wrong > > thank's a

Re: Debugger app always out of memory on Vista

2009-01-25 Thread Charlie Collins
If you are using "-Xms" you haven't "upped" anything. That's the MINIMUM memory setting. Try "-Xmx256m" or such if you are trying to up the maximum pool size. http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/java.html A basic app (one from applicationCreator) should require a reasonably sm

Re: .gwt.xml not on your class path

2009-01-10 Thread Charlie Collins
sandeep/transfer is having this StringReverse.gwt.xml > > thats why i asked where does it looks for it...may be some other place > > somewhere... > > > Thanks > > Sandeep > > > On Jan 6, 6:08 pm, Charlie Collins wrote: > > > > It's all right t

Re: Coverage tools for GWT/JUnit?

2009-01-06 Thread Charlie Collins
The GWT team has been working on getting better/easier access to coverage. I am not sure where it stands at the moment, but this is the old info: http://code.google.com/p/google-web-toolkit/issues/detail?id=779 If you are willing to patch you can use Emma now, but it's not supported out of the

Re: No source code available error

2009-01-06 Thread Charlie Collins
http://code.google.com/p/google-web-toolkit-doc-1-5/wiki/GettingStartedJSON " " On Jan 5, 4:57 pm, Sami wrote: > [ERROR] Line 40: No source code is available for type > com.google.gwt.json.client.JSONObject; did you forget to inherit a > required module? > > I'm getting this error when I try to

Re: .gwt.xml not on your class path

2009-01-06 Thread Charlie Collins
It's all right there in the message actually: "com/sandeep/transfer/StringReverse.gwt.xml" is not found - and that is where it is looking. On Jan 6, 12:55 am, Sandeep wrote: > Hi, > I have created a GWT RPC application. It runs fine when i deploy it in > sepetrate Tomcat and when i run it usin

Re: XML to UI Forms

2008-12-04 Thread Charlie Collins
ild a UI from the xml which can be provided > dynamically. > > Eg: a drag and drop node can be added automatically from a remote xml. > This xml will have definition of properties (UI) for user's input when > the node is dragged. > > Is it available in any tools (not necessar

Re: Problems adding a "Digg This" link

2008-11-29 Thread Charlie Collins
e peculiar way GWT > builds webpages, but not many web widgets work this way. So, assuming > for a moment that won't fly, here's the easiest alternative: > > Use com.google.gwt.user.ui.HTML. > > On Nov 29, 1:48 pm, Charlie Collins <[EMAIL PROTECTED]> wrote: > &

Re: XML to UI Forms

2008-11-29 Thread Charlie Collins
I don't think this is exactly what you are asking, but the GWT "declarative UI" track is aiming to make UI building a bit easier by making it, well, declarative. You might find some more ideas, or clarification, at least regarding XML to UI widgets, in those threads. http://code.google.com/p/goog

Re: Problems adding a "Digg This" link

2008-11-29 Thread Charlie Collins
Can't you just add the script element to your host page, the same way you would "in HTML"? That is to say, don't try to recreate the script element in Java and have GWT insert it, just put it on the host page (the same place you put the gwt script tag, etc). On Nov 27, 11:33 pm, mayop100 <[EMAIL

Re: Cannot run -shell

2008-11-25 Thread Charlie Collins
apt-get install libstdc++5 On Nov 25, 11:25 am, Goo <[EMAIL PROTECTED]> wrote: > I'm a beginner in Google Web Toolkit, and tried to implement > StockWatcher from Google Web Toolkit Tutorial. After generate > StockWatcher-shell and run it, I was complained about: > > ==

Re: using Jetty for hosted mode?

2008-11-25 Thread Charlie Collins
You can't change the embedded server, but you can use -noserver and work with Jetty that way. http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=FAQ_HostedModeNoServer Also, on a related note, the GWT team is considering using Jetty *as* the embedded se

Re: Your opinion sought: Jetty or Tomcat?

2008-11-25 Thread Charlie Collins
I know I am late to this thread, but Jetty would break a ton of stuff for me (I maintain the GWT-Maven plugin, which tweaks the embedded Tomcat) - even so, I would say it's a good idea (a lot of advantages), and I can adapt. One thing in this thread that concerns me though is the general "everyon

Re: Compile error in GettingStartedRPC (method does not override a method from its superclass)

2008-11-08 Thread Charlie Collins
The exact meaning of @Override is different in Java 6 than it was in Java 5 (in Java 5 it means the superCLASS must have the method, not the super type - in Java 6 types, like an interface in this case, are also allowed - http://blogs.sun.com/ahe/entry/override_snafu). If you are using Java 5 - r

GWT 1.5.3 out

2008-10-18 Thread Charlie Collins
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/048413bdb6e5b292#%22 Makes my worlds collide, GWT and Android that is ;). I will try to get some time to up the defaults in GWT-Maven soon, and make a new release. Note that things should work perfectly fine with 1.5.3 AS IS

Re: example-shell.cmd starts without exception, but only html pure will be displayed

2008-10-15 Thread Charlie Collins
Depends what you changed in your "PC-Configuration" - try setting the logLevel option in the shell script, before running it, to get verbose logging - that should help you figure out where things are going wrong, if the shell is starting. http://code.google.com/docreader/#p=google-web-toolkit-doc

Re: Doubt in gwt-rpc

2008-10-15 Thread Charlie Collins
http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideRemoteProcedureCalls And, here is a simple example with code: http://gwt-maven.googlecode.com/svn/trunk/maven-googlewebtoolkit2-plugin/simplesample/src/main/java/com/totsp/sample/. Yes, that sam

Re: missing -compile.cmd

2008-10-15 Thread Charlie Collins
It's created in the same location as you use applicationCreator from, by default. http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideApplicationCreator That assumes you are using applicationCreator of course, but that is the normal way to have a

Re: GWT compiler and Hibernate4GWT problem

2008-10-02 Thread Charlie Collins
You might try asking this one on the hibernate4gwt forum (I don't use it so I can't answer it, but I know they do have a forum and will answer your questions generally if they see them - might get more traction there): http://sourceforge.net/forum/forum.php?forum_id=689608. On Oct 2, 7:45 am, no

Re: Same origins policy

2008-10-02 Thread Charlie Collins
As to part 2 here "Ok, now for the second thing. How can I make the non-ssl -> ssl protocol switch and not break the Same Origins rules? " - you can't (or at least you shouldn't be able to, if you do it would be a huge hole ;)). The page you linked there shows the policy pretty clearly. The doc

Re: Can't serialize return result containing inner class??

2008-09-18 Thread Charlie Collins
I am not sure of the status of this, but yes, there is an issue related to that still open: http://code.google.com/p/google-web-toolkit/issues/detail?id=811&q=inner%20class. A non static inner class is probably a bit tricky (not impossible though) for a source code analyzer/compiler to deal with

Re: Ant Junit GwtTest

2008-09-18 Thread Charlie Collins
GWTTestCase based tests (and GWTTestSuite, which is a great time saver) can be run by ant, yes. Ant, after all, can run the test runner the same way the junitcreator generated shell script does. Your issue is probably related to the source path or classpath. Make sure you either put your test cl

Re: GWT and "Real World" UI Development

2008-09-17 Thread Charlie Collins
To be honest, GWT is not that great at the "team" designer vs developer separation at the moment. There are ways to mitigate that (tools like Instantiations designer), and approaches that help (clear rules for css names for widgets/elements and then a designer who can really just work with the CS

Re: GWT Compilation Time

2008-09-17 Thread Charlie Collins
That blog post does a bunch of stuff in "step 3" that I definitely would not recommend. Building your own version of GWT for that is not necessary. You can set those properties in your own module and it will redefine them. Or if you really need to, you can just put your own UserAgent.gwt.xml in

Re: Reporting tool and GWT

2008-09-16 Thread Charlie Collins
Maybe as opposed to reporting you mean charting? Reporting is a broad topic, but in most senses can usually be done on the server side (and results returned to client). http://code.google.com/p/gchart/ On Sep 16, 7:10 am, Manik <[EMAIL PROTECTED]> wrote: > Hi, > I need any reporting tool whic

Re: GWT Compilation Time

2008-09-16 Thread Charlie Collins
As Andrej says, there is a permutation for every "axis" you create. One for every browser, one for every locale, one for every other deferred binding axis you use. When you have 4 languages, and use the default support for 4 browsers, you get 16 permutations. To speed this up during development

Re: Basic Authentication with GWT RPC requests

2008-09-16 Thread Charlie Collins
Try RequestBuilder http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/b7a6efdc09e5d508/e477efffa6db5e8e On Sep 16, 8:30 am, Jerome Velociter <[EMAIL PROTECTED]> wrote: > Hello everybody, > > I am wondering if there is any special configuration, anything special > to do to hav

GWT-Maven updated, now supports 1.5 (and has gotten a lot of other updates)

2008-09-16 Thread Charlie Collins
Just a bump to let this list know that GWT-Maven has been updated quite a bit recently. http://code.google.com/p/gwt-maven/ The new version is a lot more straightforward to configure (using more Maven-ish approaches where possible), launches the shell a lot faster, supports debugging, supports I

Re: is communication over GWT-RPC secure

2008-09-08 Thread Charlie Collins
As Thomas stated, make sure you use HTTPS. Also, I am not sure if this is the one you read or not - http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ - but it has some useful info (and notes https at the bottom, pointing to another useful thread as well). On Sep 7, 11:0