Re: Problem with GWT?

2024-03-30 Thread Colin Alworth
There really isn't enough information here to guess what is happen - what else could have changed, like server version or configuration, any errors in your browser dev tools console? On Tuesday, March 26, 2024 at 2:57:37 PM UTC-5 germ...@gmail.com wrote: > When I access the web page, it remains

Problem with GWT?

2024-03-26 Thread Germán Díaz
When I access the web page, it remains blank. I tried different browsers, even on different computers, and they all showed the same problem. I am using the gwt-2.8.2 SDK Until a few days ago, was it working correctly? The curious thing is that the website works locally, that is, it is normally

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-11 Thread Jens
Generally Java 17 works for running GWT but source level still needs to be 11 for GWT client/shared code as GWT only supports compiling Java 11 source files. Server code can be anything. If you use GWT-RPC you might need to add some --add-opens to your server JVM: https://github.com/gwtproject/

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread 'Frank Hossfeld' via GWT Users
I think so, as long as you are not using any language features of Java > 8 Victor Colina schrieb am Freitag, 8. Dezember 2023 um 14:55:58 UTC+1: > Thanks for the response, If I change to GWT 2.9 I can still use jdk 17? Or > I have to go lower? > > On Friday, December 8, 2023 at 9:05:37 AM UTC-4

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread Victor Colina
Thanks for the response, If I change to GWT 2.9 I can still use jdk 17? Or I have to go lower? On Friday, December 8, 2023 at 9:05:37 AM UTC-4 Frank Hossfeld wrote: > Assuming you are using GWT 2.10.0, GXT expects a few things, (f.e.: > user-agent ie8) which have been removed in GWT 2.10.0. > Y

