[gwt-contrib] Re: Seeking Advice on Legacy Application Migration Strategy

2024-05-03 Thread Jens
>>> >>> java.lang.UnsupportedClassVersionError: jakarta/persistence/Transient >>> has been compiled by a more recent version of the Java Runtime (class file >>> version 55.0), this version of the Java Runtime only recognizes class file >>> versions up to 52

Re: Seeking Advice on Legacy Application Migration Strategy

2024-05-01 Thread Wejden Mrabti
t;>>>> However, I encountered an issue where Hibernate 6.2 requires >>>>>> transitioning >>>>>> to Jakarta Persistence. When attempting to compile parts of my codebase, >>>>>> I >>>>>> received the following error: >>>>>> >

[gwt-contrib] Re: Seeking Advice on Legacy Application Migration Strategy

2024-05-01 Thread Wejden Mrabti
OR] Found resouce but unrecognized URL format: >> 'jrt:/java.sql/javax/sql/DataSource.class' java.lang.NoClassDefFoundError: >> javax/sql/DataSource >> >> After reviewing your discussions in the GWT contributors group, I'm >> questioning whether starting with the Hibernate

[gwt-contrib] Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-30 Thread Jens
gt; javax/sql/DataSource > > After reviewing your discussions in the GWT contributors group, I'm > questioning whether starting with the Hibernate migration is the right > approach. Should I instead prioritize migrating Java or perhaps GWT? I > would greatly appreciate your insights and a

Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-26 Thread Colin Alworth
ortedClassVersionError: jakarta/persistence/Transient >>>>> has been compiled by a more recent version of the Java Runtime (class >>>>> file >>>>> version 55.0), this version of the Java Runtime only recognizes class >>>>> file >>

Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-26 Thread Wejden Mrabti
versions up to 52.0 >>>> >>>> This suggests that I need to execute my code with JDK 11. However, when >>>> attempting to do so, I encountered the following issue: >>>> >>>> [ERROR] Found resouce but unrecognized URL format: >>>&

Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-26 Thread 'Frank Hossfeld' via GWT Users
RROR] Found resouce but unrecognized URL format: >>> 'jrt:/java.sql/javax/sql/DataSource.class' java.lang.NoClassDefFoundError: >>> javax/sql/DataSource >>> >>> After reviewing your discussions in the GWT contributors group, I'm >>> questioning wh

Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-26 Thread Wejden Mrabti
do so, I encountered the following issue: >> >> [ERROR] Found resouce but unrecognized URL format: >> 'jrt:/java.sql/javax/sql/DataSource.class' java.lang.NoClassDefFoundError: >> javax/sql/DataSource >> >> After reviewing your discussions in the GWT contributor

Re: Seeking Advice on Legacy Application Migration Strategy

2024-04-25 Thread Craig Mitchell
ecognized URL format: > 'jrt:/java.sql/javax/sql/DataSource.class' java.lang.NoClassDefFoundError: > javax/sql/DataSource > > After reviewing your discussions in the GWT contributors group, I'm > questioning whether starting with the Hibernate migration is the right > app

Seeking Advice on Legacy Application Migration Strategy

2024-04-25 Thread Wejden Mrabti
contributors group, I'm questioning whether starting with the Hibernate migration is the right approach. Should I instead prioritize migrating Java or perhaps GWT? I would greatly appreciate your insights and advice based on your experiences. Thank you, WM -- You received this message because

[gwt-contrib] Seeking Advice on Legacy Application Migration Strategy

2024-04-25 Thread Wejden Mrabti
contributors group, I'm questioning whether starting with the Hibernate migration is the right approach. Should I instead prioritize migrating Java or perhaps GWT? I would greatly appreciate your insights and advice based on your experiences. Thank you, WM -- You received this message because you

Re: Migration from 2.7.0 to 2.9.0

2023-12-19 Thread Colin Alworth
Can you share the complete build log? At a guess, there is some classpath mismatch, mixing parts of GWT 2.7 with 2.9 - the Core module is always included as an inherits for every module, even if that module is empty, so this suggests an earlier error that prevented that module from working, or

Migration from 2.7.0 to 2.9.0

