Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
Hi All, I am facing the same issue and I have added the validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA-sources.jar, hibernate-validator-4.1.0.Final-sources.jar, and hibernate-validator-4.1.0.Final.jar to the war/WEB-INF/lib and to the eclipse classpath(buildpath) but the issue still

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Warren Tang
Right click on that folder and then select Build Path Use as Source Folder. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qpRZjOnQUg0J. To

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
Hi All, I am facing the same issue and I have added the validation-api-1.0.0.GA.jar, validation-api-1.0.0.GA- sources.jar, hibernate-validator-4.1.0.Final-sources.jar, and hibernate-validator-4.1.0.Final.jar to the war/WEB-INF/lib and to the eclipse classpath(buildpath) but the issue still

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
The problem with that is *Maven-Update Project Configuration* wipes out this manual setting. Is it possible to do configure this in POM? Ideally, it would useful to control the project from the command line outside of Eclipse. -- You received this message because you are subscribed to the

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Warren Tang
It doesn't happen to me (Eclipse 3.6). I'd suggest you check this wiki for eclipse setup: http://code.google.com/p/google-web-toolkit/wiki/WorkingWithMaven Regards, Warren Tang http://blog.tangcs.com On 9/16/2011 2:58 PM, Y2i wrote: The problem with that is /Maven-Update Project Configuration/

Re: How to create image sprits

2011-09-16 Thread Alexandre Dupriez
Hello Ramesh, If you want to bundle your 200+ images, you have to manually write a declaration like @Source(image/image.gif) ImageResource image(); for each of them. Though tedious, this method is quite handy and avoid the overhead of using 200+ separate files. While I understand your need

Exception LogConfiguration GWT2.4

2011-09-16 Thread Apostroff
Hello I get this exception (in production mode). She's throw by 10 ou 100 by seconds, one ore two times a day. [CODE] 2011-09-16 08:36:47 ERROR [gwt.client.com.google.gwt.logging.client.LogConfiguration:74] One or more exceptions caught, see full set in UmbrellaException#getCauses

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Alexandre Dupriez
Could you please send us the relevant part of your POM and GWT module configuration file? -- 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-toolkit@googlegroups.com. To unsubscribe from this

Re: is it possible to integrate PersistentUnit annotations in RequestFactoryServlet?

2011-09-16 Thread Elhanan Maayan
i know i CAN use guice, but i CAN't use it, becouse our CTO is against integrating anything else aside from GWT (yea i know using GWT alone is an anti-pattern, but he doesn't want any added risks, hell he won't let us even use Activity places) so i was wondering if there is any underlying

Re: HOWTO handle right click on CellTable Header ?

2011-09-16 Thread Christophe
Ok, that's work. I can display my popup menu. But it doesn't prevent default browser popup menu : http://xemelios.org/private/many-menus.png To stop propagation, I've tried this without any success : public void onBrowserEvent(Cell.Context context, final Element parent, SafeHtml value,

Re: JSNI - Call Javascript native method from another

2011-09-16 Thread Thomas Broyer
'this' is a keyword, which depends on the way the function has been called. Because you do not pass this as an argument to addHandler, it's clear that the function you pass won't ever be called with its this set to the value of this at the time you called addHandler. Storing this in to a

Re: Generated AutoBean name length for Proxies too long

2011-09-16 Thread Thomas Broyer
Yes, you can safely ignore them. What they tell you is that you won't find the source for the generated class in the …target/.generated/…; which is generally the reason you'd use -gen (have access to the generated sources to help debug things –setting breakpoints and debug step-by-step–) I wish

Re: Missing required argument 'module[s]' error

2011-09-16 Thread Warren Tang
The missing module argument is the full name of your module, e.g. com.google.gwt.sample.mail.Mail. Add it to the end of the argument in Run Configuration and the error should disappear. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Warren Tang
Maven - update project configuration does break things for me: 1. Modules argument missing in .launch files. 2. GWT support unchecked. Seems like gwt-maven-plugin does not catch up and still works in old ways. Regards, Warren Tang http://blog.tangcs.com On 9/16/2011 3:29 PM, Alexandre

Re: EJB integration in GWT-jBoss-project