Re: user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-08 Thread 'Frank Hossfeld' via GWT Users
Assuming you are using GWT 2.10.0, GXT expects a few things, (f.e.: user-agent ie8) which have been removed in GWT 2.10.0. You have to stay with GWT 2.9.0. (see: https://docs.sencha.com/gxt/4.x/guides/announcements/Announcements.html) Victor Colina schrieb am Donnerstag, 7. Dezember 2023 um 17:4

user.agent problem with GWT 2.1.0 and GXT 4.1

2023-12-07 Thread Victor Colina
I'm trying to compile a simple GWT project with GXT 4. The compilation works unitl I add the gxt. [image: imagen_2023-12-07_124453814.png] This is my gwt.xml file. [image: imagen_2023-12-07_124712961.png] If anybody can help me, thanks in advance. -- You received this message because you a

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
https://github.com/gwtproject/gwt/issues/9463 -- You received this message because you are subscribed to the Google Groups "GWT Users" 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

Re: Problem with GWT 2.8

2016-11-20 Thread Colin Alworth
At least it is inconsistent with what the JVM would do, and appears to be different from what was seen in earlier versions of GWT. Can you file this at github.com/gwtproject/gwt/issues? On Sunday, November 20, 2016 at 5:35:44 PM UTC-6, Kevin Langille wrote: > > Thanks for the reply. > > Compilin

Re: Problem with GWT 2.8

2016-11-20 Thread Kevin Langille
Thanks for the reply. Compiling with pretty shows the issue. if (!(Math.abs(x - y) < 0.0001)) gets turned into if (Math.abs(x - y) >= 0.0001) So when Math.abs(x - y) results in NaN the if always results in false. In my mind this is a mistake because it doesn't accurately represent what is ha

Re: Problem with GWT 2.8

2016-11-20 Thread Jens
> I am testing on Windows 10, Chrome, JDK 1.8.0_111. I also reproduced the > issue in Firefox, edge and IE11. > Compile your app for production but use -style PRETTY so you can better search in the final JS output. Then search the method name containing your failing code and compare the gener

Re: Problem with GWT 2.8

2016-11-19 Thread Kirill Prazdnikov
All cmp operations with NaN returns false. -- You received this message because you are subscribed to the Google Groups "GWT Users" 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, s

Re: Problem with GWT 2.8

2016-11-16 Thread Kevin Langille
Additional information Running superdev mode from Intellij failed to show the error, only once our product was compiled is the error visible. I tested using log statements to show the values of the expressions. I am testing on Windows 10, Chrome, JDK 1.8.0_111. I also reproduced the issue in F

Re: Problem with GWT 2.8

2016-11-16 Thread Kevin Langille
Sorry I should have mentioned. I was unable to see it using superdev mode in Intellij. Only once compiled did the error show. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Problem with GWT 2.8

2016-11-16 Thread vitrums
Math.abs(Double.NaN) < 0.0001 = false !(Math.abs(Double.NaN) < 0.0001) = true tested with jdk1.8.0_111, IDE Eclipse neon, gwt2.8.0, superdev mode, browser Chrome On Wednesday, November 16, 2016 at 10:13:26 AM UTC+3, Kevin Langille wrote: > > Hi everyone, > > I have discovered a strange behavior i

Problem with GWT 2.8

2016-11-15 Thread Kevin Langille
Hi everyone, I have discovered a strange behavior in GWT 2.8. We were experiencing a bug in our code and I have boiled it down to one line in the client side code. The following line returns false which is expected. Math.abs(Double.NaN) < 0.0001 But applying not operator to the same line also

Re: Problem with GWT 2.8, Ant, and Eclipse

2016-11-02 Thread rjcarr
rable among other old errors. > > This is really strange because I never had a problem with gwt 2.7. Any > suggestion on how to fix this other than reverting back to 2.7? > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To un

Problem with GWT 2.8, Ant, and Eclipse

2016-11-02 Thread rjcarr
esets aren't iterable among other old errors. This is really strange because I never had a problem with gwt 2.7. Any suggestion on how to fix this other than reverting back to 2.7? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To u

Problem with GWT RPC and Enhanced classes that are not.

2016-10-28 Thread Will Phillips
I have recently run into a problem with GWT RPC. I use Hibernate and I send my entities over the wire using GWT-RPC. Object graphs are transformed before they are sent to the client to snip unwanted references and replace lazy loading collections, similar to Gilead if my understanding is

Re: Problem with GWT 2.5.1 + FF 40

2015-10-12 Thread Kearnel Tim
Thanks Andre for your brilliant hack, it mitigate our problems too. 在 2015年10月2日星期五 UTC下午12:46:44,André写道: > > Thanks for the quick reply Daniel! > > As a short term fix I added > > > > > > > to my App.gwt.xml which seems to fix our problems as it doesn't override > decodeFragment(). As a

Re: Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread André
Thanks for the quick reply Daniel! As a short term fix I added to my App.gwt.xml which seems to fix our problems as it doesn't override decodeFragment(). As a long term solution I'll attempt an upgrade to 2.7.0. Cheers André On Friday, October 2, 2015 at 10:23:08 AM UTC+2, Daniel Kurk

Re: Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread Daniel Kurka
This has been fixed in GWT 2.7.0. We refactored the history implementation to not special case Firefox in this particular way. Just updating to GWT 2.7 will fix this issue for you. If that is not possible here is the main patch to make history work: https://gwt-review.googlesource.com/#/c/5356/

Problem with GWT 2.5.1 + FF 40

2015-10-02 Thread André
Hello GWT users! We still use GWT 2.5.1 and can't update it quickly. Firefox v41 was released last week and came with this seemingly minor modification that makes our app unusable. Looks like this isn't c

Re: HTTP Referer problem with GWT

2014-09-05 Thread Jens
> > When is 2.7 scheduled to release? > I think I have read somewhere (here or on G+) that RC1 might happen at the end of september. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receivin

Re: HTTP Referer problem with GWT

2014-09-05 Thread Jens
> > How can I use the xsiframe linker? > > What impact will this have on my webapp? If I still use the devMode will > it break it? > The only difference is that permutations are now js files and not html files. So if you don't do anything special with the GWT compiler output (e.g. matchi

Re: HTTP Referer problem with GWT

2014-09-05 Thread JoyaleXandre
How can I use the xsiframe linker? What impact will this have on my webapp? If I still use the devMode will it break it? Le vendredi 5 septembre 2014 11:31:47 UTC-4, Jens a écrit : > > Maybe use the xsiframe linker which produces *.cache.js files instead of > html files. The xsiframe linker will

Re: HTTP Referer problem with GWT

2014-09-05 Thread Alexandre Joyal
When is 2.7 scheduled to release? On Fri, Sep 5, 2014 at 11:31 AM, Jens wrote: > Maybe use the xsiframe linker which produces *.cache.js files instead of > html files. The xsiframe linker will be the default in GWT 2.7 anyways. > > -- J. > > -- > You received this message because you are subscr

Re: HTTP Referer problem with GWT

2014-09-05 Thread Jens
Maybe use the xsiframe linker which produces *.cache.js files instead of html files. The xsiframe linker will be the default in GWT 2.7 anyways. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and sto

HTTP Referer problem with GWT

2014-09-05 Thread JoyaleXandre
Hello guys, I'm using the HTTP Referer header in my login page to redirect the user to the page he was after a successful login. I use "document.referrer" in the HTML/Javascript stand alone page. The problem is that with the newest version of Firefox and Chrome the referrer includes the GWT cac

Re: Compiling problem with GWT Compiler

2014-04-10 Thread Davide Cerbo
How many local workers? I advice to you to give a look to http://tedvinke.wordpress.com/2013/03/21/gwt-compiler-is-running-out-of-memory/ bye, Davide 2014-04-10 13:44 GMT+02:00 Minjin19 : > Hi everyone, > > Im having big issues with the compilation of my project, there is already > a GWT Web

Compiling problem with GWT Compiler

2014-04-10 Thread Minjin19
Hi everyone, Im having big issues with the compilation of my project, there is already a GWT Web application running. As a side-project I now want to make a mobile application of my already existing GWT Web application. I already changed some widgets from GWT to mgwt and the project runs wi

Problem with GWT 2.5.1 and Kindle paperwhite user agent

2013-10-29 Thread Eduardo José Cepas Quiñonero
Hi everyone, I am using GWT 2.5.1 and I am accesing to a .war depolyed with Tomcat 7.0.32, using the browser of a Kindle paperwhite model No. EY21. The problem is that GWT cannot get the user-agent of the Kindle correctly, I mean, I get the following values: - *From my server*: ge

Re: Problem with GWT+Hibernate

2013-10-02 Thread Jens
Change to Then please google for some GWT + Hibernate tutorials as your code also has some other flaws. First you wan to share a hibernate entity which is not that easy because hibernate rewrites your entity class which causes GWT to throw serialization exceptions and second if you use l

Re: IE9 problem with GWT

2013-05-24 Thread Adolfo Panizo Touzon
Have played with the z-index property? On Tue, May 21, 2013 at 4:00 PM, Honza Rames wrote: > If you display the message in DialogBox (or PopupPanel), are you > displaying glass to darken the window? If so doesn't the glass overlap your > message? It could be a problem of layouting, are you usin

Re: IE9 problem with GWT

2013-05-21 Thread Honza Rames
If you display the message in DialogBox (or PopupPanel), are you displaying glass to darken the window? If so doesn't the glass overlap your message? It could be a problem of layouting, are you using multiple z-orders in your app? These issues should be easy to figure out in developer tools that

Re: IE9 problem with GWT

2013-05-21 Thread Juan Pablo Gardella
How do you show messages? 2013/5/21 Mike > GWT Release: 2.5.0 > > Browser: IE9 > Our clients have a problem using our web application because, on IE9, when > the application shows a message (i.e., to confirm if a file is uploaded or > not), the focus > remains behind the message shown and it

IE9 problem with GWT

2013-05-21 Thread Mike
GWT Release: 2.5.0 Browser: IE9 Our clients have a problem using our web application because, on IE9, when the application shows a message (i.e., to confirm if a file is uploaded or not), the focus remains behind the message shown and it is impossible to interact with the message, so you can'

Re: Problem With GWT 2.5.1 and Postgres 9.2. JDBC Driver

2013-04-24 Thread kim young ill
are you using app-engine ? it doesnt support everything your normal jdk would do (e.g no network connection), that's why your db-connection fails. try without app-engine On Sat, Apr 20, 2013 at 11:00 AM, wrote: > Hello, > > I try to set up a small GWT application which should do a simple SQL qu

Problem With GWT 2.5.1 and Postgres 9.2. JDBC Driver

2013-04-24 Thread tsstnet
Hello, I try to set up a small GWT application which should do a simple SQL query to Postgres SQL 9.2. Tests are based on GWT demo GreetingService. Server side greeting service has now following constructor: public GreetingServiceImpl() { System.out.println("Konstruktor"); t

Re: problem with gwt designer in myeclipse for spring 10.6

2013-03-20 Thread Sh Darambazar
me too the same problem. Please help me my ubuntu is 12.10 java when java -version java version "1.7.0_15" OpenJDK Runtime Environment (IcedTea7 2.3.7) (7u15-2.3.7-0ubuntu1~12.10.1) OpenJDK Server VM (build 23.7-b01, mixed mod and oracle java the same error. On Saturday, March 9, 2013 7:07:53 AM

problem with gwt designer in myeclipse for spring 10.6

2013-03-10 Thread Mansouri Brahim
hello when i create new gwt project i can't see the design of my apps and myeclipse give me that eror so some one can help please?? Could not open the editor: The editor class could not be instantiated. This usually indicates a missing no-arg constructor or that the editor's class name was mist

Problem with "gwt-MenuBarPopup"

2012-11-30 Thread Dominic Warzok
Hi Guys, i have a little Problem with my MenuBar. It is possible to set the z-index value from gwt-MenuBarPopup ? At java doc I didn't found this css-Property but in my Website it exist. Thanks Domi -- You received this message because you are subscribed to the Google Groups "Google Web

Problem with GWT Generator

2012-01-29 Thread Stephan
I've written a simple GWT Generator, but during GWT compiling I get an error stating: "Rebind result 'generated class' could not be found". I'm using GWT 2.4.0 inside of Eclipse 3.7 with the Google Plugin. The generated code compiles properly, if I inject an error into the generated code the com

Problem with GWT Window Builder plugin (Eclipse)

2012-01-14 Thread Xybrek
Hi, I have some problem with GWT WindowBuilder that I have published the details through Stackoverflow: http://stackoverflow.com/q/8836214/785349 Cheers. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this g

Re: problem with gwt 2.4

2011-12-13 Thread Ed
Check out the source code of gwt-connector, use 2.4. as dependency, make the required changes, and make the libraries against gwt 2.4. - Ed On Dec 13, 10:32 am, "R!H@B S@!D!" wrote: > Hi all, > > I use gwt-connectors with GWT 2.4, but I have a problem of compatibility!! > > I need a library for

problem with gwt 2.4

2011-12-13 Thread R!H@B S@!D!
Hi all, I use gwt-connectors with GWT 2.4, but I have a problem of compatibility!! I need a library for connectors that work with gwt 2.4 thx -- *Rihab SAIDI* -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: Problem with gwt fileUpload in GWT 2.4

2011-12-08 Thread karim duran
Hi James, You can also use Apache commons fileupload library, it's easy to use and to integrate with GWT. http://commons.apache.org/fileupload/ Regards. Karim Duran. 2011/12/8 James Drinkard > Okay, after doing more searching I found you can't do RPC with this > widget, so I opted to create a

Re: Problem with gwt fileUpload in GWT 2.4

2011-12-08 Thread James Drinkard
Okay, after doing more searching I found you can't do RPC with this widget, so I opted to create a regular httpServlet and that worked. Hope this helps someone! -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on t

Problem with gwt fileUpload in GWT 2.4

2011-12-07 Thread James Drinkard
Hello All, I have a requirement to get a file, upload it to the server and then get the stream of bytes back in some server-side code. I have to pass an inputStream from the file to a calculator module. So I opted to use the fileUpload widget which appears to work fine on the client-side. I s

Problem with GWT in eclipse helios.

2011-10-12 Thread Mazzi
Dear All, I have homework i need to deploy to GWT. For this i use my gmail account ofcourse. But when i want to sign in i get an Invalid Token page. I already tried everything. :( Any ideas ? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gro

Re: ie8 problem with gwt 2.4?

2011-09-27 Thread guillaume prime
Yes, it was the problem ! I modify my module XML file with : Thanks a lot ! On 26 sep, 19:52, Chi Hoang wrote: > If Chrome-frame is not enabled on your page and you have it installed > in your browser, you are most likely running into this issue > > http://code.google.com/p/googl

Re: ie8 problem with gwt 2.4?

2011-09-26 Thread Chi Hoang
If Chrome-frame is not enabled on your page and you have it installed in your browser, you are most likely running into this issue http://code.google.com/p/google-web-toolkit/issues/detail?id=6665 On Sep 26, 10:23 am, Chi Hoang wrote: > Based on your user-agent, it seems like you have chrome fra

Re: ie8 problem with gwt 2.4?

2011-09-26 Thread Chi Hoang
Based on your user-agent, it seems like you have chrome frame installed. GWT 2.4 added detection of chrome frame, and uses the safari user agent if it is installed and enabled. On Sep 26, 1:53 am, guillaume prime wrote: > We can see the problem on the GWT Showcase : > > Webpage error details >

Re: ie8 problem with gwt 2.4?

2011-09-26 Thread guillaume prime
We can see the problem on the GWT Showcase : Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; chromeframe/14.0.835.186; .NET CLR 1.1.4322; InfoPath.1) Timestamp: Mon, 26 Sep 2011 07:52:05 UTC Message: Object doesn't support this property or met

Re: ie8 problem with gwt 2.4?

2011-09-23 Thread guillaume prime
I have the same problem, if I compil only for IE8 it work fine, but if I want to compil for IE6, IE8, FF and Chrome, I have an error on IE8 It work ONLY on IE8 : It doesn't work on IE8, but work on FF and Chrome : Do you have the same problèm ? On 19 sep, 05:09, Vish wrote: > Wo

Re: ie8 problem with gwt 2.4?

2011-09-18 Thread Vish
Workaround : set the following property in your gwt.xml. The error/warning does not appear. But not sure how much it impacts the application, because it is suppressing the warning/error. On Sep 19, 7:31 am, Vish wrote: > I am also getting the same error using GWT 2.4 on IE8 and specify

Re: ie8 problem with gwt 2.4?

2011-09-18 Thread Vish
I am also getting the same error using GWT 2.4 on IE8 and specifying user agent property in gwt.xml for ie8. On Sep 15, 4:36 am, macagain wrote: > Is anyone else have a problem with IE8 on GWT2.4? > > I'm running in standards mode > > exactly the same code worked fine on GWT2.3... with that F12

ie8 problem with gwt 2.4?

2011-09-14 Thread macagain
Is anyone else have a problem with IE8 on GWT2.4? I'm running in standards mode exactly the same code worked fine on GWT2.3... with that F12 dev tools showed: Browser Mode: IE8 Doc Mode: IE8 Standards but on GWT2.4, the page errors in the generated js, doesn't load, and F12 dev tools shows: B

Re: my biggest problem with gwt

2011-07-25 Thread Toby Reyelts
GWT RPC has been particularly offensive when it comes to being slow in Chrome. If you're using RPC, try running GWT from SVN head. You should see a massive improvement in Chrome performance. On Fri, Jul 15, 2011 at 11:12 AM, Dennis Haupt wrote: > switching to dev mode took 41 seconds, chrome beca

Re: my biggest problem with gwt

2011-07-15 Thread Michael Allan
Dennis Haupt wrote: > that helped most, thanks More on that here: http://code.google.com/webtoolkit/doc/latest/FAQ_DebuggingAndCompiling.html#Can_I_speed_up_the_GWT_compiler? The allowable values for user.agent are defined here: http://code.google.com/p/google-web-toolkit/source/browse/trunk/user

Re: my biggest problem with gwt

2011-07-15 Thread Chris Conroy
http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM gives a decent overview and specs out the wire protocol. High level: The bootstrap page detects the ?gwt.codesvr= fragment, and tries to load the plugin. The plugin then validates the permissions. Assuming the permissions are good, it c

Re: my biggest problem with gwt

2011-07-15 Thread dreamer
just off topic. what is life cycle in dev mode? Is it java byte code all the way to browser (plug in )? (I mean no java script any where) On Jul 15, 8:24 am, Paul Robinson wrote: > Chrome is slow in dev mode. Try firefox instead. > > On 15/07/11 16:12, Dennis Haupt wrote: > > > > > > > > > swi

Re: my biggest problem with gwt

2011-07-15 Thread Paul Robinson
Chrome is slow in dev mode. Try firefox instead. On 15/07/11 16:12, Dennis Haupt wrote: switching to dev mode took 41 seconds, chrome became responsive again about ~30 seconds after that. gut feeling wins. -- You received this message because you are subscribed to the Google Groups "Google

Re: my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
switching to dev mode took 41 seconds, chrome became responsive again about ~30 seconds after that. gut feeling wins. 2011/7/15 Rob Coops > > > On Fri, Jul 15, 2011 at 1:23 PM, Dennis Haupt wrote: > >> it's the speed. not the execution speed, that one is good enough. >> what i mean is the compil

Re: my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
that helped most, thanks 2011/7/15 vinayak kulkarni > This is because GWT compiles the javascript for all the browsers.. around 5 > browsers - 10 permutations.. > For the development mode, you can compile only for one browser. Ex: for IE, > use the below property in *.gwt.xml file > > This would

Re: my biggest problem with gwt

2011-07-15 Thread Magno Machado
For compiler speed, on development builds you can reduce the number of permutations (restrict user agents, locales, etc) I have a sample app here which does that: https://bitbucket.org/magnomp/gradlegwt, but uses Gradle for build. Anyway, most of the time you will be using devmode, not the compil

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
http://www.coderanch.com/t/480416/GWT/Improved-Compiler-Performance-GWT-Reduce -- 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/-/tW9IXgx_VHQJ. To

Re: my biggest problem with gwt

2011-07-15 Thread vinayak kulkarni
This is because GWT compiles the javascript for all the browsers.. around 5 browsers - 10 permutations.. For the development mode, you can compile only for one browser. Ex: for IE, use the below property in *.gwt.xml file This would reduce your compile time.. -- You received this message becau

Re: my biggest problem with gwt

2011-07-15 Thread Alain Ekambi
I m pretty sure the GWT team is allready on making dev mode run even faster. I heard they are obsessed about speed @Google :) But when you think about it a second what devmode does you will see that performance is pretty good right now. I mean this is Javabyte code remotelly manipulating your b

Re: my biggest problem with gwt

2011-07-15 Thread dreamer
=>activating the hosted mode takes about 1-2 minutes (didn't measure, feels like it). debugging like this takes forever. Yep. Documentation says use this mode always during development, never to compile. Bringing up dev mode URL is taking time (with debug option). Not sure selecting particular br

Re: my biggest problem with gwt

2011-07-15 Thread Rob Coops
On Fri, Jul 15, 2011 at 1:23 PM, Dennis Haupt wrote: > it's the speed. not the execution speed, that one is good enough. > what i mean is the compilation speed. compiling my complete java project > takes 30 seconds. compiling the tiny gwt part of it takes 91 seconds. > activating the hosted mode t

Re: my biggest problem with gwt

2011-07-15 Thread Aidan O'Kelly
There is a google IO session which covers speeding up the compile process during development, it is in the second half of a talk on the compiler in general. http://www.youtube.com/watch?v=qT6ZsQBM7kY Also, if you are working on client side code, a lot of the time you don't need to go through the w

Re: my biggest problem with gwt

2011-07-15 Thread Juan Pablo Gardella
mmm I work in this manner. I use maven, but is the same. 1) Make the war (mvn package). Only the first time. 2) Start dev mode. 3) Open browser (I use IE, is the fastest in dev mode). Wait at first time a minute. 4) Test the app and modify code. 5) Refresh page in IE. Wait 10s aprox. 6) Repeat 4)

