Re: GWT SDM hanging on recompiles?

2020-08-11 Thread Michael Joyner
I've opened a ticket: https://github.com/gwtproject/gwt/issues/9704 On Thursday, August 6, 2020 at 7:15:37 PM UTC-4 peter.j...@gmail.com wrote: > Are you on GWT 2.9.x? I have seen this intermittently after upgrading > to GWT 2.9.x. Unfortunately I always forget to get a thread dump to > see

Re: My project is not working after installing the GWT Eclipse Plugin

2019-08-19 Thread Michael Joyner
Are you using the correct GWT plugin? Which plugin are you using? That version "2.6.1" is not supported. It should show 2.8.1 or 2.8.2. On 8/19/19 10:24 AM, José Luiz Martins wrote: Hi, very good morning! I can't make use of super dev mode in my project, it happened after I installed the GWT

Re: GWT - Still Active ?

2019-05-30 Thread Michael Joyner
Ideally, twice yearly release of "stable", with most recent appropriate patches applied, such as "2.201904" and "2.201910" or similar tagged releases would definitely help there. On 5/30/19 3:33 PM, Bob Lacatena wrote: I just posted this elsewhere, but as this thread has more current

Re: [gwt-contrib] Re: GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2018-12-14 Thread Michael Joyner
2017 17:10:28 UTC+2, Michael Joyner wrote: Thanks! Adding gwt 'javax.xml.bind:jaxb-api:2.3.+' to our build.gradle fixed it. On 10/20/2017 03:54 PM, Slava Pankov wrote: Try to add dependency to your pom.xml:       javax.xml.bind       jaxb-api       2.3.0

Re: GWT Future plan: CompletableFuture ?

2018-11-19 Thread Michael Joyner
It is part of the JRE standard is it not? Shouldn't it be part of the standard JRE emulation? On 11/16/18 4:21 PM, Ahmad Bawaneh wrote: why it should be?! why not use it as a stand alone lib? we already do. On Friday, November 16, 2018 at 4:55:16 PM UTC+2, Michael Joyner wrote

Re: [gwt-contrib] GWT 3.0 ready editors porting completed

2018-11-16 Thread Michael Joyner
Can this be used with any UI kit? On 11/16/18 10:32 AM, Ahmad Bawaneh wrote: Hi i would like to announce that i have completed the gwt-editors porting to annotation processor, and now is GWT 3.0 ready. the work was started by both Colin Alworth  and Frank

GWT Future plan: CompletableFuture ?

2018-11-16 Thread Michael Joyner
Is this going to make into GWT JRE Emulation proper any time soon? https://github.com/OneGeek/GWT-CompletableFuture -- 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

Re: New Gradle plugin for GWT available

2018-09-21 Thread Michael Joyner
Which isn't in my inbox. On 09/20/2018 12:02 PM, esoco GmbH wrote: See first post in this thread. Am Donnerstag, 20. September 2018 16:08:07 UTC+2 schrieb Michael Joyner: Which plugin? -- You received this message because you are subscribed to the Google Groups "GWT Users&q

Re: New Gradle plugin for GWT available

2018-09-20 Thread Michael Joyner
Which plugin? On 09/20/2018 04:05 AM, esoco GmbH wrote: Yes, I'm using the plugin (that was the main reason for forking it) and are also still using GWT. It's difficult to tell about the long run but given the mature and stable Java environment I still see GWT as a good solution to create web

First I heard of "Domino UI"

2018-09-17 Thread Michael Joyner
First I heard of "Domino UI". Any one out there with experience with it? regarding UI there is now good libs for GWT if you are looking for material design: for example Domino-ui : type safe UI libs based on elemental2

Re: GWT install at University

2018-08-07 Thread Michael Joyner
If each student installs a "profile" specific copy of Eclipse, they can add GWT as a plugin which would be installed into their copy of Eclipse. No admin/etc rights required. Just Java available. On 08/07/2018 10:35 AM, Ahmed III wrote:

Re: GWT behaves differently in Chrom vs Firefox

