1.7 to 2.0, GWT doesn't work any more

2010-05-08 Thread Navigateur
I was wondering if anyone's had the issue of nothing displaying on their application when migrating from GWT 1.7 to 2.0? (The static html shows, none of the GWT widgets show). I can get an alert box to display onModuleLoad(), but nothing else. If so, how were you able to fix it? Or does anybody

GWT compiler out of the box

2010-05-08 Thread Gabe
I'd really like to use the gwt java-to-javascript compiler outside of a project, and interface it with non-gwt javascript code. I've read this is possible, but I've never found the process accurately documented. Has anyone done this? Does google plan on making the compiler more robust and

Re: Fileupload in Showcase isn't working

2010-05-08 Thread Ajay Chitre
Adding some more info... In the debugger when I set a breakpoint in 'onInitialize' at this line:* RootPanel.get().add(form); * the form seems to be built properly as follows: form method=post enctype=multipart/form-data action= http://127.0.0.1:/showcase/myFormHandler;

How to unit test a RemoteServiceServlet referencing a PersistenceManager

2010-05-08 Thread ingo
hello everyone, i wrote a class extending the gwttestcase class that should test my remoteserviceservlet. i added a couple test* methods to it. as long as i do not instantiate the remoteserviceservlet that i actually want to test i can run the tests successfully :-) but when the

GWT compiler issues

2010-05-08 Thread nille
Hi! I'm having some quite serious problems with the GWT compiler. I'm working on a proof of concept application in order to determine whether or not GWT is suitable for another, larger project. So I have a core application and two frontends (GXT and SmartGWT respectively) that's linked into the

GWT 2.0.3

2010-05-08 Thread Avinash
Hi All, I am working from migrating a GWT project from very old version 1.1.10 to the newer version. I am using GWT 2.0.3, gwt-maven-1.2, jdk1.5.0_11 and apache- maven-2.2.1. I am getting following error while compiling [INFO]Validating newly compiled units [INFO] [ERROR] Errors in

Re: error 404: could not find the greetServlet when putting the war file not in the tomcat's webapps folder

2010-05-08 Thread Tiago A. Silva
Correct is servlet-mapping servlet-namegreetServlet/servlet-name url-pattern/myproject/greet/url-pattern /servlet-mapping to servlet-mapping servlet-namegreetServlet/servlet-name url-pattern/myproject/greet/url-pattern /servlet-mapping 2010/5/6 Mike Jiang

Re: Eclipse GWT Plug In installation problem

2010-05-08 Thread tchoa91
Hello world, I confirm : ever if Eclipse is installed in Program Files, one can't use GWT or Apps features if one start Eclipse without Admin rights. Eclipse's about tells plugins and SDK are installed, but they don't show in UI. When one restart Eclipse with Admin rights, Workspace is lost and

Running gwt app with custom context root

2010-05-08 Thread Antonio
I need to run my GWT application with custom context root. When i run the project plugin start server with empty context root eg: http://127.0.0.1:/MyApp.html?gwt.codesvr=127.0.0.1:9997 I need this: http://127.0.0.1:/myapp/MyApp.html?gwt.codesvr=127.0.0.1:9997 The application must run

Re: jQuery with GWT

2010-05-08 Thread Paul Brown
The amazing Cromwellian kicked GQuery off but I think he's a bit strapped for time at the moment. Check out his Google IO 2009 presentation on the topic. http://www.youtube.com/watch?v=sl5em1UPuoI On 7 May 2010 15:48, Tapas Adhikary tapas4...@gmail.com wrote: Thanks Daniel . Look like ,

Jasper Help

2010-05-08 Thread bhargava
Hey Guys, I have integrated Jasper Reports on my netbeans platform and i am able to generate reports using the following code. MapString, Object params = new HashMapString, Object(); Connection conn = DriverManager.getConnection(databaseUrl, userid,password);

piriti xml mapping

2010-05-08 Thread Fahim
Hi all, I am using piriti framework in my GWT app for xml mapping. I have an xml structure like this; packageDetailResponse package id6480007/id nameTest Package for Download Wizard/name contents document id481291027/id namedead-fly-art-01/name

Re: Hide/Show Table Row with UIBinder

2010-05-08 Thread Thomas Broyer
On 8 mai, 02:15, Craigo craig...@gmail.com wrote: Some browsers don't like: myTableRow.getStyle().setDisplay(Style.Display.BLOCK); This seems to work much better: myTableRow.getStyle().setProperty(display, ); Strange there isn't a constant value in Style.Display for blank.

Re: GWT 2.0.3

2010-05-08 Thread Sripathi Krishnan
You cannot use java.io in your client side code. The jar file common-1.0-SNAPSHOT.jar uses IO libraries, which isn't allowed. --Sri On 7 May 2010 16:42, Avinash avinas...@yahoo.com wrote: Hi All, I am working from migrating a GWT project from very old version 1.1.10 to the newer version. I