my biggest problem with gwt

2011-07-15 Thread Dennis Haupt
it's the speed. not the execution speed, that one is good enough. what i mean is the compilation speed. compiling my complete java project takes 30 seconds. compiling the tiny gwt part of it takes 91 seconds. activating the hosted mode takes about 1-2 minutes (didn't measure, feels like it). debugg

Re: Problem with GWT Service results

2011-06-23 Thread Jambi
The proble is, that the code out of your onSuccess method is called before the request is finished. ... RootPanel.get("mainContainer").add(new Label("Array lista 2: "+lista.toString())); RootPanel.get().add(new Label(String.valueOf("Array lista 2: "+lista.size(;

Re: Problem with GWT Service results

2011-06-21 Thread Daniel Mauricio Patino León
RootPanel.get("mainContainer").add(new Label("Array lista 2: "+lista.toString())); RootPanel.get().add(new Label(String.valueOf("Array lista 2: "+lista.size(; for(int i = 0; i < lista.size(); i++){ RootPanel.get().add(new Label("BOTON "+i))

Problem with GWT Service results

2011-06-21 Thread Jose Luis Hernandez
Hello! I have a problem. I am calling to server side on GWT. The results of call is an ArrayList (result). Inside onSuccess method another ArrayList is wrapped with the result. However, if I want to use ArrayList lista outside of onSuccess method it contains 0 elements, but inside is like result Ar

Re: I have a problem with GWT 2.1 development mode

2011-03-02 Thread Rob Tanner
Thanks! adding -bindAddress argument resolved the problem. On Mar 2, 1:24 pm, Thomas Broyer wrote: > Your browsers should display this page, which contains the instructions to > solve the > issue:http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM > See > alsohttp://code.goo

Re: I have a problem with GWT 2.1 development mode

2011-03-02 Thread Thomas Broyer
Your browsers should display this page, which contains the instructions to solve the issue: http://code.google.com/p/google-web-toolkit/wiki/TroubleshootingOOPHM See also http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#What_options_can_be_passed_to_development_mod

I have a problem with GWT 2.1 development mode

2011-03-02 Thread Rob Tanner
Hi, I've lost some functionality that I depend on when I upgraded from 1.7 to 2.1. Basically, I do my development work on a Mac and in development mode, I can view the work in process on both Safari and Firefox. Using VMware, I'm also running Windows 7 on the same physical box. Often times, wha

Problem with GWT and Tomcat or Jetty

2011-01-14 Thread mikel o
Hi, I have a problem with my project of GWT. The problem consists in my web application only runs in Eclipse, if I charge the war file in the tomcat or jetty it doesn't run. The catalina' log shows that tomcat stopped in the sentence 'GWT20' which is written by the RPCCopy class. I'm using Gilead

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread Lukasz
JSONP is a quite straight forward solution for the SOP problem and thanks to the JsonpRequestBuilder nicely supported in GWT 2.1. But as already mentioned the CGI service needs to be able to respond with valid JSON data. Below some code example: StringBuilder url = new StringBuilde

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread bananos
Julio, you can try using JSONP, if your external CGI page is capable of returning valid JSON data. If it's not your case, the only possible way is to write server-side code at your backend, and serve data from your own host On Dec 8, 3:22 pm, julio wrote: > Hi Thomas thanks for your reply. > > >

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread julio
Hi Thomas thanks for your reply. > The "xs" linker only allows you to load the GWT app (*.nocache.js et > al.) from a different origin than the "HTML host page". This is > because the default linker ("std", or IFrameLinker) uses an iframe to > load the *.cache.html and then hits the SOP when tryin

Re: SOP Problem with GWT 2.0.4

2010-12-08 Thread Thomas Broyer
On 7 déc, 11:44, julio wrote: > Hi, > > I have a simple callback to a remote server like this: > > RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url); > >                 try { >                         builder.sendRequest(null, new RequestCallback() { > >                      

Re: SOP Problem with GWT 2.0.4

2010-12-07 Thread julio
I moved from GWT 2.0.4 to 2.1 (last release) but there is still the same problem could be it a GWT bug? Julio -- 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-tool...@googlegroups.com. To un

SOP Problem with GWT 2.0.4

2010-12-07 Thread julio
Hi, I have a simple callback to a remote server like this: RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url); try { builder.sendRequest(null, new RequestCallback() { public void onError(Request request, T

Re: Problem with GWT-RPC

2010-12-04 Thread Gaurav Vaish
Caught it! The build file that I had created was refering to the older version of GWT SDK (and hence the older gwt-servlet.jar during compilation). Thanks for your inputs! -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Dec 5, 8:28 am, Gaurav Vaish wrote: > No help! > > Double

Re: Problem with GWT-RPC

2010-12-04 Thread Gaurav Vaish
No help! Double checked the jars. Double checked the interface + async parts. Did a full clean+build. :( -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Dec 4, 7:55 pm, Sean wrote: > Also, if you recently upgraded, make sure you upgraded the jars on the > server as well. > > On

Re: Problem with GWT-RPC

2010-12-04 Thread Sean
Also, if you recently upgraded, make sure you upgraded the jars on the server as well. On Dec 4, 7:15 am, Gaurav Vaish wrote: > Hi, > > My application, so far, had been working fine - I'm using GWT-2.1 and > Appengine 1.3.8... until recently. > > Lately, my application has been consistent in thro

Re: Problem with GWT-RPC

2010-12-04 Thread Noor
Hi, check whether the server implementation is properly implementing the service interface and check whether the arguments set in the service interface methods is inline with the serviceasync. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" grou

Problem with GWT-RPC

2010-12-04 Thread Gaurav Vaish
Hi, My application, so far, had been working fine - I'm using GWT-2.1 and Appengine 1.3.8... until recently. Lately, my application has been consistent in throwing a IncompatibleRemoteServiceException... the exact message is given below. com.google.gw

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Eric Ayers
Check out the Maps API group as well. http://code.google.com/p/gwt-google-apis/wiki/MapsFAQ#Where_can_I_go_for_more_help_using_the_Maps_API_for_GWT? On Fri, Oct 1, 2010 at 10:44 AM, Boris Lenzinger wrote: > Hi David, > > Yes you are right. I will post my message on their mailing list too. Thank

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Boris Lenzinger
Hi David, Yes you are right. I will post my message on their mailing list too. Thank you for the tip. Boris 2010/10/1 David Chandler (Google) > Hi Boris, > > You might also try posting your question here: > http://groups.google.com/group/gwt-google-apis > > /dmc > David Chandler > Developer Pr

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Boris Lenzinger
Hi Eric, Thank you for the link. I have just installed it and tested out. Unfortunately, this does not really change the thing. It is a little bit faster but still unusable. I've installed (just to check the difference) Google Chrome under Windows and the application runs fine. But with Chrome em

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread Eric Ayers
I'm going to go ahead and steer you away from there because all the gwt-maps library is doing is translating your GWT calls into javascript calls to the Maps API. If you are willing to install a plugin, try the chrome frame plugin for IE6. http://code.google.com/chrome/chromeframe/ On Fri, Oct 1

Re: Problem with GWT Google-Maps-API 1.1 and IE 6

2010-10-01 Thread David Chandler (Google)
Hi Boris, You might also try posting your question here: http://groups.google.com/group/gwt-google-apis /dmc David Chandler Developer Programs Engineer, Google Web Toolkit On Sep 30, 3:26 am, Boris Lenzinger wrote: > Hi everybody, > > I'm currently facing a blocking problem when using GWT goog

Problem with GWT Google-Maps-API 1.1 and IE 6

2010-09-30 Thread Boris Lenzinger
Hi everybody, I'm currently facing a blocking problem when using GWT google map api (version 1.1.0) with IE 6. GWT version used is 2.0.3. Here is the context : I have a web interface that displays 2 maps : one on the left that shows a general view and one the right that shows details of a selecte

Problem with GWT Developer Plugin

2010-09-21 Thread LuKe
Hi, I'm trying to develop a simple application using STS 2.5.0 (based on Eclipse 3.6) x86_64 and the Google Eclipse plugin. I have a problem to show my application in the browser. I'm using Firefox 3.6.7 x86_64 (Fedora 13) and I have already installed the GWT Developer plugin but I got always th

Re: Problem with GWT portlet and RPC

2010-09-03 Thread topher1120
In using gwt-log and doing some more tracing, I've found that the second portlet doesn't receive the callback notification from VisualizationUtils.loadVisualizationApi. As a workaround, I set a timeout timer and load the charts I need after the timer times out. Is there a suggestion out there on a

  1   2   >