2018-07-30 Thread Michael Joyner
tasks.withType(org.wisepersist.gradle.plugins.gwt.AbstractGwtActionTask) { args "-noincremental" } gwt { logLevel = 'INFO' maxHeapSize = "2048M"; gwtVersion='2.8.2' modules 'xxx //src += files("build/generated/source/apt/main"); compiler { //ea = false //enable assert statements for testing result

Re: GWT behaves differently in Chrom vs Firefox

2018-07-30 Thread Michael Joyner
It didn't help. Am > I doing the right thing? Is there any other option? > > Thanks > Velu > > On Tuesday, July 24, 2018 at 11:08:00 AM UTC-4, Michael Joyner wrote: >> >> Is this in SDM mode? If yes, try turning off incremental compilations. >> >> On Mon, Jul 23,

Re: GWT behaves differently in Chrom vs Firefox

2018-07-24 Thread Michael Joyner
Is this in SDM mode? If yes, try turning off incremental compilations. On Mon, Jul 23, 2018 at 9:43 PM, Velusamy Velu wrote: > Friends: > > I have an application written using GWT 2.8.2 framework and it behaves > differently. The snippet of the GWT code in question is here - > (ReferenceError)

Is there a better way to detect when in SDM mode?

2018-05-29 Thread Michael Joyner
Currently we are using the following to detect when in "SDM" mode: private static Boolean isSdm = null;     public static boolean isSdm() {         if (isSdm==null) {             isSdm=false;             GWT.log("SDM MODE: "+(isSdm=true)); // only compiles and runs when SDM is active         }

Re: Eclipse (neon) with the GWT app translates the Java code of Paul Falstad's electronic simulator into JavaScript

2018-02-02 Thread Michael Joyner
I wonder if it might be related to using Java float or double in the math code, javascript numbers don't exactly match up. On 02/01/2018 07:49 PM, Vinyasi wrote: I compiled Paul Falstad's electronic simulator in Eclipse (neon) adding a switch as you suggested called -draftCompile which had no

Re: Strange elemental 2 behavior and weird workaround

2017-12-05 Thread Michael Joyner
Have you tried deleting the tmp/gwt* folders used by sdm mode? We have to do that sometimes to get rid of erroneous errors about stale types and other oddness which crops up sometimes while developing. On 12/05/2017 04:36 AM, nikola wrote: Sometimes, with no apparent reason It starts

Re: [gwt-contrib] Re: GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-23 Thread Michael Joyner
, Michael Joyner wrote: Eh... I changed my gradle build config to use 2.8.2 and started getting import annotation errors (below). Switching back 2.8.1 and the errors go away. The annotations are imports from: import javax.xml.bind.annotation.XmlAttribute; import

Re: GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-23 Thread Michael Joyner
-7, Michael Joyner wrote: Eh... I changed my gradle build config to use 2.8.2 and started getting import annotation errors (below). Switching back 2.8.1 and the errors go away. The annotations are imports from: import javax.xml.bind.annotation.XmlAttribute; import

[gwt-contrib] GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-20 Thread Michael Joyner
Eh... I changed my gradle build config to use 2.8.2 and started getting import annotation errors (below). Switching back 2.8.1 and the errors go away. The annotations are imports from: import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import

GWT 2.8.2 release => [ERROR] ... XmlRootElement ... XmlElement ... cannot be resolved to a type

2017-10-20 Thread Michael Joyner
Eh... I changed my gradle build config to use 2.8.2 and started getting import annotation errors (below). Switching back 2.8.1 and the errors go away. The annotations are imports from: import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import

assert false; causes "Cannot read property 'replace' of undefined

2017-10-18 Thread Michael Joyner
Eh... don't think this is quite right... it seems an assert without an ":" argument is not handled properly in the assert logging code. |Wed Oct 18 12:35:36 GMT-400 2017 com.google.gwt.logging.client.LogConfiguration SEVERE: (TypeError) : Cannot read property 'replace' of undefined

[gwt-contrib] assert false; causes "Cannot read property 'replace' of undefined

2017-10-18 Thread Michael Joyner
Eh... don't think this is quite right... it seems an assert without an ":" argument is not handled properly in the assert logging code. |Wed Oct 18 12:35:36 GMT-400 2017 com.google.gwt.logging.client.LogConfiguration SEVERE: (TypeError) : Cannot read property 'replace' of undefined

Re: Upgrading to GWT 2.8.1 - GWTP Servlet Error

2017-07-19 Thread Michael Joyner
<groupId>com.gwtplatformgroupId> <artifactId>gwtp-dispatch-rpc-sharedartifactId> <version>${gwtp.version}version> <scope>compilescope> dependency>  where gwtp.version is 1.6, so they are latest. 

Re: Upgrading to GWT 2.8.1

2017-07-18 Thread Michael Joyner
I just noticed one of our projects has as dependencies:     providedCompile 'javax.servlet:javax.servlet-api:3.0.1'     compile 'javax.ws.rs:javax.ws.rs-api:2.0.1' Do you have the second one? On 07/18/2017 01:36 PM, Michael Joyner wrote

Re: SerializationException when application is modified

2017-07-18 Thread Michael Joyner
PM, Michael Joyner <mich...@newsrx.com> wrote: We use https://github.com/realityforge/gwt-cache-filter to help deal with caching

Re: Upgrading to GWT 2.8.1

2017-07-18 Thread Michael Joyner
servlet container. Jetty? On 07/18/2017 11:33 AM, Renat Kabirov wrote: Hi Michael Joyner,  Just changed version to 3.0.1 - I see error during building:     Module setup completed in 32400 ms

Re: SerializationException when application is modified

2017-07-18 Thread Michael Joyner
We use https://github.com/realityforge/gwt-cache-filter to help deal with caching issues. On 07/18/2017 12:15 PM, Óscar Frías Barranco wrote: Hi. When we modify the code of our GWT application, in particular the classes

Re: How to detect removed element in GWT

2017-07-13 Thread Michael Joyner
On 07/13/2017 04:14 PM, Jens wrote: AFAICT this should have worked. Given that Elements in GWT are pretty close to the real JS API I don't see a reason why this should not work. Maybe you have a bug somewhere in your code? Are you

Re: How to detect removed element in GWT

2017-07-13 Thread Michael Joyner
Might require a deferred op. I have done stuff with add/removing and it seems to work best to do the op then continue everything else in a deferred. On 07/13/2017 04:14 PM, Jens wrote: AFAICT this should have worked. Given that Elements

Re: GWT Client for App Engine Endpoints

2017-01-11 Thread Michael Joyner (NewsRx)
I don't know how much it will help, but RestyGWT could be used for the GWT client to access JSON data via a predefined and share-able json rest interface definition. Then you could use the builts, (a bit manaully), of libGDX net to to http/json calls to the end point. The end point I would

Re: Internal GWT 2.8.0 compiler exception

2016-11-16 Thread Michael Joyner (NewsRx)
Have you tried increasing the allocated ram? On 11/16/2016 12:41 PM, jgindin wrote: I'm trying to update my project from GWT 2.7.0 to 2.8.0. However, I'm getting the following error during the GWT compilation. We're using dagger and guava 20. I've validated that: * dagger-compiler is

Re: HowTo use GWT EvenBus to schedule OpenEvent -> CloseEvent sequence

2016-10-26 Thread Michael Joyner
I don't know if it will help any, but we had issues with the eventbus firing immediately synchronously (not good if the event for a widget fires before said widget finishes attaching and hooking up to receive events!). We ended up creating a deferred eventbus.

Re: GWT cache.html files.

2016-10-24 Thread Michael Joyner
The SSO linker doesn't work with Superdev Mode. You could try the following instead for modern browser only targeting: On 10/21/2016 04:40 AM, Kirill Prazdnikov wrote: You can also use SSO linker which produce one single

Re: Google Plugin for Eclipse Mars

2016-10-18 Thread Michael Joyner
Better yet, just install it via the Eclipse Marketplace after removing the old one. Look for "GWT' in the Eclipse Marketplace and select "GWT Eclipse Plugin 3.0.0". On 10/18/2016 10:31 AM, Michael Joyner wrote:

Re: Google Plugin for Eclipse Mars

2016-10-18 Thread Michael Joyner
That plugin is deprecated. You can try uninstalling it, remove or disable its url from your software software sources, then try this one and see if it works better: https://github.com/gwt-plugins/gwt-eclipse-plugin The software installation url is:

GWT 2.8.0 RC3 is here!

2016-09-30 Thread Michael Joyner
Forwarded Message Subject: [gwt-contrib] GWT 2.8.0 RC3 is here! Date: Thu, 29 Sep 2016 07:54:46 -0700 (PDT)

Re: CalenderUtil Date Math BUG - GWT 2.8 RC2

2016-09-01 Thread Michael Joyner
As we are not calling a "set" operation but an "addMonthsToDate" operation and as a result we find this behavior surprising - and a little non-intuitive. Calendar does not "skip" a month when using "add" month, the days are adjusted to the end of the next month to

CalenderUtil Date Math BUG - GWT 2.8 RC2

2016-08-31 Thread Michael Joyner
We have run into what looks like a date math bug for today's date: Here is our logged output: [butter] Wed Aug 31 16:15:15 GMT-400 2016 Tester Date: Wed Aug 31 16:15:15 GMT-400 2016 [butter] Wed Aug 31 16:15:15 GMT-400 2016 mth:

Re: [gwt-contrib] Re: GWT 2.8 RC1 Help with testing

2016-07-21 Thread Michael Joyner
Can it be tagged and pulled via jitpack.io ? On 07/20/2016 05:57 PM, 'Daniel Kurka' via GWT Contributors wrote: We just fixed a bug in rc1, I'll redo the release now and give you guys a download link. On Wed, Jul 20, 2016

[gwt-contrib] GWT 2.8 RC1 Help with testing

2016-07-20 Thread Michael Joyner
(I'm cross posting this here from google-web-toolkit-contribut...@googlegroups.com as being highly relevant) Hi all, we have build the preliminary GWT 2.8.0-rc1 version and now need help with DOA testing (making sure its not dead on

Eclipse Neon - Can't load plugin

2016-07-14 Thread Michael Joyner
Heads up! The latest GWT plugin from github does not work with NEON. There is a pending pull request from Jun 8 2016 which has a fix, but it has not been rebuilt with the patch yet. "axls" has posted a link to a an alternative build with the patch

GWT 2.8 last call & help with testing

2016-07-13 Thread Michael Joyner
FROM: 'Daniel Kurka' google-web-toolkit-contribut...@googlegroups.com Hi all, the last patch that is needed for 2.8 (https://gwt-review.googlesource.com/15193) is about to land. I will cut the release candidate on Friday

Re: Failed to load resource: xxx.cache.js

2016-07-05 Thread Michael Joyner
There is a bug in GWT 2.7 for the no cache file having the wrong timestamp and being cached when it shouldn't as a result. We haven't seen this bug when using GWT 2.8-beta1. On Tue, Jul 5, 2016 at 11:58 AM, Jens wrote: > Most likely a caching problem in your browser

Re: What is happening to GWT??? - quarterly or semi-annual releases would be nice!

2016-07-05 Thread Michael Joyner
We vote for quarterly or twice year releases. It doesn't matter if they are feature complete, only that progress is being made and all these other projects like GwtMaterial use them. Nothing like being told when asking about an issue that (to paraphrase) "You are using gwt 2.8, only gwt 2.7 is

gwt material and uibinder + gradle

2016-07-05 Thread Michael Joyner
two dimes: We find Gradle much easier to work with than Maven here at my shop. Especially for "loosely coupled" project dependency setup. We never could get Maven to simply reference other projects arbitrarily. We find Maven is too strict in specifying how projects are connected up with each

Re: com.google.gwt.http.client.URL

2016-05-18 Thread Michael Joyner
I think you should be % encoding the url data-path components. Any routine that converts spaces to + or leaves '*' and most other punctuation unescaped is not what you want. See http://stackoverflow.com/a/6530792/1341731 for a "drop-in" routine to do this.

Re: GWT React preview release on Maven Central

2016-05-13 Thread Michael Joyner
GWT Gradle plugin: This works for us for 2.8BETA gwt { logLevel = 'INFO' maxHeapSize = "1024M"; gwtVersion='2.8.0-beta1' modules 'com.newsrx.ButterAdmin' //jsInteropMode = "JS" compiler { disableClassMetadata = false; enableClosureCompiler = false;

Re: gwt-2.8.0-beta1 / isn't it about time for a beta2?

2016-04-25 Thread Michael Joyner
wrote: On Monday, April 25, 2016 at 4:18:04 PM UTC+2, Michael Joyner wrote: gwt-2.8.0-beta1 / isn't it about time for a beta2? See https://groups.google.com/d/msg/gwt-steering

gwt-2.8.0-beta1 / isn't it about time for a beta2?

2016-04-25 Thread Michael Joyner
gwt-2.8.0-beta1 / isn't it about time for a beta2? -- 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

Re: Is anybody of you guys using GWT with Lombok?

2016-03-19 Thread Michael Joyner
Y'alls discussion of this made me do some Googling and I found "JackDaw" which lets one do the automagic setter/getter thing strictly via "approved" annotation processing: https://github.com/vbauer/jackdaw On 03/16/2016 11:27 PM, BRF wrote: I use it in some utility projects. The only

Re: GWT 2.8 with App Engine on Java 7

2016-03-09 Thread Michael Joyner
Is there any reason you can't split the project up into two projects? A java8 => js frontend, and the java7 backend? On 03/09/2016 02:57 PM, Paul Mazzuca wrote: Using the maven gwt and appengine plugins, is it possible to compile GWT 2.8 in Java 8, and then app engine related files using Java

Re: GoogleBot is using the wrong permutation?

2016-02-29 Thread Michael Joyner
You need to have a "default" permutation for Google Bot: We use the following here: On 02/27/2016 10:10 AM, Rogelio Flores wrote: If you compile your app with the "PRETTY" compiler flag and then deploy it and run the

Re: GWT Polymer Tutorial

2015-12-16 Thread Michael Joyner
Could be a section issue. I use Gradle here. On 12/16/2015 03:08 PM, Ed wrote: Michael: Thank you for you quick response. I have done this with no success. Perhaps I put it in the wrong section. The docs are specific and I am a newbie to maven. Ed On Wed, Dec 16, 2015 at 2:41 PM, Michael

Re: GWT Polymer Tutorial

2015-12-16 Thread Michael Joyner
For the Polymer tutorial to work with 2.7, you must be sure to enable jsinterop mode 'JS'. I haven't tried it with 2.8.0-BETA. On 12/16/2015 02:23 PM, Ed wrote: I have been trying for days to get this operational. Does this even have a chance of working with 2.7? I have seen some data about

Re: gwt 2.8 and gwtbootstrap3 0.9.2

2015-12-09 Thread Michael Joyner
whose issue tracker? gwtbootstrap3's or gwt's? On 12/08/2015 05:25 PM, Thomas Broyer wrote: Can you raise it in the issue tracker? -- 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

Re: gwt 2.8 and gwtbootstrap3 0.9.2

2015-12-09 Thread Michael Joyner
to me the snapshot version is more stable than the 0.9.3 release as this contains quite a few bugs solved in snapshot. Op dinsdag 8 december 2015 18:50:45 UTC+1 schreef Michael Joyner: Hello, We are suddenly having an issue where the following function in "org/gwtbootstrap3/e

Re: gwt 2.8 and gwtbootstrap3 0.9.2

2015-12-09 Thread Michael Joyner
On 12/09/2015 11:41 AM, Thomas Broyer wrote: If it used to work previously, then gwt's issue tracker. For those curious: https://github.com/gwtproject/gwt/issues/9242 -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this

gwt 2.8 and gwtbootstrap3 0.9.2

2015-12-08 Thread Michael Joyner
Hello, We are suddenly having an issue where the following function in "org/gwtbootstrap3/extras/slider/client/ui/Slider.java" from the gwtboostrap3 project is failing with "doubleValue 'not a function'". We have tried passing the value in as (double)value, Double.valueOf(value), new

Re: gwt 2.8 and gwtbootstrap3 0.9.2

2015-12-08 Thread Michael Joyner
Is there a workaround? This is a pre-packaged JAR. -Mike On 12/08/2015 01:57 PM, Jens wrote: Boolean and Double are now unboxed raw types when compiled to JS. I think that means inside JSNI methods a Double should be

Re: Teavm

2015-12-04 Thread Michael Joyner
Wonderting if it is possible to convert a jar to js, then use it from GWT... On 12/04/2015 07:51 AM, Emilio Bravo wrote: Source maps from byte code? El martes, 1 de diciembre de 2015, 16:43:44 (UTC+1), Satguru

Re: GWT 2.8.0 RC1

2015-12-03 Thread Michael Joyner
Would someone please post an RC that won't break overnight BEFORE y'all start posting possible breaking changes? On 12/03/2015 10:11 AM, Thomas Broyer wrote: FYI, we've merged back the change that splitted jsinterop annotations out

Re: GWT 2.8.0 RC1

2015-12-03 Thread Michael Joyner
MUCH thanks! On 12/03/2015 12:06 PM, Thomas Broyer wrote: AFAICT, it's coming: http://www.gwtproject.org/release-notes.html On Thursday, December 3, 2015 at 5:15:19 PM UTC+1, Michael Joyner wrote

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
On 11/21/2015 08:55 AM, Thomas Broyer wrote: We're having an error deploying the new com.google.jsinterop artifacts: http://build.gwtproject.org/job/gwt/306 Try pinning the previous snapshot (using its time-stamped version) or build GWT locally and deploy it with the maven/push-gwt.sh script.

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
I can't get this mess to work with Gradle. No matter what versions I put in I get messages about jsinterop not being found. Could someone "fix" the maven snaptop repo to point the "-SNAPSHOT" back to the known working 19th version?

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
I can't seem to set GWT version to a different version other than snapshot because each module has a different version number based on seconds. I don't think this would be such an issue if the POM version numbers were truncated to DAY so that all

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
This is a good example as to why tracking daily snapshots can be a bad idea. Why isn't there an RC1 ... POM ? On 11/21/2015 06:59 AM, Adolfo Panizo Touzon wrote: Hi all, today when I tried to do a mvn clean

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
rsion is coming from. -Mike On 11/23/2015 10:48 AM, Michael Joyner wrote: I can't seem to set GWT version to a different version other than snapshot because each module has a different version number based on seconds.

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
2.9 On 11/23/2015 01:44 PM, Jens wrote: Anyone have a fix yet? Which Gradle version do you use? Gradle didn't support pinning a specific SNAPSHOT build some time ago.

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
Yes On 11/23/2015 01:50 PM, Thomas Broyer wrote: On Monday, November 23, 2015 at 5:57:58 PM UTC+1, Michael Joyner wrote: ok, this is not working out

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
Ok, I got the following to work: (linux/mac specific) [presumes you have ant, maven, jdk, etc, installed] cd ~/git mkdir gwt cd gwt git clone tools https://github.com/gwtproject/tools.git git clone https://github.com/gwtproject/gwt.git gwt cd gwt ant clean dist-dev -Dgwt.version=2.8.0-SNAPSHOT

Re: JsInterop Maven fail

2015-11-23 Thread Michael Joyner
failure. As the POM's are currently written it does not appear possible to "point to a specific version'. Anyone have a fix yet? On 11/23/2015 10:48 AM, Michael Joyner wrote: I can't seem to set GWT version to a different ve

Re: GWT EvenBus acrosee multiple modules

2015-09-02 Thread Michael Joyner
You have to use a common single instance eventbus. On 09/02/2015 10:37 AM, Swarnalatha Badabagni wrote: I have a framework module , which inherits mail module. I am firing an event

Re: What is planned release date for GWT 2.8 (with lambdas) ?

2015-08-17 Thread Michael Joyner
Yes, A stable branch with set releases monthy? bimonthy? quarterly? would definitely go well here. We are stuck on 2.7 ... -Mike On 08/17/2015 09:54 AM, Jens wrote: Some days ago in IRC and proposed that GWT should do regular releases from the CI server that do not have -SNAPSHOT in

Re: Upgradation to GWT 2.7 Shows blank page

2015-08-12 Thread Michael Joyner
you've tried superdev mode and watched the js console yet? On 08/12/2015 12:57 AM, Mohammed Sameen wrote: Recently i migrated my gwt application from |GWT 2.5| to |GWT 2.7| .Moved most of the script js from *.gwt.xml to html hostpage and added |set-configuration-property

Re: Experience with GWT on Mobile

2015-08-06 Thread Michael Joyner
Have you tried GWT Bootstrap3 ? On 08/06/2015 03:46 PM, Vassilis Virvilis wrote: Hi, In one project of mine we are continuously testing against mobile tablets and phones. We lack the resources for a proper

Re: GWT release prioritization

2015-07-31 Thread Michael Joyner
+1 to the +1 On 07/31/2015 09:24 AM, Ed wrote: +1 organizations can be very hesitant to use non-GA versions of libraries. In particular it would be a big win to have a "done" version of JsInterop v1 and clear

Re: Crawl GWT APP - Google bot

2015-07-20 Thread Michael Joyner
Michael Joyner napisał: You need to stick the following into your main GWT xml file: !-- Fallback User Agent for use by CRAWLERS -- set-property-fallback name="user.agent" value

Re: Crawl GWT APP - Google bot

2015-07-17 Thread Michael Joyner
You need to stick the following into your main GWT xml file: !-- Fallback User Agent for use by CRAWLERS -- set-property-fallback name="user.agent" value="gecko1_8" / On 07/17/2015 08:55 AM, Marek A wrote:

Re: GWT app doesn't work behind reverse proxy

2015-07-09 Thread Michael Joyner
Something else you can do to handle the RPC portion of the issue in the servlet is to do: @Override     protected SerializationPolicy doGetSerializationPolicy(             HttpServletRequest request, String moduleBaseURL, String strongName) {

GWT 2.8 Status? GWT Meet-up 2015 : which technologies for new project

2015-06-16 Thread Michael Joyner
When is GWT 2.8 supposed to ever reach RC status? It was my understanding that it initially was supposed to be released last May ? -- 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

Eclipse + Gradle plugin, Eclipse is showing Use default SDK ...

2015-06-08 Thread Michael Joyner
When using Eclipse + Gradle I noticed that GWT version is set to Use default SDK ... When using Eclipse + Maven the SDK is set to use the version downloaded into the local maven repo. It is my understanding that the Maven configuration is automatic in Eclipse based on source path and an

Re: Eclipse + Gradle plugin, Eclipse is showing Use default SDK ... (sample Gradle file)

2015-06-08 Thread Michael Joyner
On 06/08/2015 03:22 PM, Michael Joyner wrote: When using Eclipse + Gradle I noticed that GWT version is set to Use default SDK ... Here is my current build.gradle file: apply plugin: 'java' apply plugin: 'gwt' apply plugin: 'war' apply from: 'https://raw.github.com/akhikhl/gretty/master

help! maven gwt plugin - All Codehaus services have now been terminated.

2015-06-01 Thread Michael Joyner
Help! It appears that codehaus has fully shutdown per their main website All Codehaus services have now been terminated. Where do we go now for the or a gwt-maven plugin? -Mike -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: GWT 2.8.0 ?

2015-05-14 Thread Michael Joyner
On 05/14/2015 09:26 AM, Patrick Tucker wrote: Why not use the 2.8 snapshot? Does it work well via Maven? -- 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

GWT 2.8.0 ?

2015-05-13 Thread Michael Joyner
Any status reports on when any GWT 2.8.0 RC's will start being available? -- 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

Re: GWT 2.7.0 is here

2015-05-12 Thread Michael Joyner
On 05/12/2015 03:36 PM, lukaslokfuehrer...@gmail.com wrote: great tool. but why do you stop support for linux? is there a way to develop with GWT under linux??? Huh? I for one only develop using Linux ... -- You received this message because you are subscribed to the Google Groups Google

Re: Eclipse question: How to show my own custom description when I mouse over the function?

2015-05-06 Thread Michael Joyner
JavaDoc style commen on definition or interface definition /** * comment */ public void function() {} On 05/06/2015 03:46 PM, 'Leung' via Google Web Toolkit wrote: Hi, Eclipse question: How to show my own custom description when I mouse over the function created by my own? Thanks -- You

Issues with Maven and GWT and Eclipse linked source folders?

2015-01-08 Thread Michael Joyner
Hello all, Hoping this has a simple fix. We have just mavenized a 2.7 project that depends on two other non-mavenized projects. We are linking to the other projects via a set Eclipse variable to provide additional linked (and shared with other projects) source trees. Is there something I

Help! Super Dev Mode crashes with NPE on statics???

2015-01-08 Thread Michael Joyner
Help! Super Dev Mode crashes with NPE on statics??? We have a project that compiles fine and runs fine using normally compile files. When we try and run in Super Dev Mode all statics are coming up as undefined in the javascript? This only happens when running SDM ? We've tried moving the

Re: (New to GWT) Need advise in migrating current app from GWT 1.7.0

2014-12-17 Thread Michael Joyner
IMHO it would be better to go with 2.7.0 so that you will be less likely to accidentally use deprecated stuff ... On 12/17/2014 09:48 AM, ssg wrote: Hi all, I am new to GWT. Need your input. Current app is using GWT 1.7.0 Is it better to migrate to gwt2.6.1 because it will be much smoother

Google 4.4 latest plugin update for Eclipse.

2014-11-06 Thread Michael Joyner
I've just updated to the latest version of the plugin for Eclipse and noticed two things: *A*) There is now a Run as SDM for GWT enabled projects. It seems to work fine with source code pulled from other projects via linked folders which is nice. Because of the way our Servlet is

Re: SuperDevMode with -noserver and remote server

2014-09-30 Thread Michael Joyner
Just a shot in the dark, but did you enable the whitelist setting in the xml file? On 09/30/2014 02:26 PM, Rogelio Flores wrote: I have an app that that has a server with a complex setup and is memory-intensive so we run it on a remote host. Good ol' DevMode runs fine if we run it with

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and dedicated ram allocation VPS with Tomcat myself (hosted in Germany). http://www.afterburst.com/unmetered-vps On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and dedicated ram allocation VPS with Tomcat myself (hosted in Germany). http://www.afterburst.com/unmetered-vps On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put a

Re: good gwt mysql hosting

2014-09-23 Thread Michael Joyner
I use Afterburst for unlimited bandwidth and edicated ram allocation VPS with Tomcat myself. $15.00/month On 09/23/2014 03:12 AM, .tet.suo.mei.ster. wrote: just look around for a root-server ( self managed ) wich starts around 10-20eurobugs. put a debian on it, install sun-java and tomcat7 and

Re: SuperDevMode external server

2014-07-30 Thread Michael Joyner
Have you tried adjusting the whitelist setting for SDM? On 07/30/2014 08:34 AM, Jack Thompson wrote: Hello, Our GWT app does REST operations with the web server that's hosting it. The server uses HTTP-Basic authentication for the REST operations. In production mode this naturally poses no

Re: Stable .rpc files

2014-06-18 Thread Michael Joyner
On 06/17/2014 06:25 PM, Joseph Lust wrote: If that works for you. Personally, I expected idempotency in builds. We aren't deploying each recompile to the production site, and it is simple enough to add a hook to ignore a serial diff it is running locally by checking URL. -- You received

Re: Stable .rpc files

2014-06-16 Thread Michael Joyner
Ack ... What about a simple build timestamp? On 06/16/2014 03:15 PM, Joseph Lust wrote: @Michael, welcome the the Chicken and the Egg problem. In order to build the build number (I'm assuming you mean rev number from git/svn), you've first got to commit that code. Then, you've got be

Re: Stable .rpc files

2014-06-12 Thread Michael Joyner
On 06/12/2014 04:56 AM, P.G.Taboada wrote: My build process stores build/ version information into the host-file (js dictionary) and I have a servlet that delivers same information on the server side. Client asks server, if server has different build/ version number, client side reloads.

  1   2   >