2011-09-16 Thread Norman Klingspor
Hi Karim, thanks for the help - and you were totally right. I just made the well i failed in adding compiled classes. Instead I included the source-files :-) Now, that I get this far, however, another error (of course) occurs: My jBoss brings up a deployment error: DEPLOYMENTS IN ERROR:

Cannot lo0ad my application since the upgrade to gwt 2.4

2011-09-16 Thread nicanor.babula
Hi everyone, I just upgraded to gwt2.4, but when I load my application I get this exception: [exception] [ERROR] javax.servlet.ServletContext log: Exception while dispatching incoming RPC call java.lang.NoClassDefFoundError: javax/validation/Path at java.lang.ClassLoader.defineClass1(Native

Re: Cannot lo0ad my application since the upgrade to gwt 2.4

2011-09-16 Thread Alexander Orlov
You need to add validation-api-1.0.0.GA.jar to your classpath. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/vLXHE6By7CAJ. To post to this

Generating module.cache.js instead of module.nocache.js

2011-09-16 Thread Alexander Orlov
The default behavior of GWT is to generate the *module.nocache.js* versions. But how can I generate a *module.cache.js* version of a module? I've foundsome informationhttp://code.google.com/p/google-web-toolkit/wiki/LinkerDesignabout this issue but it seems to be obsolete. Also what does

Re: Cannot lo0ad my application since the upgrade to gwt 2.4

2011-09-16 Thread Thomas Broyer
…or gwt-servlet-deps.jar (contains javax.validation and org.json) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/pCUEO2XX8YkJ. To post to this

Re: Generating module.cache.js instead of module.nocache.js

2011-09-16 Thread Thomas Broyer
*.cache.* and *.nocache.* are just naming conventions adopted by GWT to help setup the perfect cachinghttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#perfect_cachingconfigurations. If you enable caching for the *.nocache.js file, then you explicitly allow

Re: HOWTO handle right click on CellTable Header ?

2011-09-16 Thread redjhawk
Have you tried with event.preventDefault() ? On Sep 16, 10:35 am, Christophe christophe.march...@contactoffice.net wrote: Ok, that's work. I can display my popup menu. But it doesn't prevent default browser popup menu :http://xemelios.org/private/many-menus.png To stop propagation, I've tried

byte array to Image

2011-09-16 Thread AgitoM
Hi all, From a web service I am receiving a byte array that represents a image. I need to somehow squeeze this byte array into a image widget or similar widget on my client side. First I tried to convert the byte array to a base64 string: String base64 = Base64Utils.toBase64(image); base64 =

Re: Generating module.cache.js instead of module.nocache.js

2011-09-16 Thread Alexander Orlov
On Friday, September 16, 2011 12:00:59 PM UTC+2, Thomas Broyer wrote: *.cache.* and *.nocache.* are just naming conventions adopted by GWT to help setup the perfect cachinghttp://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#perfect_cachingconfigurations.

Re: Radiobutton vs checkbox in celltable

2011-09-16 Thread Derek
The simplest thing to do is to copy and paste CheckboxCell as RadioCell (for example) and then just change the templates at the top to input type=radio name=blah But you do need to put in a name for a radio cell, and if you use blah as the name than the radio cell will give you problem if you

Re: GWT 2.3 Upgrade breaks hibernate queries?

2011-09-16 Thread BST
http://osdir.com/ml/Google-Web-Toolkit/2011-02/msg02044.html Found a solution to the problem, where validation is disabled for hibernate, so no need to add the additional jars. This worked for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: GWT, Canvas, and excanvas.js

2011-09-16 Thread J.Ganesan
Please see http://code.google.com/p/gwt-g2d/ and http://gwt-g2d.appspot.com/doc/index.html. I have used the canvas provided there. It is very good. J.Ganesan www.DataStoreGwt.com On Sep 16, 2:29 am, Christopher Piggott cpigg...@gmail.com wrote: Hi, I have been searching for information on

Re: NullPointerException in MethodPropertyContext

2011-09-16 Thread Tiago
On Sep 15, 5:52 pm, Thomas Broyer t.bro...@gmail.com wrote: You should make one sub-interface of AValueProxy per type of AGenericEntityProxy that you'd use for its T type parameter; remove the type parameter (making AValueProxy no longer generic), and using @ExtraTypes (GWT 2.4 onwards) for

Changing app from one gwt version to another version problem

2011-09-16 Thread mallikarjun....@gmail.com
Hi previously i am using GWT 2.3 now i am using GWT 2.4 i coppied my app from 2.3 to 2.4 it shows some errors like below. couls u plz help me when any body know. The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different

GWT TextButton class - How to set an icon?

2011-09-16 Thread tom
Hi, I'd like to have Buttons with a text and an icon in my app. Seems the TextButtonhttp://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/widget/client/TextButton.htmlclass is exactly what I'm looking for. The only way to set the icon seems to be the constructor that takes a

Re: HOWTO handle right click on CellTable Header ?

2011-09-16 Thread Christophe
Great Thanks a lot, Thomas, for your help. I wish you a nice week-end. Christophe On 16 sep, 12:35, redjhawk jorges...@gmail.com wrote: Have you tried with event.preventDefault() ? On Sep 16, 10:35 am, Christophe christophe.march...@contactoffice.net wrote: Ok, that's work. I can

Re: IE8 CellTable Events

2011-09-16 Thread Diego Piedrahita
Hi I have something like this and it works but in my case work dialogoBox cellTableColumn = new ColumnBlocksVarible, String(new EditTextCell()) { @Override public String getValue(BlocksVarible object) { return

Re: Generating module.cache.js instead of module.nocache.js

2011-09-16 Thread Thomas Broyer
AFAICT, most Google Apps do on the server side what the *.nocache.js does on the client side in a default setup (i.e. choose the right permutation, i.e. the right *.cache.* file, to load for a given user agent, locale, whatever combination). They use the xsiframe (or actually probably a custom

Re: Remember username password in GWT

2011-09-16 Thread jhulford
I'm assuming you just want to have the browser handle this, right? If so, you need to make sure the Text and Password input boxes are part of your host page. IE won't store off the information if you add them after the page is loaded.

Re: byte array to Image

2011-09-16 Thread Alexandre Dupriez
Modern browsers accept in URI the source of an image encoded in base64 and render it. See http://stackoverflow.com/questions/2035811/send-bytearray-to-javascript What did you do exactly? And why the web service's author told you that you should not convert the picture in base64? Is the image

Calling GWT RPC Services in another server

2011-09-16 Thread Néstor Boscán
Hi to all the group Is there a way to call GWT RPC Services in another server by passing the same-server AJAX policy? Regards, Néstor Boscán -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Uncaught exception escaped

2011-09-16 Thread sasi sasindran
HI sir I AM SASINDRAN newcomer to gwt i wrote a example(StockWatcher) project provided by google.When I build this project in development mode using eclipse IDE.This shows an error [ERROR] [stockwatchers] - Uncaught exception escaped PROJECT CODE package

Re: Calling GWT RPC Services in another server

2011-09-16 Thread Florian
Your problem is the same origin policy? http://en.wikipedia.org/wiki/Same_origin_policy Then a solution could be ReST: http://restygwt.fusesource.org/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Client side bean validation using jsr + hibernate provider

2011-09-16 Thread Saul Simhon
Hi, Does anyone know of a quick tutorial that explains how to setup bean validation on the client side? I'm running into gwt compilation problems and before I start describing them here I'd like to read-up on it first. (my attempt to inferred usage from source was unsuccessful.) In short, I

Re: JSNI - Call Javascript native method from another

2011-09-16 Thread Jésica
Crystal clear!, Thanks everyone. Jésica. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/D3H9MSpLbP0J. To post to this group, send email to

Re: byte array to Image

2011-09-16 Thread Jens
Base64Utils from GWT's source does not use the standard MIME characters when encoding data to Base64. So I think thats why the browser does not display the image. To verify this, you can try and search a MIME standard Base64 encoder, convert the byte array and put the base64 string into your

Re: Calling GWT RPC Services in another server

2011-09-16 Thread Jens
You could also set up a reverse proxy that delegates requests to other external servers. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

RequestFactory only send changes

2011-09-16 Thread regis.dev
I create a form for editing an EntityProxy(campaignProxy) with the Editor + RequestFactory, everything is working/saved in Database (create/edit). But when i am editing a existing an existing Entity, all the entity is send (i seeing this behaviour in firebug), even i made any changes in my

Re: Uncaught exception escaped

2011-09-16 Thread Jens
*Caused by: java.lang.IllegalArgumentException: Multiple decimal separators in pattern #,##.0.00; * at com.google.gwt.i18n.client.NumberFormat.parseTrunk(NumberFormat.java: 1564) at com.google.gwt.i18n.client.NumberFormat.parsePattern(NumberFormat.java: 1501) at

Re: RequestFactory only send changes

2011-09-16 Thread Thomas Broyer
RequestContext#isChanged is buggy with collections: http://code.google.com/p/google-web-toolkit/issues/detail?id=5952 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: byte array to Image

2011-09-16 Thread Alexandre Dupriez
Hello Jens, Why not converting into the right MIME type in one shot? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/YHEU2zSsCjoJ. To post to

java.lang.NoClassDefFoundError:org/json/JSONException

2011-09-16 Thread Cristian Rinaldi
I have an error when the application is deployed. The exception is Caused by: java.lang.NoClassDefFoundError: org/json/ JSONException. But the rare is that I have all libraries in de WEB- INF/lib gwt-servlet.jar gwt-servlet-deps.jar requestfactory-servlet.jar validation-api-1.0.0.GA.jar I'm not

Re: Cannot lo0ad my application since the upgrade to gwt 2.4

2011-09-16 Thread nicanor.babula
Thank you very much. I added gwt-servlet-deps.jar and it works. Best regards, Nicanor Cristian Babula. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
Alexandre, the POM is attached to the first post. Attaching the GWT module. The POM and module files are generated using these instructionshttp://mojo.codehaus.org/gwt-maven-plugin/user-guide/archetype.html . Thank you! -- You received this message because you are subscribed to the Google

Re: JAXB + GWT

2011-09-16 Thread Deepak Singh
No. There is no issue in putting JIBX *.java files in shared package. I use it in shared package without any issue. Make sure you r using JIBX 1.2.3 Deepak On Fri, Sep 16, 2011 at 5:49 PM, J.Ganesan j.gane...@datastoregwt.comwrote: Mike, Will there be any issue in putting the JIBX

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
Thanks for the link Warren! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/kr_dIa2Qu-kJ. To post to this group, send email to

Re: byte array to Image

2011-09-16 Thread Thad
I believe that GWT (and browsers in general) use what the RFC calls Base 64 Encoding with URL and Filename Safe Alphabet (see section 4 in http://www.faqs.org/rfcs/rfc3548.html). You can find a Java Base64 class with URL-safe encoding at http://iharder.sourceforge.net/current/java/base64/ On Sep

Re: JAXB + GWT

2011-09-16 Thread Maiku
There shouldn't be any problems. In my case, I had my JIBX stuff in a separate project that got included into my webapp so I had to provide a *.gwt.xml file in it's base folder and do an include in my main *.gwt.xml file but other than that everything just worked. I was working with RPC methods,

Re: java.lang.NoClassDefFoundError:org/json/JSONException

2011-09-16 Thread Thad
I dunno a Maven repository for JSON, but you can download and build the package yourself from http://www.json.org/java/index.html On Sep 16, 10:45 am, Cristian Rinaldi csrina...@gmail.com wrote: I have an error when the application is deployed. The exception is Caused by:

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
Warren, I think that the manually configured things should be broken after running Update Project Configuration. If the project is driven by maven, it does not make sense to store Eclipse configuration in the source control system. Eclipse support should be automatically generated from the

Re: How to create image sprits

2011-09-16 Thread Ramesh Jegurupati
Hi Alexandre, My required is...Combine those 200+ images in to single sprite and use this single sprite image in my web application. I heard that GWT automatically created Image sprites based on Client Bundle and CssResource. Explicitly we need not create image sprites from Tools(like photoshop

Re: byte array to Image

2011-09-16 Thread Jens
How do you mean that? You either have to use a correct (browser compatible) base64 encoding or you need an URL that represents the data. If you want to support older browsers you would go with URL. Also I wouldn't send anything large in a base64 encoded way because base64 encoding makes

Re: Problem with multiple CellTables on one page

2011-09-16 Thread Pedro Perez
Thanks for your help... that's the piece I was missing I think...the last line of extending of the Style interface. I will try it today and let you know how it goes. Thanks again for your help! On Sep 14, 6:12 am, Thomas Broyer t.bro...@gmail.com wrote: That's not enough. As I said on the issue

Re: java.lang.NoClassDefFoundError:org/json/JSONException

2011-09-16 Thread Y2i
The problem is requestfactory-server.jar may or may not have org/json/JSONException, depending where it's coming from. Check out this threadhttps://groups.google.com/d/topic/google-web-toolkit/R5QNo2y8Nyo/discussion . -- You received this message because you are subscribed to the Google

Re: java.lang.NoClassDefFoundError:org/json/JSONException

2011-09-16 Thread Alexander Orlov
On Friday, September 16, 2011 4:45:45 PM UTC+2, Cristian Rinaldi wrote: I have an error when the application is deployed. The exception is Caused by: java.lang.NoClassDefFoundError: org/json/ JSONException. But the rare is that I have all libraries in de WEB- INF/lib gwt-servlet.jar

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Alexandre Dupriez
Sorry, I did not see the POM before. There are two plugins registered in your POM : gwt-maven-plugin and maven-war-plugin. Why do you need both of them? The problem might come from that: if the plugin maven-war is executed before gwt-maven, the asynchronous classes will not be executed yet when

Re: RequestFactory only send changes

2011-09-16 Thread regis.dev
Thanks a lot. I vote for the issue. I will wait for a good workaround or a fix. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/haCmrn0XgF8J.

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Warren Tang
True. That's what the Update Project Configuration command is meant to do. So the settings needs to be in pom.xml for it to survive the command. This can be done with the build-helper-maven-plugin: groupIdorg.codehaus.mojo/groupId artifactIdbuild-helper-maven-plugin/artifactId

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
Thanks for the response Alexandre. The POM is auto-generated. The war plugin is used for packaging since the project has packagingwar/packaging. The asynchronous classes are actually generated, but the compiler does not see them because they are placed in unusual directory. -- You received

GWT4Touch is now in beta phase, take it for a spin!

2011-09-16 Thread Alfredo Quiroga-Villamil
All: Ready for you to play with is our latest addition GWT4Touch which includes chart support. Develop slick Sencha Touch mobile apps in Java. Take it for a spin, visit us at http://www.emitrom.com/gwt4touch As usual any feedback will be greatly appreciated. The Emitrom Team. -- You received

Re: byte array to Image

2011-09-16 Thread Xi
Hi, I've used http://sourceforge.net/projects/migbase64/ in my application, to convert the byte array to a base64 string, which works pretty well and efficient My code is like : String base64 = data:image/png;base64, + Base64.encodeToString(bytes,false); And at the client side, you

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Y2i
Thanks Warren. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/byx1yhmPrx4J. To post to this group, send email to

Problem with EntityProxyChange handling

2011-09-16 Thread tom
Hello, in my app, I've got a tree that displays data for my EntityProxies. Now when an EntityProxy is updated, I'd like to update the data shown in the tree. For this, I've implemented an EntityProxyChange handler that is then registered for the type of EntityProxies I want to handle the

Re: Calling GWT RPC Services in another server

2011-09-16 Thread Florian
Maybe this article helps: http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Client side bean validation using jsr + hibernate provider

2011-09-16 Thread saul
Anyone know of a quick/good tutorial that explains how to setup bean validation on the client side? GWT compilation problems are occurring and before I start describing them here I'd like to read-up on it first. (my attempt to infer usage from source was unsuccessful.) In short, we can't seem to

Re: JAXB + GWT

2011-09-16 Thread Harald Pehl
Hi, I'm planning to add JAXB support http://code.google.com/p/piriti/wiki/JAXBto Piriti http://code.google.com/p/piriti/. Piriti is an XML / JSON mapper for GWT. Currently XML mapping is implemented using custom annotations. Regarding JAXB support I'm in the early design phase (see first

Re: Remember username password in GWT

2011-09-16 Thread Markandayarushi Pamu
Thank for your reply .. Same thing we have implemented , this is working in IE, but in Mozila and Chrome somehow not working.. In Firefox after enter the username password it will ask to remember the pasword, after remember the password, logout from the system then enter login name then it user

Re: remember places

2011-09-16 Thread BM
Will it still work if you refresh the browser (F5 key) or just jump up the places by Back button? I think redirectAfterLogin may be null in those cases as they are not set via previous activity class. On Sep 15, 12:07 pm, Alex Dobjanschi alex.dobjans...@gmail.com wrote: Your login place should

Re: what is the differences between Event and GwtEvent?

2011-09-16 Thread Alex Dobjanschi
I assume you mean com.google.web.bindery.event.shared.EventH ? In true, GwtEvent is a specialized EventH bound to Gwt and its event handling mechanism (XEventHandler, HasXHandlers, EventBus, etc). -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

SmartGwt not working in GoogleChrome

2011-09-16 Thread Serge
Hi, when I'm using smartgwt 2.5 in my gwt web application, I get the following error in Chrome: Exception while loading module com.smartgwt.client.SmartGwtEntryPoint. See Development Mode for details. java.lang.reflect.InvocationTargetException at

Re: a basic gwt-maven-plugin question

2011-09-16 Thread Rob
Hi, Take a look at these posts: - http://uptick.com.au/content/getting-started-gwt-maven-and-eclipse - http://uptick.com.au/content/gwt-cx-maven-multimodule-enterprise-project and the posts towards the end of this thread: -

Re: SmartGwt not working in GoogleChrome

2011-09-16 Thread Tom Carchrae
SmartGWT does not work well with the developer plugin in Chrome. Try compiling it (red GWT box) and then using Chrome without the ?gwt.codesvr= 127.0.0.1:9997 at the end of the URL. On Fri, Sep 16, 2011 at 12:30 PM, Serge srdjanstanko...@hotmail.com wrote: Hi, when I'm using smartgwt 2.5 in

Searching for advice on a B-Portal.

2011-09-16 Thread Pouria Jay
Dear beta's . My question is quite simple but i really need someone's advice for this. The question : How can i build an business portal with a back-end and front-endd of G.W.T. The reason i like to use G.W.T is the many widgets and easy forms and GUIshaping and ofcourse the AJAX conversion. But

Remote Logging

2011-09-16 Thread Mike
I'm attempting to use remote logging as described in http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging I'm using a very simple test app based on the Greeting example. It appears to work in the Eclipse hosted mode, but when I deploy to Tomcat6 I see nothing in the

Re: remember places

2011-09-16 Thread -sowdri-
While a Place can hold any data structure, including other places, as you said once you refresh the browser, the data is lost. To circumvent this, Place must be considered to be a special kind of object in GWT, such that, the state of the place must be represented as part of url. This is the

Re: SOLVED: An IncompatibleRemoteServiceException was thrown

2011-09-16 Thread -sowdri-
Rob,, The fundamental reason for the problem is, as you have rightly guessed there were residues. But what caused these residues? If you are using GPE, the first time you run it, it would ask for webapp directory. Select *target/web-app-name* for that. Do not use *src/main/webapp *which is

Re: Generated HTML Doesn't Display

2011-09-16 Thread Nick Apperley
Also found that the login page isn't being displayed properly in Firefox (only part of the page is displayed). Pressing the tab key resolves the problem which makes me think there is something weird going on with the way GWT does layout. It is possible this might be related to the image map not

[gwt-contrib] Re: Comment on IE8Support in google-web-toolkit

2011-09-16 Thread codesite-noreply
Comment by t.broyer: This page has last been updated on Feb 4th of 2010, nearly 2 years ago; and it starts with IE8 was recently released, so it's quite clear that it's outdated. See http://code.google.com/webtoolkit/release-notes.html#Release_Notes_1_7_0 which says: This release adds

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread Jeff Larsen
For historical purposes, I figured out a working solution ( at least it works for me) and posted it in the gwt-maven-plugin user group. https://groups.google.com/forum/#!topic/codehaus-mojo-gwt-maven-plugin-users/Lha85tfYiz4 -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread drfibonacci
http://gwt-code-reviews.appspot.com/1547804/diff/4017/samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml File samples/mobilewebapp/src/main/webapp/WEB-INF/appengine-web.xml (left):

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread rjrjr
http://gwt-code-reviews.appspot.com/1547804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread rjrjr
Back to all apt all the time. I've learned the lesson from Jeff, but don't need most of it. * We're using build-helper to expose target/generated-sources/apt as a source path (no need for clean up under the target umbrella). * We also don't need his resource setting because we are not generating

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread rjrjr
Also, David: I confirmed that we can deploy without that logging stuff, no harm. http://gwt-code-reviews.appspot.com/1547804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread drfibonacci
Jeff's fix good, no GPE change required! http://gwt-code-reviews.appspot.com/1547804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10651 committed - The DynaTable RF and Mobile Web App samples now use requestfactory-apt...

2011-09-16 Thread codesite-noreply
Revision: 10651 Author: rj...@google.com Date: Fri Sep 16 10:13:44 2011 Log: The DynaTable RF and Mobile Web App samples now use requestfactory-apt to generate the decoder needed by the rf server. Also drops some unneeded config from mwa Works with GPE Review at

[gwt-contrib] Remove uneeded samples checkstyle exception. (issue1548804)

2011-09-16 Thread nchalko
Reviewers: rjrjr, Description: Remove uneeded samples checkstyle exception. Add a comment explaining the remaining exception Please review this at http://gwt-code-reviews.appspot.com/1548804/ Affected files: M samples/common.ant.xml Index: samples/common.ant.xml

[gwt-contrib] [google-web-toolkit] r10653 committed - Changed lifecycle mapping for exec-maven-plugin to maven-processor-plu...

2011-09-16 Thread codesite-noreply
Revision: 10653 Author: drfibona...@google.com Date: Fri Sep 16 14:53:25 2011 Log: Changed lifecycle mapping for exec-maven-plugin to maven-processor-plugin http://code.google.com/p/google-web-toolkit/source/detail?r=10653 Modified: /wiki/WorkingWithMaven.wiki

[gwt-contrib] Re: Remove uneeded samples checkstyle exception. (issue1548804)

2011-09-16 Thread rjrjr
On 2011/09/16 21:23:38, Nick Chalko wrote: LGTM http://gwt-code-reviews.appspot.com/1548804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10654 committed - Remove uneeded samples checkstyle exception....

2011-09-16 Thread codesite-noreply
Revision: 10654 Author: ncha...@google.com Date: Fri Sep 16 12:34:41 2011 Log: Remove uneeded samples checkstyle exception. Add a comment explaining the remaining exception Review at http://gwt-code-reviews.appspot.com/1548804 Review by: rj...@google.com

[gwt-contrib] [google-web-toolkit] r10655 committed - Integrates r10651 to releases/2.4, DynaTable RF and Mobile Web App sam...

2011-09-16 Thread codesite-noreply
Revision: 10655 Author: gwt.mirror...@gmail.com Date: Fri Sep 16 15:47:37 2011 Log: Integrates r10651 to releases/2.4, DynaTable RF and Mobile Web App samples now use requestfactory-apt http://code.google.com/p/google-web-toolkit/source/detail?r=10655 Deleted:

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread larsenje
http://gwt-code-reviews.appspot.com/1547804/diff/8/samples/dynatablerf/pom.xml File samples/dynatablerf/pom.xml (right): http://gwt-code-reviews.appspot.com/1547804/diff/8/samples/dynatablerf/pom.xml#newcode136 samples/dynatablerf/pom.xml:136: as an additional source dir-- Probably want to call

[gwt-contrib] Re: Do RF validation via APT instead of command line. (issue1547804)

2011-09-16 Thread rjrjr
http://gwt-code-reviews.appspot.com/1547804/diff/8/samples/dynatablerf/pom.xml File samples/dynatablerf/pom.xml (right): http://gwt-code-reviews.appspot.com/1547804/diff/8/samples/dynatablerf/pom.xml#newcode136 samples/dynatablerf/pom.xml:136: as an additional source dir-- It basically