Re: GWT compiler issues

2010-05-08 Thread Sripathi Krishnan
In order to test whether or not GWT will work for large projects, I've generated a bunch of views just to expand the code base. I'm generating about 600 views and each view is displayed using GWT.runAsync. This works very well in development mode, but when compiling the application, the

Re: Error parsing XML: The reference to entity documentId must end with the ';' delimiter.

2010-05-08 Thread James
You are right. I wish the error was a little more informative! :) James On May 7, 2:17 pm, Thomas Broyer t.bro...@gmail.com wrote: On May 6, 10:43 pm, James dreamten...@gmail.com wrote: I am using UiBinder. I have an Anchor in the XML file and when I assign a URL to the href attribute that

Re: Keeping track of traffic volume generated by a GWT application

2010-05-08 Thread Stefan Bachert
Hi, this does not meet your original question, however, if someone wants to check the net behaviour, a watch with firebug is helpful. Another idea is to use webalizer which is doing some statistics based on logging. There should be a way to configure the logging of tomcat in order to support

Re: Hide/Show Table Row with UIBinder

2010-05-08 Thread bufferings
hi Craigo I think the following is better. // show UIObject.setVisible(myTableRow, true); // hide UIObject.setVisible(myTableRow, false); This is what UIObjects#setVisible(boolean) uses. hope this helps -- bufferings -- You received this message because you are subscribed to the Google

Re: Running gwt app with custom context root

2010-05-08 Thread Tristan
You can just put the second address in your browser and bookmark it. What are you trying to automate? On May 7, 1:17 pm, Antonio antonio...@gmail.com wrote: I need to run my GWT application with custom context root. When i run the project plugin start server with empty context root

No docu

2010-05-08 Thread Stefan Bachert
Hi, I did not found any docu/javadoc on ClassSourceFileComposerFactory Is there a reason for it? Stefan Bachert http://gwtworld.de -- 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: GWT execution flow

2010-05-08 Thread Michael W
Thank for the response of Sripathi and Chris, We have used firebug page speed, YSlow and Chrome Speed Tracer, GWT debug panel. Few changed already applied and few are in the pipeline The actions have been done so far for the performance: 1. Used Akamai.com content cache implementation to cache

Grid component spacing question.

2010-05-08 Thread Julio Faerman
I have a undesired white space in my grid cell between the image bottom and the cell border. This simple code shows the problem: public class MyApp implements EntryPoint { public void onModuleLoad() { Grid grid = new Grid(1,1); Image image = new Image();

Re: GWT compiler out of the box

2010-05-08 Thread Sripathi Krishnan
You should take a look at gwt-exporterhttp://code.google.com/p/gwt-exporterproject. Specifically, see the sample codehttp://code.google.com/p/gwt-exporter/source/browse/#svn/trunk/samples/src/exporterdemo/client. From the projects documentation - (gwt-exporter is) a generator capable of taking

GWT and Objectify

2010-05-08 Thread Dalla
Hi all I´m trying to understand how to use Objectify with GWT. In the features list you can read Objectify entities can be used in GWT without the need for Data Transfer Objects. Sounds really good, problem is I don´t understand how. It seems like Objectify needs the @Id annotation to persist

Re: GWT and Objectify

2010-05-08 Thread Gal Dolber
Annotations just work on gwt... there is nothing to emulate 2010/5/8 Dalla dalla_man...@hotmail.com Hi all I´m trying to understand how to use Objectify with GWT. In the features list you can read Objectify entities can be used in GWT without the need for Data Transfer Objects. Sounds

Re: Grid component spacing question.

2010-05-08 Thread kozura
Style it with display: block;. Images by default are inline which leaves space for text footers. Yeah that makes no sense.. On May 8, 3:41 pm, Julio Faerman jfaer...@gmail.com wrote: I have a undesired white space in my grid cell between the image bottom and the cell border. This simple

Re: Running gwt app with custom context root

2010-05-08 Thread Manuel Carrasco Moñino
This is the expected behavior of Google Eclipse Plugin. It runs without context because it is able to handle various app contexts at same time and it only search for .html files to startup in the war/ folder. Said that, you have either: 1.- Move your MyApp.html file to the root of your war

Re: GWT compiler out of the box

2010-05-08 Thread Manuel Carrasco Moñino
Take a look to this article I wrote some time ago: http://code.google.com/p/gwtchismes/wiki/Tutorial_ExportingGwtLibrariesToJavascript_en -Manolo On Sat, May 8, 2010 at 11:50 PM, Sripathi Krishnan sripathikrish...@gmail.com wrote: You should take a look at gwt-exporter project. Specifically,