2023-12-19 Thread Alexey Kuznetsov
Hello GWT Users, I'm trying to migrate very old project from GWT 2.7.0 to GWT 2.9.0 Project build with Gradle. Everything is working as expected for GWT 2.7.0, but when I update to GWT 2.9.0 build failed with message "[ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core'

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-28 Thread Mihai Stanciu
Hello Latest gflot is 3.3.0 https://github.com/nmorel/gflot BR On Wednesday, September 28, 2022 at 8:22:48 AM UTC+3 patil.p...@gmail.com wrote: > Thank you for your response, I added the scripts in our html file in its > head tag, so Ext. BLANK_IMAGE_UR related error got solved but could

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-27 Thread Pramod Patil
Thank you for your response, I added the scripts in our html file in its head tag, so Ext. BLANK_IMAGE_UR related error got solved but could see new error as com.google.gwt.core.client.JavaScriptException: (TypeError) : Cannot read properties of undefined. (reading 'BACKSPACE'), i tried to

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Thomas Broyer
Add the script tags to your HTML (alternatively, use ScriptInjector in our entrypoint), but if they're not loaded, chances are that the Ext global is not defined, so Ext.BLANK_IMAGE_URL=… fails with the above-mentioned error. On Monday, September 26, 2022 at 2:54:16 PM UTC+2

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Pramod Patil
One more thing I noticed is, we have script tags in app.gwt.xml like below

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Pramod Patil
Thank you for your response, I tried to figure out changes but as part of this migration apart from version upgrades I have added/edited below properties in app.gwt.xml. other properties are present like apart from these changes, I haven't changed any code also I could see entries

Re: GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Jens
"Cannot set properties of undefined" is the javascript equivalent of Java NullPointerException. So in your code something tried to set the property "BLANK_IMAGE_URL" on "null". -- J. patil.p...@gmail.com schrieb am Montag, 26. September 2022 um 08:48:31 UTC+2: > Hi > I having beginners

GWT Migration from 2.1.0 to 2.9.0

2022-09-26 Thread Pramod Patil
Hi I having beginners level knowledge with GWT, having task to migrate our application from GWT 2.1.0 to 2.9.0, in process, have made required changes. Application getting compiled fine but on browser its giving below error SEVERE: (TypeError) : Cannot set properties of undefined (setting

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-06 Thread Ricardo Serathiuk
to resolve it, I don't have >>> the right to edit the dependency. >>> >>> So I decided to upgrade gxt to 4.0.2, am I right? >>> >>> but when I did all the app broke, most of the Types don't exist anymore >>> and the migration is not w

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-06 Thread Jens
guous for the type > >>> StringBuffer >>> >>> After searching I thought it is imposible to resolve it, I don't have >>> the right to edit the dependency. >>> >>> So I decided to upgrade gxt to 4.0.2, am I right? >>> >>&g

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-06 Thread Lorenzo Aditi
fter searching I thought it is imposible to resolve it, I don't have the >> right to edit the dependency. >> >> So I decided to upgrade gxt to 4.0.2, am I right? >> >> but when I did all the app broke, most of the Types don't exist anymore >> and the migration

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-05 Thread Lorenzo Aditi
endency. >> >> So I decided to upgrade gxt to 4.0.2, am I right? >> >> but when I did all the app broke, most of the Types don't exist anymore >> and the migration is not well documented on sencha website, they provide a >> unique page that doesn't help. >>

Re: GXT 2.3.1 to 4.0.2 migration

2022-08-05 Thread Ricardo Serathiuk
r the type > > StringBuffer > > After searching I thought it is imposible to resolve it, I don't have the > right to edit the dependency. > > So I decided to upgrade gxt to 4.0.2, am I right? > > but when I did all the app broke, most of the Types don't exist anymore > and t

GXT 2.3.1 to 4.0.2 migration

2022-08-05 Thread Lorenzo Aditi
I did all the app broke, most of the Types don't exist anymore and the migration is not well documented on sencha website, they provide a unique page that doesn't help. Do you have a tutorial or a guide that helps? or maybe a workaround? Thanks -- You received this message because you are

[gwt-contrib] Re: gwtproject.org migration, https support

2022-04-03 Thread Max Fromberger
d hosting: > > >- HTTPS is now supported and enabled, though not yet mandatory, to > allow a period of migration, and making sure that no downstream tools will >break as a result of these changes. HSTS is also disabled for now. I >propose that mid-week I will upd

Re: [gwt-contrib] gwtproject.org migration, https support

2022-03-28 Thread 'Goktug Gokdogan' via GWT Contributors
t; name server and new hosting, at Google's request. There are a few small >> differences from the old hosting: >> >> >>- HTTPS is now supported and enabled, though not yet mandatory, to >>allow a period of migration, and making sure that no downstream tools will >

Re: [gwt-contrib] gwtproject.org migration, https support

2022-03-28 Thread Juan Pablo Gardella
S is now supported and enabled, though not yet mandatory, to > allow a period of migration, and making sure that no downstream tools will >break as a result of these changes. HSTS is also disabled for now. I >propose that mid-week I will update this to always redirect to HTTPS, a

[gwt-contrib] gwtproject.org migration, https support

2022-03-28 Thread Colin Alworth
We've successfully migrated the gwtproject.org website to a new domain name server and new hosting, at Google's request. There are a few small differences from the old hosting: - HTTPS is now supported and enabled, though not yet mandatory, to allow a period of migration, and making

Re: GWT - Angular/React Migration & Integration

2020-04-27 Thread Peter Donald
FWIW A couple of years ago we decided to move away from GWT and move to react+mobx+typescript under the assumption we could produce apps faster. After several months in that world, we came back to the GWT world. Mostly this was due to productivity. Except for some legacy applications we don't use

Re: GWT - Angular/React Migration & Integration

2020-04-27 Thread Thomas
Thanks Howard. Definitely not planning a deep integration... Interesting insight about GWT vs JS in terms of productivity. GWT always felt 'enterprise' to me with large apps in mind. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: GWT - Angular/React Migration & Integration

2020-04-24 Thread Howard Yeh
Similar situation. Our single page app SPA is actually made up of many separate sub pages, thus we stayed with GWT root and "injected" Angular by adding new url/page in Angular, and thus breaking the SPA experience a bit but we try to pass some info over to make it less jarring and more

Re: GWT - Angular/React Migration & Integration

2020-04-21 Thread Thomas Buckel
It does somehow. I reminded myself of that today as well. Guess it just feels unusual to me at this stage. Also investigating the iFrame option. On Tue, 21 Apr 2020 at 20:23, Michael Conrad wrote: > Don't know if this will help, but you can set the rootpanel for a GWT > component using an id,

Re: GWT - Angular/React Migration & Integration

2020-04-21 Thread Michael Conrad
Don't know if this will help, but you can set the rootpanel for a GWT component using an id, say on a div tag. On 4/20/20 8:00 PM, Thomas wrote: Thanks Jens. If I paraphrase in my words, you would keep the "shell" (menu items etc) and have iFrames for new functionality? Sounds like a

Re: GWT - Angular/React Migration & Integration

2020-04-20 Thread Thomas
Thanks Jens. If I paraphrase in my words, you would keep the "shell" (menu items etc) and have iFrames for new functionality? Sounds like a reasonable approach, although I'd prefer to have the "shell" in the new technology and have iFrames for the old GWT modules. Have you come across any

Re: GWT - Angular/React Migration & Integration

2020-04-17 Thread Jens
Kind of in the same situation and I figured that using an iframe approach is probably the best idea. So you would need to refactor your app in a way that you can launch an external application in an iframe for a given menu item, basically the content area in your app should be an iframe. That

GWT 2.8 Migration RPC failure - undefined tokens

2017-06-14 Thread Tyler Matthews
Hi all, After migrating to GWT 2.8, our project some of our RPC's seem to be failing during deserialization with 'undefined' members within the token list, ex: "203f-d320-6bd3-996b-dec5-99de-d899-53d8, 1, 2, 3, 4, 2, 5, 6, 7, undefined, 15, 6, 2017". Strangely, some RPC calls do work and do

Re: GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-18 Thread Alain Ekambi
Try ext4j.our gwt wrap per for ext js. we used it to write Dikalo https://www.dklo.co it Supports GWT 2.7 Am 12.12.2016 18:09 schrieb : > Hi, > > I have recently started migrating my application from GWT 1.7 to GWT 2.7. > With a limited availability of information

Re: GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-17 Thread 敏陈
just try it if makes Error post it out! 在 2016年12月13日星期二 UTC+8上午1:09:55,venkata...@gmail.com写道: > > Hi, > > I have recently started migrating my application from GWT 1.7 to GWT 2.7. > With a limited availability of information online I was finding difficulty > in updating. > > Currently my

GWT 1.7 to 2.7(migration). EXT-JS help

2016-12-12 Thread venkatasaimada
Hi, I have recently started migrating my application from GWT 1.7 to GWT 2.7. With a limited availability of information online I was finding difficulty in updating. Currently my 1.7 GWT application runs on GWTEXT 2.0.4. and the last released GWTEXT version in the market is

Re: Oracle Forms to GWT Migration

2015-07-23 Thread Mia Urman
user interfaces that can run a webservices. Mia On Wednesday, July 22, 2015 at 9:49:02 AM UTC-4, Anand Deshmukh wrote: Has anyone done Oracle forms to GWT migration? Anyone has used any tool instead of rewrite approach? Any pointers in this area is highly appreciated. -- You received

Oracle Forms to GWT Migration

2015-07-22 Thread Anand Deshmukh
Has anyone done Oracle forms to GWT migration? Anyone has used any tool instead of rewrite approach? Any pointers in this area is highly appreciated. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: GSS migration: mixin definition for a transition with multiple transition-property

2015-04-25 Thread Ed
I had the same issue and played a bit more with it, and found some strange behavior. To be able to specify transitions for 2 css properties I defined the following mixin: @defmixin transition2(VALUE1, VALUE2) { -webkit-transition: VALUE1, VALUE2; -moz-transition: VALUE1, VALUE2;

Re: GSS migration: mixin definition for a transition with multiple transition-property

2015-04-21 Thread Julien Dramaix
You can open a issue to track this problem but it has to be fixed in closure stylesheet directly. On Monday, April 20, 2015 at 4:18:16 PM UTC+2, Benjamin V. wrote: Yes, that works. But it is a bit unintuitive as I have multiple different transitions properties in one stylesheet. So I have to

GSS migration: mixin definition for a transition with multiple transition-property

2015-04-20 Thread Benjamin V.
migration of the old code? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email

Re: GSS migration: mixin definition for a transition with multiple transition-property

2015-04-20 Thread Benjamin V.
Yes, that works. But it is a bit unintuitive as I have multiple different transitions properties in one stylesheet. So I have to define multiple similiar property variables which are all only used once. Am Montag, 20. April 2015 15:55:22 UTC+2 schrieb Jens: Does it work if you create a

Re: GSS migration: mixin definition for a transition with multiple transition-property

2015-04-20 Thread Jens
Does it work if you create a constant for the properties? E.g.: @def MY_TRANSITION_PROPERTIES opacity .5s linear 0s, visibility 0s linear .5s; .class { @mixin transitions(MY_TRANSITION_PROPERTIES); } -- J. -- You received this message because you are subscribed to the Google Groups

Re: GWT 2.0.3 migration issue = java.lang.AssertionError: Not enough methods, expecting 3 saw 2

2014-11-21 Thread Gustavo Apolaya Csirke
Hi, I have the same problem. what did you do? Thanks. El miércoles, 19 de mayo de 2010 19:49:46 UTC+2, lmolinero escribió: Hi, I've run into a problem after migrating form GWT 1.7 to GWT 2.0.3 one of my rpc is failling in 2.0.3 and throwing this: java.lang.AssertionError: Not enough

Migration of Mvp4g 0.9 to 1.4

2014-03-19 Thread Abhishek Gupta
Hi, Currently my project uses Mvp4g 0.9 with GWT 1.7. Now we are upgrading GWT to 2.5.1. What are the code changes will be required? Thanks in advance -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and

GWT RPC Serialization stops working when migration from 2.4.0 to 2.5.1

2013-03-25 Thread Paulo Martins
I've updated my project from GWT 2.4.0 to GWT 2.5.1 and suddenly a specific RPC serialization has stopped work (all other are still working). I have this class: public class StatusChangeMapEntity extends RecordStamp implements Serializable { private HashMapWFStatus, PairWFPhase,

Re: GWT RPC Serialization stops working when migration from 2.4.0 to 2.5.1

2013-03-25 Thread Michael Prentice
Have you cleared out your gwt-unitCache? On Monday, March 25, 2013 1:01:28 PM UTC-4, Paulo Martins wrote: I've updated my project from GWT 2.4.0 to GWT 2.5.1 and suddenly a specific RPC serialization has stopped work (all other are still working). I have this class: public class

Re: GWT RPC Serialization stops working when migration from 2.4.0 to 2.5.1

2013-03-25 Thread Paulo Martins
Michael, I've cleaned up and rebuilt the whole project. The strange stuff here is that the unique RPC methods that fails are the methods that transport this object. On Monday, March 25, 2013 5:09:24 PM UTC, Michael Prentice wrote: Have you cleared out your gwt-unitCache? On Monday, March

Re: GWT RPC Serialization stops working when migration from 2.4.0 to 2.5.1

2013-03-25 Thread Paulo Martins
I've managed to solve this problem. Basically I've created a class extending the HashMap: public class MapStatusChanges extends HashMapWFStatus, PairWFPhase, ArrayListPairAppUser, Date { ... } And then created a CustomSerializer to the MapStatusChanges. It's not a generic solution, but

Migration to GWT 2.4 - RequestFactory validation tool not running

2012-08-05 Thread Aldo Neto
Hi, I'm currently running my project under GWT 2.3 and trying to migrate to GWT 2.4. However, the Validation Tool is not running. The code compiles just fine and I get the URL to load the project, but when I do load it, I get the following error message: *The RequestFactory ValidationTool must

GWT Incubator deprecation and ScrollTables migration to DataGrid on gwt 2.4

2011-11-10 Thread Darkman97i
Several days ago I've been noticied gwt incubator becomes deprecated library and there's a migration plan to GWT general trunk. In my case really I only take advantage using gwt-incubator of ScrollTable. I've been making some testing on new GWT 2.4 widget, DataGrid, CellTable, etc... I pay

Re: GWT Incubator deprecation and ScrollTables migration to DataGrid on gwt 2.4

2011-11-10 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6401 -- 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/-/oOp0ZVkISjYJ. To post to

GWT Incubator Migration

2011-11-01 Thread cchild
I've inherited an application that uses GWT 2.0 and the GWT Incubator. I need to update the application to the latest GWT release and migrate the incubator widgets to mainline GWT widgets. The application uses the following widgets from the incubator jar:

Re: GWT Incubator Migration

2011-11-01 Thread Thomas Broyer
GWTCanvas can be replaced by http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/canvas/client/Canvas.html And the table widgets can be replaced, with a bit of work, by a CellTable or DataGrid:

Re: SmartGWT migration to 2.4 version

2011-10-09 Thread Patrick Tucker
Did you check the release notes to ensure that the version of Smart GWT that you are using is compatible with the version of GWT that you are using? Smart GWT 2.5 lists compatibility from 1.6 to 2.3 of GWT or something like that... On Oct 7, 8:36 am, Boris H squarepusher...@gmail.com wrote: I

SmartGWT migration to 2.4 version

2011-10-07 Thread Boris H
I am migrating my app from 1.7 release to 2.4. The application is a wizard. I've updated jars to new versions, but faced with a problem: my app does not start at all: the Object required exception is raised from browser side. The explorer's stacktrace: -JScript anonymous function -gwtOnLoad

Re: migration from 2.1 to 2.3 problem

2011-07-07 Thread dpwrussell
Hi, I was relieved to not be the only one having this problem and it did solve it for GWT only project. GWT + GXT still fails though, at the moment I can't build at all. The OP actually has GXT stuff as well so thus I'm following this up here. [gwt:compile] auto discovered modules

Re: migration from 2.1 to 2.3 problem

2011-05-22 Thread m0rganic
This problem can creep up in a number of ways, the main issue is that you do not have the validation-api-1.0.0.GA.jar on your classpath. I ran into this issue using maven to build my eclipse project. Someone from the gwt 2.3 forgot to include the validation-api jar as a dependency in the maven

migration from 2.1 to 2.3 problem

2011-05-21 Thread Sleem
Dears I have built an application using the GWT Eclipse plugin + GXT, when I migrated to the new SDK 2.3 (Window-preferences-google-web toolkit) and recompiled my app it gave the following errors Compiling module XXX Validating newly compiled units [ERROR] Errors in

Migration issue

2011-05-03 Thread ruslan.mukhammad
Before I worked with GWT 2.1 M1 version and all functions worked normally without any exception. But when I moved to GWT 2.2 version, UI side works fine, but I can't receive any data from server side using RPC call. The exception is: SEVERE: Exception while dispatching incoming RPC call

Re: Migration issue

2011-05-03 Thread Juan Pablo Gardella
Are you use gin or another gwt library ? 2011/5/3 ruslan.mukhammad ruslan.mukham...@gmail.com Before I worked with GWT 2.1 M1 version and all functions worked normally without any exception. But when I moved to GWT 2.2 version, UI side works fine, but I can't receive any data from server side

Re: Migration issue

2011-05-03 Thread David Chandler
I'm not familiar with org.gwtwidgets.server.spring.GWTRPCServiceExporter. Does it have a client-side piece that might need to be recompiled with GWT 2.2? /dmc On Tue, May 3, 2011 at 11:04 AM, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: Are you use gin or another gwt library ?

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread natas
Christofer and Juan, Thank you very much for your answers. Indeed that seems to be the problem. But I can't get it to work... These are the steps I've performed: - Configured my project to use GWT SDK 2.2.0 - Downloaded both gin-1.5 and gwtp-all-0.5.1 - Added all the jars to war/WEB-INF/lib/

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread natas
Christofer and Juan, Thank you very much for your answers. Indeed that seems to be the problem. But I can't get it to work... These are the steps I've performed: - Configured my project to use GWT SDK 2.2.0 - Downloaded both gin-1.5 and gwtp-all-0.5.1 - Added all the jars to war/WEB-INF/lib/

Re: Unable to run GWTP app after migration to 2.2

2011-03-13 Thread Christian Goudreau
You forgot the Gin 1.5 dependencies. http://code.google.com/p/gwt-platform/wiki/PortingV1#Dependencies http://code.google.com/p/gwt-platform/wiki/PortingV1#DependenciesCheers, On Sun, Mar 13, 2011 at 2:01 PM, natas ribeiro.si...@gmail.com wrote: Christofer and Juan, Thank you very much for

Re: Unable to run GWTP app after migration to 2.2

2011-03-10 Thread Juan Pablo Gardella
You need gin 1.5. This version is compatible with GWT 2.2.0 2011/3/9 natas ribeiro.si...@gmail.com I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10

Re: Unable to run GWTP app after migration to 2.2

2011-03-09 Thread natas
I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10 r137 and gwt- p 0.5, the code compiles fine but when I try to run the app i end up with the following

Re: Unable to run GWTP app after migration to 2.2

2011-03-09 Thread Christofer Jennings
You need to get GWTP 0.6 for GWT 2.2.0 see: http://groups.google.com/group/gwt-platform/browse_thread/thread/21e40e8d332a667e# Hope this helps. ,boz On Mar 9, 2011, at 3:56 PM, natas wrote: I'm having the same issue :s On Feb 21, 9:18 pm, Karthik karthik...@gmail.com wrote: I need a

Unable to run GWTP app after migration to 2.2

2011-02-22 Thread Karthik
I need a solution to the following problem : I am running eclispe 3.6, GWT 2.2, Guice 3.0 rc2, gin 10 r137 and gwt- p 0.5, the code compiles fine but when I try to run the app i end up with the following error : 13:40:24.062 [ERROR] [gwtphplacesample] Failed to create an instance of

Error In new mvp framework migration from GWT 2.1 and 2.1.1

2010-12-28 Thread Rom
Hi, I have try to test the migration from 2.1 to the new 2.1.1. I'm just updating under eclipse with the quick fix wizard the class jars libraries on the MVP sample code from documentation site : http://code.google.com/p/google-web-toolkit/downloads/detail?name=Tutorial-hellomvp-2.1.zip. Then I'm

Re: Error In new mvp framework migration from GWT 2.1 and 2.1.1

2010-12-28 Thread Thomas Broyer
On Tuesday, December 28, 2010 12:23:02 AM UTC+1, Rom wrote: com.google.gwt.dev.shell.HostedModeException: Something other than a boolean was returned from JSNI method '@com.google.gwt.user.client.impl.HistoryImplTimer::init()': JS value of type JavaScript object(33), expected boolean

Re: Error In new mvp framework migration from GWT 2.1 and 2.1.1

2010-12-28 Thread Romain Gilles
I'm so sorry, I have just tested it with firefox and it's working perfectly. Thank you for you help and just show me that I should look at the bug tool before asking. Just for those who will be faced to the same issue my current version of Chrome is 10.0.612.3 dev. Thanks again. Regards,

GWT 2.1 Migration Experiment

2010-10-29 Thread buz...@gmail.com
or described somewhere? I know about Code Splitting, but we have not migrated to that in this particular project. For further details I need to go inside SOYC reports. In the meanwhile it would be interesting to know other project's experience in migration and difference in JS size and compile time

Re: GWT 2.1 Migration Experiment

2010-10-29 Thread John LaBanca
know about Code Splitting, but we have not migrated to that in this particular project. For further details I need to go inside SOYC reports. In the meanwhile it would be interesting to know other project's experience in migration and difference in JS size and compile time. The good news

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-20 Thread jlabanca
We need to update the Expenses sample with these changes. http://gwt-code-reviews.appspot.com/898801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-20 Thread rchandia
Yes, we are working on that. the current approach is to make RF work with both Strings and Longs instead of migrating Expenses to Strings. On 2010/09/20 16:13:39, jlabanca wrote: We need to update the Expenses sample with these changes. http://gwt-code-reviews.appspot.com/898801/show --

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-19 Thread rjrjr
LGTM On 2010/09/19 22:53:22, rchandia wrote: http://gwt-code-reviews.appspot.com/898801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Migration from Long IDs to String IDs (issue898801)

2010-09-18 Thread rchandia
Reviewers: rjrjr, Description: Migration from Long IDs to String IDs Please review this at http://gwt-code-reviews.appspot.com/898801/show Affected files: M samples/dynatablerf/src/com/google/gwt/sample/dynatablerf/client/widgets/SummaryWidget.java M samples/dynatablerf/src/com/google

[gwt-contrib] Re: Migration from Long IDs to String IDs (issue898801)

2010-09-18 Thread Ray Ryan
LGTM On Sat, Sep 18, 2010 at 1:10 PM, rchan...@google.com wrote: Reviewers: rjrjr, Description: Migration from Long IDs to String IDs Please review this at http://gwt-code-reviews.appspot.com/898801/show Affected files: M samples/dynatablerf/src/com/google/gwt/sample/dynatablerf

[gwt-contrib] [google-web-toolkit] r8259 committed - Light weight collections gwt-user migration branch.

2010-06-15 Thread codesite-noreply
Revision: 8259 Author: gwt.mirror...@gmail.com Date: Tue Jun 15 12:54:45 2010 Log: Light weight collections gwt-user migration branch. http://code.google.com/p/google-web-toolkit/source/detail?r=8259 Added: /branches/lwc-gwt-migration -- http://groups.google.com/group/Google-Web-Toolkit

GWT 2.0.3 migration issue = java.lang.AssertionError: Not enough methods, expecting 3 saw 2

2010-05-20 Thread lmolinero
Hi, I've run into a problem after migrating form GWT 1.7 to GWT 2.0.3 one of my rpc is failling in 2.0.3 and throwing this: java.lang.AssertionError: Not enough methods, expecting 3 saw 2 at com.google.gwt.user.client.rpc.impl.SerializerBase.check(SerializerBase.java: 165) at

migration from GWT 1.4 to GWT 1.7 throwing exception content type was text/palin

2010-03-28 Thread pravn
Hi, After migrating to GWT 1.7 from GWT 1.4 we are getting an exception saying content type was text/plain; Expcted text/x-gwt-rpc. Can anyone suggest what might be the reason? Is there any configuration changes required? We have checked the jar files used and all of them are from GWT 1.7

Re: Migration Traditional Web to GWT

2010-02-25 Thread Fabio Kaminski
i guess you have a list of options to consider... * Develop you application in GWT and deploy in the Google Apps using the Google datacenter and possibly (in behind) BigTable. Thats a good option if you dont depend too much of external communication, as google Apps its a little bit restrictive

Migration Traditional Web to GWT

2010-02-24 Thread Kimseng
Dear Sir, I would like your idea on how to convert my existing web application developed on Maven, Struts 1, Hibernate and Mysql to GWT and BigTable Data Store. Happy to get any idea on this. Thanks -- You received this message because you are subscribed to the Google Groups Google Web

Re: Migration Problem (From 1.5 to 2.0)

2009-12-17 Thread Haydar
I think I found the problem. One of the projects in my system has nocache.js file but the other one doesn't have. How can I solve this? On 17 Aralık, 09:33, Haydar haydarim...@gmail.com wrote: Hi Keith, Thanks for your answer. I have managed to overcome this problem. Now it's working. But now

Migration Problem (From 1.5 to 2.0)

2009-12-16 Thread Haydar
Hi, I had a project in GWT 1.5 and I decided to migrate to GWT 2.0 In my project I had my servlet declarations in gwt.xml file. But I think GWT 2.0 looks for them in web.xml. I have done what is told on gwt site about migrating and then ran my project in devmode. But it gives me this warning:

Re: Migration Problem (From 1.5 to 2.0)

2009-12-16 Thread Keith Platfoot
Hi Haydar, Since version 1.6, GWT projects have a new canonical structure that includes a top-level directory named war, where GWT expects to find your publicly-served HTML/CSS, as well as various configuration files (including the web.xml with your servlet declarations, inside a WEB-INF

Re: Migration Problem (From 1.5 to 2.0)

2009-12-16 Thread Haydar
Hi Keith, Thanks for your answer. I have managed to overcome this problem. Now it's working. But now another problem occured. My System consists of two projects. One for log-in and user roles etc. The other one has the screens. Now I can login to the system but I can't see any of the screens, no

migration

2009-09-28 Thread muhannad nasser
hi does anyone know a good websites or documents on how to migrate from gwt 1.5 to gwt 1.7 and what i need to change in the codes.. thanks ~~~With Regards~~~ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: migration

2009-09-28 Thread Thomas Broyer
On 28 sep, 10:38, muhannad nasser muhannadna...@gmail.com wrote: hi does anyone know a good websites or documents on how to migrate from gwt 1.5 to gwt 1.7 and what i need to change in the codes.. How about the GWT documentation?

Re: migration

2009-09-28 Thread muhannad nasser
thanks.. i am reading how to update from 1.5 to 1.6and because 1.7 is mostly a bug fixing version i think i won't find much deferences between 1.6 and 1.7 any better ideas... thanks On Mon, Sep 28, 2009 at 10:49 AM, Thomas Broyer t.bro...@gmail.com wrote: On 28 sep, 10:38, muhannad

Re: migration

2009-09-28 Thread muhannad nasser
lol i figured out to do the same as the documentation says :P On Mon, Sep 28, 2009 at 11:01 AM, muhannad nasser muhannadna...@gmail.comwrote: thanks.. i am reading how to update from 1.5 to 1.6and because 1.7 is mostly a bug fixing version i think i won't find much deferences

Re: Migration from 1.5 to 1.6 and 1.7

2009-09-28 Thread Rajeev Dayal
Hey Robert, Just to be clear, you do not have any jars on your classpath or build path that contain Xerces? If you actually list all of the class files in the jars, are there any Xerces classes listed? Rajeev On Tue, Sep 8, 2009 at 3:27 PM, Robert Cooper keber...@gmail.com wrote: I am

Re: Migration from 1.5 to 1.6 and 1.7

2009-09-25 Thread Sujay
Thanks for posting this, it definitely saved me a couple of hours of aggravation. Removing the xerces jar fixed the problem for me. On Aug 21, 12:59 pm, Sumit Chandel sumitchan...@google.com wrote: Hi Erik, Are you using XercesImpl classes in your actual application code? If not, try removing

Re: Migration from 1.5 to 1.6 and 1.7

2009-09-08 Thread Robert Cooper
I am getting this as well. I never had Xerces in my project, but attempted to add it to fix this problem to no avail. Is there any resolution here? On Aug 21, 12:59 pm, Sumit Chandel sumitchan...@google.com wrote: Hi Erik, Are you using XercesImpl classes in your actual application code? If

  1   2   >