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 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 displayed in the browser, but when the project is uploaded it is 
> not displayed. 
> Please I need help on what can happen. Thank you so much
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/93114622-43f1-478c-96a2-15208b8c91f6n%40googlegroups.com.


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 displayed in the browser, but when the project is uploaded it is 
not displayed. 
Please I need help on what can happen. Thank you so much

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/643cb5ec-7d07-4bae-baa3-535d931b2ed2n%40googlegroups.com.


Re: Had a problem trying GWT 2.11.0

2024-02-05 Thread Thomas Broyer
Just published version 2024.2.5 of the archetypes that adds a DOCTYPE 
linking to the DTD to the context.xml.

I could reproduce the jetty_overlays error in env=prod, but that really 
looks like a bug in the jetty-maven-plugin (and creating the directory 
allows the server to start, but it was still missing the overlay, so no 
*.nocache.js loaded from the HTML host page).

On Sunday, February 4, 2024 at 6:43:59 PM UTC+1 jamal@gmail.com wrote:

> After generating a project skeleton using the latest gwt-maven-archetypes 
> , done the usual:
> - mvn gwt:codeserver -pl *-client -am
> - mvn jetty:run -pl *-server -am -Denv=dev
>
> The first command executed without problems, however the second one failed 
> to start jetty showing on terminal the following error: 
>
> [*ERROR*] *SAX Parse Issue @null line:1 col:59 : 
> org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 59; 
> cvc-elt.1.a: Cannot find the declaration of element 'Configure'.*
> [*INFO*] 
> **
> [*INFO*] 
> *Reactor Summary for gwt-gpt 1.0-SNAPSHOT:*[*INFO*] 
> [*INFO*] gwt-gpt  *SUCCESS* 
> [  5.841 s]
> [*INFO*] gwt-gpt-shared . *SUCCESS* 
> [  1.400 s]
> [*INFO*] gwt-gpt-server . *FAILURE* 
> [  0.703 s]
> [*INFO*] 
> **
> [*INFO*] 
> *BUILD FAILURE*[*INFO*] 
> **
> [*INFO*] Total time:  14.168 s
> [*INFO*] Finished at: 2024-02-04T16:51:35Z
> [*INFO*] 
> **
> After many searches I found that *context.xml* in *jettyconf* folder had 
> missing dtd schema. Adding that as follows jetty started with no error: 
> 
> * "http://www.eclipse.org/jetty/configure.dtd 
> ">*
> 
> 
> org.eclipse.jetty.servlet.Default.useFileMappedBuffer
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/359d90ba-dbdf-45d4-9bc0-b687d99cf724n%40googlegroups.com.


Re: Had a problem trying GWT 2.11.0

2024-02-05 Thread 'tim_mac...@yahoo.co.uk' via GWT Users
I also found that out eventually.
Another thing: The server module needs /target /jetty_overlays  folder for 
running env-prod.
 

On Sunday, February 4, 2024 at 5:43:59 PM UTC jamal@gmail.com wrote:

> After generating a project skeleton using the latest gwt-maven-archetypes 
> , done the usual:
> - mvn gwt:codeserver -pl *-client -am
> - mvn jetty:run -pl *-server -am -Denv=dev
>
> The first command executed without problems, however the second one failed 
> to start jetty showing on terminal the following error: 
>
> [*ERROR*] *SAX Parse Issue @null line:1 col:59 : 
> org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 59; 
> cvc-elt.1.a: Cannot find the declaration of element 'Configure'.*
> [*INFO*] 
> **
> [*INFO*] 
> *Reactor Summary for gwt-gpt 1.0-SNAPSHOT:*[*INFO*] 
> [*INFO*] gwt-gpt  *SUCCESS* 
> [  5.841 s]
> [*INFO*] gwt-gpt-shared . *SUCCESS* 
> [  1.400 s]
> [*INFO*] gwt-gpt-server . *FAILURE* 
> [  0.703 s]
> [*INFO*] 
> **
> [*INFO*] 
> *BUILD FAILURE*[*INFO*] 
> **
> [*INFO*] Total time:  14.168 s
> [*INFO*] Finished at: 2024-02-04T16:51:35Z
> [*INFO*] 
> **
> After many searches I found that *context.xml* in *jettyconf* folder had 
> missing dtd schema. Adding that as follows jetty started with no error: 
> 
> * "http://www.eclipse.org/jetty/configure.dtd 
> ">*
> 
> 
> org.eclipse.jetty.servlet.Default.useFileMappedBuffer
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/4b4f11f4-98c7-46cd-95ef-dcaf7c975f5en%40googlegroups.com.


Had a problem trying GWT 2.11.0

2024-02-04 Thread jamal....@gmail.com
After generating a project skeleton using the latest gwt-maven-archetypes 
, done the usual:
- mvn gwt:codeserver -pl *-client -am
- mvn jetty:run -pl *-server -am -Denv=dev

The first command executed without problems, however the second one failed 
to start jetty showing on terminal the following error: 

[*ERROR*] *SAX Parse Issue @null line:1 col:59 : 
org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 59; 
cvc-elt.1.a: Cannot find the declaration of element 'Configure'.*
[*INFO*] 
**[
*INFO*] 
*Reactor Summary for gwt-gpt 1.0-SNAPSHOT:*[*INFO*] 
[*INFO*] gwt-gpt  *SUCCESS* [  
5.841 s]
[*INFO*] gwt-gpt-shared . *SUCCESS* [  
1.400 s]
[*INFO*] gwt-gpt-server . *FAILURE* [  
0.703 s]
[*INFO*] 
**[
*INFO*] 
*BUILD FAILURE*[*INFO*] 
**[
*INFO*] Total time:  14.168 s
[*INFO*] Finished at: 2024-02-04T16:51:35Z
[*INFO*] 
**
After many searches I found that *context.xml* in *jettyconf* folder had 
missing dtd schema. Adding that as follows jetty started with no error: 

*http://www.eclipse.org/jetty/configure.dtd;>*


org.eclipse.jetty.servlet.Default.useFileMappedBuffer
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/1685f6cc-c16f-4b8b-9b41-97bc81bf1139n%40googlegroups.com.


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/gwt/pull/9791

-- J. 

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 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.
>> 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:48:29 UTC+1:
>>
>>> 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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/931c6599-28d0-4586-9ad0-d499c6e22114n%40googlegroups.com.


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 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.
>> 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:48:29 UTC+1:
>>
>>> 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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/18521e2f-f9a8-4b23-acfb-e9fa42ea556fn%40googlegroups.com.


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.
> 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:48:29 UTC+1:
>
>> 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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/e381cf24-741b-4c09-844f-6811cc36be7bn%40googlegroups.com.


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:48:29 UTC+1:

> 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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/a70c7e58-5f46-4269-92cc-82c0e4e2b914n%40googlegroups.com.


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 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/7946e9b5-0820-4aa6-af6b-49a1d57c5e9cn%40googlegroups.com.


Re: Problem compiling GWT code with Java9

2018-01-04 Thread James Nelson
If you aren't using java 9 modules, the latest release will work.  It does 
this by reading the classpath from System.getProperty("java.class.path"), 
so if you are using standard tools for creating classpath, everything 
should work fine.  If you are doing anything non-standard for assigning 
classpaths, or if you are using java 9 modules (i.e. you supply a 
modulepath instead of classpath), this will very likely not work for you.

Per my previous comments, my colleagues (Colin Alworth and Justin Hickman) 
and I did start a GWT-based services company, vertispan.com.  If you want 
to chat, you can send an email to supp...@vertispan.com or come chat 
in https://gitter.im/gwtproject/gwt  We generally help anyone for free in 
the public chat room, since it helps everyone to learn about fixes, but for 
anything requiring dedicated engineering effort, we prefer to do a support 
contract.

While I cannot say what the team at Google has in store for java 9 in gwt 
2, I do have a prototype fix for java 9 modules on an old branch, so if you 
do run into trouble, feel free to post here, but you'll likely get a much 
faster response in gitter.  I have the jars pushed to a public-facing 
artifactory, and can give out coordinates if you have more exotic needs 
(and are willing to use coarse workarounds while a better solution is 
developed).  My fix resorts to reflection to access new java 9 classloader 
types, needs a bunch of ugly flags to open modules for reading by 
classloaders, and even had to unpack all of gwt-user and gwt-dev to avoid 
overloaded packages (no longer legal to have the same package in more than 
one jar in java 9).

Getting a prototype "this can work" was pretty easy, but getting it fully 
cleaned up with necessary modularization / refactoring is a potentially 
large chunk of work that could affect many files.  

So, I hope the "java.class.path" workaround works for you.  If it doesn't, 
come see us in gitter, or post back here (if you are ok waiting a few days 
for a response).

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2018-01-02 Thread Dave Bradlee
FYI. Google released a GWT update in October 
(http://www.gwtproject.org/release-notes.html#Release_Notes_2_8_2) that 
supposed includes fixes to allow it to work with Java9. We'll be trying 
that soon.

On Thursday, September 21, 2017 at 12:21:19 AM UTC-7, Thomas Broyer wrote:
>
> Fwiw, I confirm that HEAD-SNAPSHOT works with Java 9: 
> https://travis-ci.org/tbroyer/gwt-maven-plugin/jobs/277854932
>
> On Wednesday, September 20, 2017 at 10:06:51 AM UTC+2, Thomas Broyer wrote:
>>
>> There have been some changes [1,2] to make it (at least partially) work 
>> with a Java 9 VM; you can try HEAD-SNAPSHOT (from 
>> https://oss.sonatype.org/content/repositories/google-snapshots/) until 
>> we release 2.8.2 with the changes.
>>
>> [1] 
>> https://github.com/gwtproject/gwt/commit/87f27659af55d7d549521405ef10889e8dfe3f3a
>> [2] 
>> https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc
>>
>> On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote:
>>>
>>> does anyone have an update on this sissu?  I am running into the same 
>>> problem, so an update would help.
>>>
>>> On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote:

 Hi.

 I am currently very busy this week, but can try to schedule a push to 
 maven central this weekend (I have other people waiting on it to use 
 various other tools I dabble in as well).

 Please remind me if I don't post links back here by next Monday.

 Worst case scenario, I can just upload jars to github and push a gist 
 of the pom I used, with some instructions on how to set the system 
 properties to make it work.

 I used the IDE to handle vm args, as standard maven plugins are less 
 amenable to hacking / debugging (though I'm sure it must be possible, I 
 did 
 not have enough free time to get that far on it).

 I'll probably update to latest java 9 spec, since the module system has 
 undergone another iteration since I tried these hacks.

 Please keep in mind, however, that my fork has diverged from mainline 
 for quite a while, and does not undergo the same rigorous testing that you 
 might expect.
 In particular, if you start using any of the other features I've added 
 (reflection, arbitrary magic method injection), it can break incremental 
 recompilations.
 It's a known issue I'm avoiding looking at, since most of the 2.X stack 
 is going to go away, and I have to migrate all my magic into 
 apt-generators 
 to run as a pre-gwtc stage.

 While I might be able to help you get something that works as a proof 
 of concept, I would urge you to hold off on using it in production, as I 
 am 
 not (yet) ready to offer fulltime support.
 A couple colleagues and I are playing with the idea of offering 
 fulltime support and maintenance of 2.X around mid-September (barring a 
 funding miracle for our current money-source).

 So, please take this caveats to heart; I can probably get you up and 
 compiling, but this should all be viewed as experimental and 
 not-production 
 ready for a while yet.

>>>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-09-21 Thread Thomas Broyer
Fwiw, I confirm that HEAD-SNAPSHOT works with Java 
9: https://travis-ci.org/tbroyer/gwt-maven-plugin/jobs/277854932

On Wednesday, September 20, 2017 at 10:06:51 AM UTC+2, Thomas Broyer wrote:
>
> There have been some changes [1,2] to make it (at least partially) work 
> with a Java 9 VM; you can try HEAD-SNAPSHOT (from 
> https://oss.sonatype.org/content/repositories/google-snapshots/) until we 
> release 2.8.2 with the changes.
>
> [1] 
> https://github.com/gwtproject/gwt/commit/87f27659af55d7d549521405ef10889e8dfe3f3a
> [2] 
> https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc
>
> On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote:
>>
>> does anyone have an update on this sissu?  I am running into the same 
>> problem, so an update would help.
>>
>> On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote:
>>>
>>> Hi.
>>>
>>> I am currently very busy this week, but can try to schedule a push to 
>>> maven central this weekend (I have other people waiting on it to use 
>>> various other tools I dabble in as well).
>>>
>>> Please remind me if I don't post links back here by next Monday.
>>>
>>> Worst case scenario, I can just upload jars to github and push a gist of 
>>> the pom I used, with some instructions on how to set the system properties 
>>> to make it work.
>>>
>>> I used the IDE to handle vm args, as standard maven plugins are less 
>>> amenable to hacking / debugging (though I'm sure it must be possible, I did 
>>> not have enough free time to get that far on it).
>>>
>>> I'll probably update to latest java 9 spec, since the module system has 
>>> undergone another iteration since I tried these hacks.
>>>
>>> Please keep in mind, however, that my fork has diverged from mainline 
>>> for quite a while, and does not undergo the same rigorous testing that you 
>>> might expect.
>>> In particular, if you start using any of the other features I've added 
>>> (reflection, arbitrary magic method injection), it can break incremental 
>>> recompilations.
>>> It's a known issue I'm avoiding looking at, since most of the 2.X stack 
>>> is going to go away, and I have to migrate all my magic into apt-generators 
>>> to run as a pre-gwtc stage.
>>>
>>> While I might be able to help you get something that works as a proof of 
>>> concept, I would urge you to hold off on using it in production, as I am 
>>> not (yet) ready to offer fulltime support.
>>> A couple colleagues and I are playing with the idea of offering fulltime 
>>> support and maintenance of 2.X around mid-September (barring a funding 
>>> miracle for our current money-source).
>>>
>>> So, please take this caveats to heart; I can probably get you up and 
>>> compiling, but this should all be viewed as experimental and not-production 
>>> ready for a while yet.
>>>
>>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-09-20 Thread Pratik Parikh
Thank you. 



On Wednesday, September 20, 2017 at 4:06:51 AM UTC-4, Thomas Broyer wrote:
>
> There have been some changes [1,2] to make it (at least partially) work 
> with a Java 9 VM; you can try HEAD-SNAPSHOT (from 
> https://oss.sonatype.org/content/repositories/google-snapshots/) until we 
> release 2.8.2 with the changes.
>
> [1] 
> https://github.com/gwtproject/gwt/commit/87f27659af55d7d549521405ef10889e8dfe3f3a
> [2] 
> https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc
>
> On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote:
>>
>> does anyone have an update on this sissu?  I am running into the same 
>> problem, so an update would help.
>>
>> On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote:
>>>
>>> Hi.
>>>
>>> I am currently very busy this week, but can try to schedule a push to 
>>> maven central this weekend (I have other people waiting on it to use 
>>> various other tools I dabble in as well).
>>>
>>> Please remind me if I don't post links back here by next Monday.
>>>
>>> Worst case scenario, I can just upload jars to github and push a gist of 
>>> the pom I used, with some instructions on how to set the system properties 
>>> to make it work.
>>>
>>> I used the IDE to handle vm args, as standard maven plugins are less 
>>> amenable to hacking / debugging (though I'm sure it must be possible, I did 
>>> not have enough free time to get that far on it).
>>>
>>> I'll probably update to latest java 9 spec, since the module system has 
>>> undergone another iteration since I tried these hacks.
>>>
>>> Please keep in mind, however, that my fork has diverged from mainline 
>>> for quite a while, and does not undergo the same rigorous testing that you 
>>> might expect.
>>> In particular, if you start using any of the other features I've added 
>>> (reflection, arbitrary magic method injection), it can break incremental 
>>> recompilations.
>>> It's a known issue I'm avoiding looking at, since most of the 2.X stack 
>>> is going to go away, and I have to migrate all my magic into apt-generators 
>>> to run as a pre-gwtc stage.
>>>
>>> While I might be able to help you get something that works as a proof of 
>>> concept, I would urge you to hold off on using it in production, as I am 
>>> not (yet) ready to offer fulltime support.
>>> A couple colleagues and I are playing with the idea of offering fulltime 
>>> support and maintenance of 2.X around mid-September (barring a funding 
>>> miracle for our current money-source).
>>>
>>> So, please take this caveats to heart; I can probably get you up and 
>>> compiling, but this should all be viewed as experimental and not-production 
>>> ready for a while yet.
>>>
>>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-09-20 Thread Thomas Broyer
There have been some changes [1,2] to make it (at least partially) work 
with a Java 9 VM; you can try HEAD-SNAPSHOT 
(from https://oss.sonatype.org/content/repositories/google-snapshots/) 
until we release 2.8.2 with the changes.

[1] 
https://github.com/gwtproject/gwt/commit/87f27659af55d7d549521405ef10889e8dfe3f3a
[2] 
https://github.com/gwtproject/gwt/commit/5b7560c4bb6376e997981387e4f2feee1816e1dc

On Wednesday, September 20, 2017 at 9:49:20 AM UTC+2, Pratik Parikh wrote:
>
> does anyone have an update on this sissu?  I am running into the same 
> problem, so an update would help.
>
> On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote:
>>
>> Hi.
>>
>> I am currently very busy this week, but can try to schedule a push to 
>> maven central this weekend (I have other people waiting on it to use 
>> various other tools I dabble in as well).
>>
>> Please remind me if I don't post links back here by next Monday.
>>
>> Worst case scenario, I can just upload jars to github and push a gist of 
>> the pom I used, with some instructions on how to set the system properties 
>> to make it work.
>>
>> I used the IDE to handle vm args, as standard maven plugins are less 
>> amenable to hacking / debugging (though I'm sure it must be possible, I did 
>> not have enough free time to get that far on it).
>>
>> I'll probably update to latest java 9 spec, since the module system has 
>> undergone another iteration since I tried these hacks.
>>
>> Please keep in mind, however, that my fork has diverged from mainline for 
>> quite a while, and does not undergo the same rigorous testing that you 
>> might expect.
>> In particular, if you start using any of the other features I've added 
>> (reflection, arbitrary magic method injection), it can break incremental 
>> recompilations.
>> It's a known issue I'm avoiding looking at, since most of the 2.X stack 
>> is going to go away, and I have to migrate all my magic into apt-generators 
>> to run as a pre-gwtc stage.
>>
>> While I might be able to help you get something that works as a proof of 
>> concept, I would urge you to hold off on using it in production, as I am 
>> not (yet) ready to offer fulltime support.
>> A couple colleagues and I are playing with the idea of offering fulltime 
>> support and maintenance of 2.X around mid-September (barring a funding 
>> miracle for our current money-source).
>>
>> So, please take this caveats to heart; I can probably get you up and 
>> compiling, but this should all be viewed as experimental and not-production 
>> ready for a while yet.
>>
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-09-20 Thread Pratik Parikh
does anyone have an update on this sissu?  I am running into the same 
problem, so an update would help.

On Tuesday, June 13, 2017 at 12:08:29 PM UTC-4, James Nelson wrote:
>
> Hi.
>
> I am currently very busy this week, but can try to schedule a push to 
> maven central this weekend (I have other people waiting on it to use 
> various other tools I dabble in as well).
>
> Please remind me if I don't post links back here by next Monday.
>
> Worst case scenario, I can just upload jars to github and push a gist of 
> the pom I used, with some instructions on how to set the system properties 
> to make it work.
>
> I used the IDE to handle vm args, as standard maven plugins are less 
> amenable to hacking / debugging (though I'm sure it must be possible, I did 
> not have enough free time to get that far on it).
>
> I'll probably update to latest java 9 spec, since the module system has 
> undergone another iteration since I tried these hacks.
>
> Please keep in mind, however, that my fork has diverged from mainline for 
> quite a while, and does not undergo the same rigorous testing that you 
> might expect.
> In particular, if you start using any of the other features I've added 
> (reflection, arbitrary magic method injection), it can break incremental 
> recompilations.
> It's a known issue I'm avoiding looking at, since most of the 2.X stack is 
> going to go away, and I have to migrate all my magic into apt-generators to 
> run as a pre-gwtc stage.
>
> While I might be able to help you get something that works as a proof of 
> concept, I would urge you to hold off on using it in production, as I am 
> not (yet) ready to offer fulltime support.
> A couple colleagues and I are playing with the idea of offering fulltime 
> support and maintenance of 2.X around mid-September (barring a funding 
> miracle for our current money-source).
>
> So, please take this caveats to heart; I can probably get you up and 
> compiling, but this should all be viewed as experimental and not-production 
> ready for a while yet.
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-06-13 Thread James Nelson
Hi.

I am currently very busy this week, but can try to schedule a push to maven 
central this weekend (I have other people waiting on it to use various 
other tools I dabble in as well).

Please remind me if I don't post links back here by next Monday.

Worst case scenario, I can just upload jars to github and push a gist of 
the pom I used, with some instructions on how to set the system properties 
to make it work.

I used the IDE to handle vm args, as standard maven plugins are less 
amenable to hacking / debugging (though I'm sure it must be possible, I did 
not have enough free time to get that far on it).

I'll probably update to latest java 9 spec, since the module system has 
undergone another iteration since I tried these hacks.

Please keep in mind, however, that my fork has diverged from mainline for 
quite a while, and does not undergo the same rigorous testing that you 
might expect.
In particular, if you start using any of the other features I've added 
(reflection, arbitrary magic method injection), it can break incremental 
recompilations.
It's a known issue I'm avoiding looking at, since most of the 2.X stack is 
going to go away, and I have to migrate all my magic into apt-generators to 
run as a pre-gwtc stage.

While I might be able to help you get something that works as a proof of 
concept, I would urge you to hold off on using it in production, as I am 
not (yet) ready to offer fulltime support.
A couple colleagues and I are playing with the idea of offering fulltime 
support and maintenance of 2.X around mid-September (barring a funding 
miracle for our current money-source).

So, please take this caveats to heart; I can probably get you up and 
compiling, but this should all be viewed as experimental and not-production 
ready for a while yet.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-06-08 Thread shital patil
can you please share your library and i can try with that.

On Thursday, June 8, 2017 at 1:18:56 AM UTC+5:30, James Nelson wrote:
>
> Hi.
>
> Per this thread:
> https://plus.google.com/+JamesNelsonX/posts/gBfpBDnwV9V
>
> I have actually dove into Java 9 support, and cleared all the roadblocks 
> once (before the JCP pushback force the module system to get more last 
> minute changes).
>
> The main issue was not language support (easy upgrade from eclipse jdt), 
> or a tiny change for try-with-resources (allows effectively final variable 
> references, instead of only local variable declarations)...
> The biggest problem was the changes to the classloading system.
>
> Specifically, they no longer use URLClassLoader for system classloaders, 
> meaning that any attempts to "rip out the classpath" will not work any 
> longer.
>
> I managed to hack together a working compile where I check if java 9 
> classloaders are in use, and if so, use reflection (with requires 
> --add-opens for using reflection on the classloader, plus opening the 
> source module so that the gwt code can see external resources), to get 
> access to those URLs.
>
> What I did is only one way to fix; we could also add classpath 
> declarations to gwt (I use an annotation system that can reference maven 
> modules for my own compiles, so I could actually get classpath without 
> looking inside classloader).  There might also be less terrible hacks we 
> can use once the module APIs are cemented in place.
>
>
>
> If you really want to play with this RFN, I can push a build of my gwt 
> fork to maven central for you to try out.  I don't really have a snapshot 
> repo, or time to respond to bugfixes atm (though I am considering opening a 
> gwt support shop this fall, and will "do it right" at that time).  If you 
> are comfortable doing local installs to maven just to assess possibilities 
> (or if you maintain your own nexus repo), I could just send you jars 
> directly (though, that is generally a bit sketchy, imho).
>
> Let me know; I won't have time to do a release this weekend as it is my 
> wife's birthday, but I can fit it in if you'd like (and the comments in the 
> G+ post aren't helpful enough).
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-06-07 Thread James Nelson
Also, the reason gwt.xml files aren't loading sanely has to do with how 
resources are handled in java 9. 

You are going to have to either declare your source modules (with the 
gwt.xml) as `open` (no documentation for this, I found it trolling JCP 
forums),
or you can open your module to your gwt module (I built this with an 
unspeakable hack for exploration purposes) with --add-opens VM args.


If you dig into classloaders, you will discover that they will allow access 
to .class files from non-opened modules, but all other resources are 
effectively hidden unless explicitly opened.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-06-07 Thread James Nelson
Hi.

Per this thread:
https://plus.google.com/+JamesNelsonX/posts/gBfpBDnwV9V

I have actually dove into Java 9 support, and cleared all the roadblocks 
once (before the JCP pushback force the module system to get more last 
minute changes).

The main issue was not language support (easy upgrade from eclipse jdt), or 
a tiny change for try-with-resources (allows effectively final variable 
references, instead of only local variable declarations)...
The biggest problem was the changes to the classloading system.

Specifically, they no longer use URLClassLoader for system classloaders, 
meaning that any attempts to "rip out the classpath" will not work any 
longer.

I managed to hack together a working compile where I check if java 9 
classloaders are in use, and if so, use reflection (with requires 
--add-opens for using reflection on the classloader, plus opening the 
source module so that the gwt code can see external resources), to get 
access to those URLs.

What I did is only one way to fix; we could also add classpath declarations 
to gwt (I use an annotation system that can reference maven modules for my 
own compiles, so I could actually get classpath without looking inside 
classloader).  There might also be less terrible hacks we can use once the 
module APIs are cemented in place.



If you really want to play with this RFN, I can push a build of my gwt fork 
to maven central for you to try out.  I don't really have a snapshot repo, 
or time to respond to bugfixes atm (though I am considering opening a gwt 
support shop this fall, and will "do it right" at that time).  If you are 
comfortable doing local installs to maven just to assess possibilities (or 
if you maintain your own nexus repo), I could just send you jars directly 
(though, that is generally a bit sketchy, imho).

Let me know; I won't have time to do a release this weekend as it is my 
wife's birthday, but I can fit it in if you'd like (and the comments in the 
G+ post aren't helpful enough).

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-06-07 Thread shital patil
Did you find any solution to this. I am facing same issue

I tried to pass vm arg --add-modules=java.se.ee but still it doesnot work.

On Wednesday, February 15, 2017 at 2:47:30 PM UTC+5:30, Dave Bradlee wrote:
>
> At Labkey.com we're trying to compile all of our code, which includes GWT 
> code, with Java9 (due for release in the summer)getting a head start. 
> We have not been able to compile GWT code, which doesn't use any new Java 
> features. We're getting the error
>  [java] Compiling module org.labkey.experiment.property.Designer
>  [java][ERROR] Unable to find type 'java.lang.Object'
>  [java]   [ERROR] Hint: Check that your module inherits 
> 'com.google.gwt.core.Core' either directly or indirectly (most often by 
> inheriting module 'com.google.gwt.user.User')
>
> We've had an older version of GWT but have tried with the latest 2.8 as 
> well and get the same thing. I've added -logLevel=DEBUG to get more info 
> and the log says we're inheriting all of the appropriate packages, 
> including com.google.gwt.core.Core and com.google.gwt.emul.Emulation, which 
> of course is where java.lang.Object lives. It seems like something is going 
> wrong with gwt-unitCache because the log looks like this:
> ..lots of inherits before this..
>  [java]   Module location: 
> file:/Users/davebradlee/trunk/server/internal/gwtsrc/org/labkey/api/gwt/Internal.gwt.xml
>  [java]   Loading inherited module 'com.extjs.gxt.ui.GXT'
>  [java]  Module location: 
> jar:file:/Users/davebradlee/trunk/external/lib/build/gxt.jar!/com/extjs/gxt/ui/GXT.gwt.xml
>  [java]  Loading inherited module 'com.google.gwt.json.JSON'
>  [java] Module location: 
> jar:file:/Users/davebradlee/trunk/external/lib/build/gwt-user.jar!/com/google/gwt/json/JSON.gwt.xml
>  [java]   Loading inherited module 
> 'com.allen_sauer.gwt.dnd.gwt-dnd'
>  [java]  Module location: 
> jar:file:/Users/davebradlee/trunk/external/lib/server/gwt-dnd-3.2.0.jar!/com/allen_sauer/gwt/dnd/gwt-dnd.gwt.xml
>  [java] Public resources found in...
>  [java] Translatable source found in...
>  [java] Persistent unit cache dir set to: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
>  [java] Opening cache file: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
>  [java] Looking for previously cached Compilation Units in 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
>  [java] Compiling module org.labkey.experiment.property.Designer
>  [java]Found 0 cached/archived units.  Used 0 / 0 units from cache.
>  [java]Compiling...
>  [java]   Compilation completed in 0.00 seconds
>  [java]PersistentUnitCache cleanup requested
>  [java]Added 0 units to PersistentUnitCache since last cleanup
>  [java]Skipped PersistentUnitCache because no units were added
>  [java]Removing invalidated units
>  [java]Resolving enclosing classes
>  [java]Tracing compile failure path for type 'java.lang.Object'
>  [java]   Checked 0 dependencies for errors.
>  [java][ERROR] Hint: Check that your module inherits 
> 'com.google.gwt.core.Core' either directly or indirectly (most often by 
> inheriting module 'com.google.gwt.user.User')
>  [java] Closing cache file: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
>  
> (0 units written)
>  [java] Deleting empty file: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
>  [java] Shutting down PersistentUnitCache thread
>
> Using Java8 the log looks like this
> ...
>  [java] Persistent unit cache dir set to: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
>  [java] Opening cache file: 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E53CB49
>  [java] Looking for previously cached Compilation Units in 
> /Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
>  [java] Compiling module org.labkey.experiment.property.Designer
>  [java]Found 0 cached/archived units.  Used 0 / 3794 units from 
> cache.
>  [java]Compiling...
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  [java]   60% complete (ETR: 3 seconds)
>  

Re: Problem compiling GWT code with Java9

2017-02-15 Thread Thomas Broyer


On Wednesday, February 15, 2017 at 10:17:30 AM UTC+1, Dave Bradlee wrote:
>
> Anyway, has anyone else tried to compile GWT code with Java9? Or any ideas 
> how we might make the compiler happy?
>
>
I hadn't tried until now, but have the exact same error with 9-ea+152 
(using package oracle-java9-installer from webupd8 on Ubuntu 16.10) on a 
simple hello-world project (that compiles OK with Java 8).

Trying to run GWT's own test suite with Java 9 might possibly help 
understand where the problem comes from.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem compiling GWT code with Java9

2017-02-15 Thread Jens
I think it is more a class path / module path issue than a unitCache issue 
(you can always delete the unit cache or don't use it at all by disabling 
it on the command line). I guess GWT Compiler simply does not see 
Core.gwt.xml even though you have inherited it.

-- J.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Problem compiling GWT code with Java9

2017-02-15 Thread Dave Bradlee
At Labkey.com we're trying to compile all of our code, which includes GWT 
code, with Java9 (due for release in the summer)getting a head start. 
We have not been able to compile GWT code, which doesn't use any new Java 
features. We're getting the error
 [java] Compiling module org.labkey.experiment.property.Designer
 [java][ERROR] Unable to find type 'java.lang.Object'
 [java]   [ERROR] Hint: Check that your module inherits 
'com.google.gwt.core.Core' either directly or indirectly (most often by 
inheriting module 'com.google.gwt.user.User')

We've had an older version of GWT but have tried with the latest 2.8 as 
well and get the same thing. I've added -logLevel=DEBUG to get more info 
and the log says we're inheriting all of the appropriate packages, 
including com.google.gwt.core.Core and com.google.gwt.emul.Emulation, which 
of course is where java.lang.Object lives. It seems like something is going 
wrong with gwt-unitCache because the log looks like this:
..lots of inherits before this..
 [java]   Module location: 
file:/Users/davebradlee/trunk/server/internal/gwtsrc/org/labkey/api/gwt/Internal.gwt.xml
 [java]   Loading inherited module 'com.extjs.gxt.ui.GXT'
 [java]  Module location: 
jar:file:/Users/davebradlee/trunk/external/lib/build/gxt.jar!/com/extjs/gxt/ui/GXT.gwt.xml
 [java]  Loading inherited module 'com.google.gwt.json.JSON'
 [java] Module location: 
jar:file:/Users/davebradlee/trunk/external/lib/build/gwt-user.jar!/com/google/gwt/json/JSON.gwt.xml
 [java]   Loading inherited module 'com.allen_sauer.gwt.dnd.gwt-dnd'
 [java]  Module location: 
jar:file:/Users/davebradlee/trunk/external/lib/server/gwt-dnd-3.2.0.jar!/com/allen_sauer/gwt/dnd/gwt-dnd.gwt.xml
 [java] Public resources found in...
 [java] Translatable source found in...
 [java] Persistent unit cache dir set to: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
 [java] Opening cache file: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
 [java] Looking for previously cached Compilation Units in 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
 [java] Compiling module org.labkey.experiment.property.Designer
 [java]Found 0 cached/archived units.  Used 0 / 0 units from cache.
 [java]Compiling...
 [java]   Compilation completed in 0.00 seconds
 [java]PersistentUnitCache cleanup requested
 [java]Added 0 units to PersistentUnitCache since last cleanup
 [java]Skipped PersistentUnitCache because no units were added
 [java]Removing invalidated units
 [java]Resolving enclosing classes
 [java]Tracing compile failure path for type 'java.lang.Object'
 [java]   Checked 0 dependencies for errors.
 [java][ERROR] Hint: Check that your module inherits 
'com.google.gwt.core.Core' either directly or indirectly (most often by 
inheriting module 'com.google.gwt.user.User')
 [java] Closing cache file: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
 
(0 units written)
 [java] Deleting empty file: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E41072B
 [java] Shutting down PersistentUnitCache thread

Using Java8 the log looks like this
...
 [java] Persistent unit cache dir set to: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
 [java] Opening cache file: 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache/gwt-unitCache-6a094daf5d20bb65adf2d207cc48308bde849f64-015A3E53CB49
 [java] Looking for previously cached Compilation Units in 
/Users/davebradlee/trunk/build/modules/experiment/explodedModule/gwt-unitCache
 [java] Compiling module org.labkey.experiment.property.Designer
 [java]Found 0 cached/archived units.  Used 0 / 3794 units from 
cache.
 [java]Compiling...
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   60% complete (ETR: 3 seconds)
 [java]   70% complete (ETR: 2 seconds)
 [java]   80% complete (ETR: 2 seconds)
 [java]   90% complete (ETR: 1 seconds)
 [java]   100% complete (ETR: 0 seconds)
 [java]   Compilation completed in 10.80 seconds
 [java]PersistentUnitCache cleanup requested
 [java]Added 3794 units to PersistentUnitCache since last cleanup

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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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.
>
> 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 happening in Java. Is it enough to report it here or what should I do 
> now?
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 happening in Java. Is it enough to report it here or what should I do 
now?

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 generated JS. If it works in SuperDevMode but 
fails at production then it might be an optimization bug in GWT. But that 
is something you can only figure out when looking at the generated JS code.

-- J.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 Firefox, edge and IE11.

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 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 returns false.
>
> !(Math.abs(Double.NaN) < 0.0001)
>
> We are able to avoid this situation with additional checks but its seems 
> like a bug to me. Is anyone else able to confirm this issue? This was 
> working as expected in 2.7.
>
> Thanks,
> Kevin
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 returns false.

!(Math.abs(Double.NaN) < 0.0001)

We are able to avoid this situation with additional checks but its seems 
like a bug to me. Is anyone else able to confirm this issue? This was 
working as expected in 2.7.

Thanks,
Kevin

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Problem with GWT 2.8, Ant, and Eclipse

2016-11-02 Thread rjcarr
Seems you can set classloading priority in eclipse so I reordered things 
and now it is fine.  Sorry for the trouble (and the typo on "its"!).

On Wednesday, November 2, 2016 at 11:22:47 AM UTC-7, rjcarr wrote:
>
> I have a really old GWT project that I just tried to compile with gwt 2.8. 
>  The compilation was fine (I use ant), but when I opened up eclipse, and 
> pointed it to the new gwt libraries, I am getting compile errors like this:
>
> org.apache.tools.ant.types.FileSet: Can only iterate over an array or 
> an instance of java.lang.Iterable
>
> Looking at the ant api for the version I have and fileset is definitely 
> iterable.  Then I try removing the and library and I notice it's classes 
> are still available.  It seems gwt-dev.jar is bundling ant, and apparently 
> a really old version where filesets 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 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 to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Problem with GWT 2.8, Ant, and Eclipse

2016-11-02 Thread rjcarr
I have a really old GWT project that I just tried to compile with gwt 2.8. 
 The compilation was fine (I use ant), but when I opened up eclipse, and 
pointed it to the new gwt libraries, I am getting compile errors like this:

org.apache.tools.ant.types.FileSet: Can only iterate over an array or 
an instance of java.lang.Iterable

Looking at the ant api for the version I have and fileset is definitely 
iterable.  Then I try removing the and library and I notice it's classes 
are still available.  It seems gwt-dev.jar is bundling ant, and apparently 
a really old version where filesets 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 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 to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 correct.  At any rate, the object graph being sent over RPC is intended 
to be a graph of POJO's, and this has seemingly worked well for several 
months until I unexpectedly received a deserialization error on the server. 
 I won't post the specifics of this error here or why it suddenly occurred; 
I have debugged it and the cause of the problem appears to be:

1.  My POJO's are also Hibernate Entities and are annotated with @Entity
2.  This annotation triggers the GWT-RPC SerializableTypeOracleBuilder to 
determine my class as "Maybe Enhanced"
3.  Being "maybe enhanced" triggers the GWT serialization framework to look 
for set() methods for setting fields and, where found, to use these in 
preference to direct field access when deserializing a graph.
4.  My classes are not enhanced (and if they were, I would not want them 
treated the way GWT RPC currently does; I find the implemented solution to 
enhanced classes makes me queasy).
5.  The implementation, as it stands, can call methods on partially 
deserialized objects.  I believe this has been a long standing issue with 
GWT-RPC which has been noted before with respect to Object.hashCode and 
Object.equals being called on partially deserialized objects while 
populating collections.  I wonder if RPC deserialization should proceed in 
two passes; one to construct all objects and silently set all fields on 
those objects and a second pass to allow collections and perhaps this 
bizarre Enhanced mechanism to call methods on these objects to finalize the 
graph.  However, this question is not the nature of my post.

My issue with this is that I am unable to find a satisfactory way to 
disable this "enhanced" class detection and subsequent serialization 
behaviour that it triggers.  What I want is field based serialization and 
deserialization.  My options for disabling this "feature" seem to be:
1.  Remove the @Entity annotation from by entity beans and declare them as 
entities in xml.  Not appealing to me; I like the simplicity and 
cleanliness of using annotations.
2.  Modify the set() methods on my Entity beans so that they avoid 
generating exceptions by accessing fields which may not have been 
deserialized yet.  This is one workaround, but it's not appealing either: I 
really don't want methods being called on my objects until they are fully 
deserialized, and I don't want to litter my code with checks which 
otherwise would not be there.  I already have a specific HashMap 
implementation I use for GWT serialization which avoids calling hashCode() 
or equals() during deserialization, but at least this is self-contained.
3.  Hammer the GWT ServiceInterfaceProxyGenerator to stop it declaring my 
classes enhanced.  I did this with some success - I use a custom SIPG which 
inherits from the GWT standard SIPG, and I forcibly unset the enhanced 
setting on all JClassType instances in an overridden generateTypeHandlers() 
method.  This works well - at least the .gwt.rpc files do not have 
@ClientFields entries in them, and RPC works fine.  However it is obviously 
horrible and not a permanent solution, but it is better to me than the 
alternatives.  Unfortunately, and more critically, it does not seem to work 
in SuperDev mode, which I use extensively.  Does anyone have any 
suggestions why this might be or how I can fix it?  Happy to post in detail 
about the errors experienced here if someone feels they might be able to 
shed light on it.

What I would really like is a way of turning off this enhanced class 
detection feature which works throughout the GWT toolchain...

Any help most gratefully received

- Will


-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 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 Kurka wrote:
>>
>> 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/
>>
>>
>>
>> On Friday, October 2, 2015 at 10:12:10 AM UTC+2, André wrote:
>>>
>>> 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 compatible with GWT's 
>>> history implementation 
>>> 
>>> .
>>>
>>> Am I on the right track in that this is the root of our problem? Is it 
>>> possible to override the settings in History.gwt.xml 
>>> 
>>>  in 
>>> our own App.gwt.xml (preferrably in a way that it works across all FF 
>>> versions)?
>>>
>>> Thanks a lot in advance!
>>>
>>> André
>>>
>>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 compatible with GWT's 
history implementation 

.

Am I on the right track in that this is the root of our problem? Is it 
possible to override the settings in History.gwt.xml 

 in 
our own App.gwt.xml (preferrably in a way that it works across all FF 
versions)?

Thanks a lot in advance!

André

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 Kurka wrote:
>
> 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/
>
>
>
> On Friday, October 2, 2015 at 10:12:10 AM UTC+2, André wrote:
>>
>> 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 compatible with GWT's 
>> history implementation 
>> 
>> .
>>
>> Am I on the right track in that this is the root of our problem? Is it 
>> possible to override the settings in History.gwt.xml 
>> 
>>  in 
>> our own App.gwt.xml (preferrably in a way that it works across all FF 
>> versions)?
>>
>> Thanks a lot in advance!
>>
>> André
>>
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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/



On Friday, October 2, 2015 at 10:12:10 AM UTC+2, André wrote:
>
> 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 compatible with GWT's 
> history implementation 
> 
> .
>
> Am I on the right track in that this is the root of our problem? Is it 
> possible to override the settings in History.gwt.xml 
> 
>  in 
> our own App.gwt.xml (preferrably in a way that it works across all FF 
> versions)?
>
> Thanks a lot in advance!
>
> André
>

-- 
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, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 cache in the URL of my webapps. 

Example:
I got 
https://www.example.com/com.xxx.portal.x/F7973D44FB82877B968930220546FF58.cache.html
instead of 
https://www.example.com

Do you know what I can do to get the right address instead of the one 
pointing to the cache?
Sure I can do an ugly patch in my login page to parse the string from 
referer, but I would like to have a clean method.

Thanks

Alexandre

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 jens.nehlme...@gmail.com 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 subscribed to a topic in the
 Google Groups Google Web Toolkit group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/google-web-toolkit/pyYyqufWBMc/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.


-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: HTTP Referer problem with GWT

2014-09-05 Thread Jens


 How can I use the xsiframe linker?


add-linker name=xsiframe /

 

 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. matching *.cache.html in a web server or similar) then you should not 
have any problems.

-- J. 

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 
without a problem. The only thing I cannot do is compiling my project. 
Errors that I get when trying to compile with the GWT Compiler: 

Java heap space and Unable to read from byte cache. 

I already increased the size of the arguments and I also deleted all files 
from the folder unitcache. 

I also tried to compile my project without mgwt and it compiles without a 
problem. So it must be something wrong with mgwt or the way I implemented 
it. But I don´t think so, since I followed the Tutorials. 

What could be the problem? Can somebody please help me? 

Im using: 

GWT 2.5.1 
JRE7 32 Bit 
Windows XP on a Laptop
mgwt 1.2.1

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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 shinobiofm...@googlemail.com:

 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
 without a problem. The only thing I cannot do is compiling my project.
 Errors that I get when trying to compile with the GWT Compiler:

 Java heap space and Unable to read from byte cache.

 I already increased the size of the arguments and I also deleted all files
 from the folder unitcache.

 I also tried to compile my project without mgwt and it compiles without a
 problem. So it must be something wrong with mgwt or the way I implemented
 it. But I don´t think so, since I followed the Tutorials.

 What could be the problem? Can somebody please help me?

 Im using:

 GWT 2.5.1
 JRE7 32 Bit
 Windows XP on a Laptop
 mgwt 1.2.1

 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 stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-web-toolkit.
 For more options, visit https://groups.google.com/d/optout.




-- 
--
Davide Cerbo
---
www.linkedin.com/in/davidecerbo
+ 39 329 70 81 927
---

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Problem deploying GWT+Maven+Spring War on tomcat 6

2014-02-12 Thread efsiken
Hello,

I developed a GWT+Spring+Maven application on eclipse helios and all works 
well on eclipse. I clean, compile and install the application without any 
problem. But when deploy the generated war file on tomcat 6, deployment is 
successful, but the application doesn't start.

Here is the error I get on the tomcat application manager:

 ECHEC - L'application pour le chemin de contexte /test1 n'a pas pu être 
démarrée

and here is the tomcat6-stderr.log file:



12 févr. 2014 15:42:03 org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: init: Associated with Deployer 
'Catalina:type=Deployer,host=localhost'
12 févr. 2014 15:42:03 org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: init: Global resources are available
12 févr. 2014 15:42:03 org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: list: Listing contexts for virtual host 'localhost'
12 févr. 2014 15:43:05 org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: start: Starting web application at '/test1'
12 févr. 2014 15:43:05 org.apache.catalina.core.StandardContext 
listenerStart
GRAVE: Exception lors de l'envoi de l'évènement contexte initialisé 
(context initialized) à l'instance de classe d'écoute (listener) 
org.springframework.web.context.ContextLoaderListener
java.lang.NoClassDefFoundError: Could not initialize class 
org.springframework.web.context.ContextLoader
at 
org.springframework.web.context.ContextLoaderListener.createContextLoader(ContextLoaderListener.java:53)
at 
org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:44)
at 
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4210)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4709)
at 
org.apache.catalina.manager.ManagerServlet.start(ManagerServlet.java:1276)
at 
org.apache.catalina.manager.HTMLManagerServlet.start(HTMLManagerServlet.java:625)
at 
org.apache.catalina.manager.HTMLManagerServlet.doGet(HTMLManagerServlet.java:136)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:723)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at 
org.apache.catalina.filters.CsrfPreventionFilter.doFilter(CsrfPreventionFilter.java:194)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:563)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at 
org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:879)
at 
org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:617)
at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1774)
at java.lang.Thread.run(Unknown Source)
12 févr. 2014 15:43:05 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 15:43:05 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/test1] suite aux erreurs 
précédentes
12 févr. 2014 15:43:05 org.apache.catalina.core.ApplicationContext log
INFO: HTMLManager: list: Listing contexts for virtual host 'localhost'



Can someone help me out??

Thanks.

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


[gwt-contrib] Problem deploying GWT+Maven+Spring War on tomcat 6

2014-02-12 Thread efsiken
Hello,

I developed a GWT+Spring+Maven application on eclipse helios and all works 
well on eclipse. I clean, compile and install the application without any 
problem. But when deploy the generated war file on tomcat 6, deployment is 
successful, but the application doesn't start.

Here is the error I get on the tomcat application manager:

 ECHEC - L'application pour le chemin de contexte /test1 n'a pas pu être 
démarrée

and here is the tomcat6-stderr.log file:


2014-02-12 11:35:19 Commons Daemon procrun stderr initialized
12 févr. 2014 11:35:20 org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.29 using APR 
version 1.4.8.
12 févr. 2014 11:35:20 org.apache.catalina.core.AprLifecycleListener init
INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters 
[false], random [true].
12 févr. 2014 11:35:22 org.apache.catalina.core.AprLifecycleListener 
initializeSSL
INFO: OpenSSL successfully initialized with version OpenSSL 1.0.1e 11 Feb 
2013
12 févr. 2014 11:35:27 org.apache.coyote.http11.Http11AprProtocol init
INFO: Initialisation de Coyote HTTP/1.1 sur http-8080
12 févr. 2014 11:35:27 org.apache.coyote.ajp.AjpAprProtocol init
INFO: Initializing Coyote AJP/1.3 on ajp-8009
12 févr. 2014 11:35:27 org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 7241 ms
12 févr. 2014 11:35:29 org.apache.catalina.core.StandardService start
INFO: Démarrage du service Catalina
12 févr. 2014 11:35:29 org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.39
12 févr. 2014 11:35:29 org.apache.catalina.startup.HostConfig 
deployDescriptor
INFO: Déploiement du descripteur de configuration host-manager.xml
12 févr. 2014 11:35:31 org.apache.catalina.startup.HostConfig 
deployDescriptor
INFO: Déploiement du descripteur de configuration manager.xml
12 févr. 2014 11:35:31 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive eskul.war de l'application web
12 févr. 2014 11:35:32 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:35:32 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/eskul] suite aux erreurs 
précédentes
12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive gwtspring.war de l'application web
12 févr. 2014 11:35:33 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:35:33 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/gwtspring] suite aux erreurs 
précédentes
12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig 
deployDirectory
INFO: Déploiement du répertoire docs de l'application web
12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig 
deployDirectory
INFO: Déploiement du répertoire examples de l'application web
12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
deployDirectory
INFO: Déploiement du répertoire gwt de l'application web
12 févr. 2014 11:35:35 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:35:35 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/gwt] suite aux erreurs précédentes
12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
deployDirectory
INFO: Déploiement du répertoire OLD de l'application web
12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
deployDirectory
INFO: Déploiement du répertoire ROOT de l'application web
12 févr. 2014 11:35:35 org.apache.coyote.http11.Http11AprProtocol start
INFO: Démarrage de Coyote HTTP/1.1 sur http-8080
12 févr. 2014 11:35:35 org.apache.coyote.ajp.AjpAprProtocol start
INFO: Starting Coyote AJP/1.3 on ajp-8009
12 févr. 2014 11:35:35 org.apache.catalina.startup.Catalina start
INFO: Server startup in 8253 ms
12 févr. 2014 11:38:10 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive gwtspring-0.0.1-SNAPSHOT.war de 
l'application web
12 févr. 2014 11:38:10 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:38:10 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/gwtspring-0.0.1-SNAPSHOT] suite 
aux erreurs précédentes
12 févr. 2014 11:38:33 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:38:33 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/gwtspring-0.0.1-SNAPSHOT] suite 
aux erreurs précédentes
12 févr. 2014 11:39:28 org.apache.catalina.startup.HostConfig deployWAR
INFO: Déploiement de l'archive test1.war de l'application web
12 févr. 2014 11:39:29 org.apache.catalina.core.StandardContext start
GRAVE: Error listenerStart
12 févr. 2014 11:39:29 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/test1] suite aux erreurs 
précédentes
12 févr. 2014 11:39:38 

[gwt-contrib] Re: Problem deploying GWT+Maven+Spring War on tomcat 6

2014-02-12 Thread Thomas Broyer
Please use https://groups.google.com/d/forum/google-web-toolkit or 
stackoverflow.com to ask for help.

On Wednesday, February 12, 2014 3:36:11 PM UTC+1, efsiken wrote:

 Hello,

 I developed a GWT+Spring+Maven application on eclipse helios and all works 
 well on eclipse. I clean, compile and install the application without any 
 problem. But when deploy the generated war file on tomcat 6, deployment is 
 successful, but the application doesn't start.

 Here is the error I get on the tomcat application manager:

  ECHEC - L'application pour le chemin de contexte /test1 n'a pas pu être 
 démarrée

 and here is the tomcat6-stderr.log file:


 2014-02-12 11:35:19 Commons Daemon procrun stderr initialized
 12 févr. 2014 11:35:20 org.apache.catalina.core.AprLifecycleListener init
 INFO: Loaded APR based Apache Tomcat Native library 1.1.29 using APR 
 version 1.4.8.
 12 févr. 2014 11:35:20 org.apache.catalina.core.AprLifecycleListener init
 INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters 
 [false], random [true].
 12 févr. 2014 11:35:22 org.apache.catalina.core.AprLifecycleListener 
 initializeSSL
 INFO: OpenSSL successfully initialized with version OpenSSL 1.0.1e 11 Feb 
 2013
 12 févr. 2014 11:35:27 org.apache.coyote.http11.Http11AprProtocol init
 INFO: Initialisation de Coyote HTTP/1.1 sur http-8080
 12 févr. 2014 11:35:27 org.apache.coyote.ajp.AjpAprProtocol init
 INFO: Initializing Coyote AJP/1.3 on ajp-8009
 12 févr. 2014 11:35:27 org.apache.catalina.startup.Catalina load
 INFO: Initialization processed in 7241 ms
 12 févr. 2014 11:35:29 org.apache.catalina.core.StandardService start
 INFO: Démarrage du service Catalina
 12 févr. 2014 11:35:29 org.apache.catalina.core.StandardEngine start
 INFO: Starting Servlet Engine: Apache Tomcat/6.0.39
 12 févr. 2014 11:35:29 org.apache.catalina.startup.HostConfig 
 deployDescriptor
 INFO: Déploiement du descripteur de configuration host-manager.xml
 12 févr. 2014 11:35:31 org.apache.catalina.startup.HostConfig 
 deployDescriptor
 INFO: Déploiement du descripteur de configuration manager.xml
 12 févr. 2014 11:35:31 org.apache.catalina.startup.HostConfig deployWAR
 INFO: Déploiement de l'archive eskul.war de l'application web
 12 févr. 2014 11:35:32 org.apache.catalina.core.StandardContext start
 GRAVE: Error listenerStart
 12 févr. 2014 11:35:32 org.apache.catalina.core.StandardContext start
 GRAVE: Erreur de démarrage du contexte [/eskul] suite aux erreurs 
 précédentes
 12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig deployWAR
 INFO: Déploiement de l'archive gwtspring.war de l'application web
 12 févr. 2014 11:35:33 org.apache.catalina.core.StandardContext start
 GRAVE: Error listenerStart
 12 févr. 2014 11:35:33 org.apache.catalina.core.StandardContext start
 GRAVE: Erreur de démarrage du contexte [/gwtspring] suite aux erreurs 
 précédentes
 12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig 
 deployDirectory
 INFO: Déploiement du répertoire docs de l'application web
 12 févr. 2014 11:35:33 org.apache.catalina.startup.HostConfig 
 deployDirectory
 INFO: Déploiement du répertoire examples de l'application web
 12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
 deployDirectory
 INFO: Déploiement du répertoire gwt de l'application web
 12 févr. 2014 11:35:35 org.apache.catalina.core.StandardContext start
 GRAVE: Error listenerStart
 12 févr. 2014 11:35:35 org.apache.catalina.core.StandardContext start
 GRAVE: Erreur de démarrage du contexte [/gwt] suite aux erreurs précédentes
 12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
 deployDirectory
 INFO: Déploiement du répertoire OLD de l'application web
 12 févr. 2014 11:35:35 org.apache.catalina.startup.HostConfig 
 deployDirectory
 INFO: Déploiement du répertoire ROOT de l'application web
 12 févr. 2014 11:35:35 org.apache.coyote.http11.Http11AprProtocol start
 INFO: Démarrage de Coyote HTTP/1.1 sur http-8080
 12 févr. 2014 11:35:35 org.apache.coyote.ajp.AjpAprProtocol start
 INFO: Starting Coyote AJP/1.3 on ajp-8009
 12 févr. 2014 11:35:35 org.apache.catalina.startup.Catalina start
 INFO: Server startup in 8253 ms
 12 févr. 2014 11:38:10 org.apache.catalina.startup.HostConfig deployWAR
 INFO: Déploiement de l'archive gwtspring-0.0.1-SNAPSHOT.war de 
 l'application web
 12 févr. 2014 11:38:10 org.apache.catalina.core.StandardContext start
 GRAVE: Error listenerStart
 12 févr. 2014 11:38:10 org.apache.catalina.core.StandardContext start
 GRAVE: Erreur de démarrage du contexte [/gwtspring-0.0.1-SNAPSHOT] suite 
 aux erreurs précédentes
 12 févr. 2014 11:38:33 org.apache.catalina.core.StandardContext start
 GRAVE: Error listenerStart
 12 févr. 2014 11:38:33 org.apache.catalina.core.StandardContext start
 GRAVE: Erreur de démarrage du contexte [/gwtspring-0.0.1-SNAPSHOT] suite 
 aux erreurs précédentes
 12 févr. 2014 11:39:28 org.apache.catalina.startup.HostConfig deployWAR
 INFO: Déploiement de l'archive test1.war de l'application web
 12 févr. 

[gwt-contrib] Re: Problem compiling GWT from source

2013-12-29 Thread mirko bonasorte
Thank you guys! It worked perfectly!

All the best,

Mirko

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[gwt-contrib] Problem compiling GWT from source

2013-12-23 Thread mirko bonasorte
Hi all,

I have attended GWT.create workshop by Michael Vogt (thanks for your great 
session!) and I would like to contribute to the GWT project. I have 
followed the instructions provided by Michael and by the README.txt file, 
but Eclipse complains about the following:
 

 BaseFooProxy.java:

 

 Multiple markers at this line

- The type 
 java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy
  

 cannot be used here

- Cannot validate this method because the domain mapping for the return 
 type 

(java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy)
 
 could not 

 be resolved to a domain type Add @SuppressWarnings(requestfactory) to 
 dismiss.

 

 

Based on what I can understand, it seems to be a problem related to the 
Annotation Processor Factory Path configuration. As reported in the 
instructions provided in the README.txt, I have added 
GWT_TOOLS/lib/requestfactory/requestfactory-apt-2011-08-18.jar, since it 
seems to be the most recent one. There was also a 
GWT-TOOLS/lib/requestfactory/requestfactory-apt.jar. I have tried checking 
and unchecking it, but the problem persist. I have also tried using 
requestfactory-apt-2.5.1.jar, without any noticeable results.

In addition, I have other compilation errors. For instance, it cannot find 
the class 'com.google.web.bindery.requestfactory.vm.impl.TypeTokenResolver'.

I am sure I am missing something in the instructions, but I can not see 
it...

I am using Eclipse Indigo.

Thank you for your help.

Mirko

P.S. I am sorry to bother you all with such newbie questions.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[gwt-contrib] Re: Problem compiling GWT from source

2013-12-23 Thread Thomas Broyer
Hi,

I think ideally you'd build gwt with Ant and then go pick the just-built 
requestfactory-apt.jar for use in Eclipse.

On Monday, December 23, 2013 12:32:02 PM UTC+1, mirko bonasorte wrote:
 Hi all,
 
 
 I have attended GWT.create workshop by Michael Vogt (thanks for your great 
 session!) and I would like to contribute to the GWT project. I have followed 
 the instructions provided by Michael and by the README.txt file, but Eclipse 
 complains about the following:
  BaseFooProxy.java:
  Multiple markers at this line- The type 
 java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy
     cannot be used here- Cannot validate this method because the domain 
 mapping for the return type 
 (java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy)
  could not  be resolved to a domain type Add 
 @SuppressWarnings(requestfactory) to dismiss. 
  
 
 
 Based on what I can understand, it seems to be a problem related to the 
 Annotation Processor Factory Path configuration. As reported in the 
 instructions provided in the README.txt, I have added 
 GWT_TOOLS/lib/requestfactory/requestfactory-apt-2011-08-18.jar, since it 
 seems to be the most recent one. There was also a 
 GWT-TOOLS/lib/requestfactory/requestfactory-apt.jar. I have tried checking 
 and unchecking it, but the problem persist. I have also tried using 
 requestfactory-apt-2.5.1.jar, without any noticeable results.
 
 
 In addition, I have other compilation errors. For instance, it cannot find 
 the class 'com.google.web.bindery.requestfactory.vm.impl.TypeTokenResolver'.
 
 
 I am sure I am missing something in the instructions, but I can not see it...
 
 
 I am using Eclipse Indigo.
 
 
 Thank you for your help.
 
 
 Mirko
 
 
 P.S. I am sorry to bother you all with such newbie questions.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[gwt-contrib] Re: Problem compiling GWT from source

2013-12-23 Thread Michael Prentice
I agree with Thomas. I believe it already defaults to picking up the one 
generated by the ANT build. I did the same thing and ignored that part of 
the instructions since it didn't work well. After that everything built 
well enough (with regards to APT stuff). Looks like another thing in the 
README.txt that needs updating.

On Monday, December 23, 2013 7:34:13 AM UTC-5, Thomas Broyer wrote:

 Hi, 

 I think ideally you'd build gwt with Ant and then go pick the just-built 
 requestfactory-apt.jar for use in Eclipse. 

 On Monday, December 23, 2013 12:32:02 PM UTC+1, mirko bonasorte wrote: 
  Hi all, 
  
  
  I have attended GWT.create workshop by Michael Vogt (thanks for your 
 great session!) and I would like to contribute to the GWT project. I have 
 followed the instructions provided by Michael and by the README.txt file, 
 but Eclipse complains about the following: 
   BaseFooProxy.java: 
   Multiple markers at this line- The type 
 java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy
   
 cannot be used here- Cannot validate this method because the domain 
 mapping for the return type  
 (java.util.Mapcom.google.web.bindery.requestfactory.shared.MapKeyProxy,com.google.web.bindery.requestfactory.shared.MapValueProxy)
  
 could not  be resolved to a domain type Add 
 @SuppressWarnings(requestfactory) to dismiss.  

  
  
  Based on what I can understand, it seems to be a problem related to the 
 Annotation Processor Factory Path configuration. As reported in the 
 instructions provided in the README.txt, I have added 
 GWT_TOOLS/lib/requestfactory/requestfactory-apt-2011-08-18.jar, since it 
 seems to be the most recent one. There was also a 
 GWT-TOOLS/lib/requestfactory/requestfactory-apt.jar. I have tried checking 
 and unchecking it, but the problem persist. I have also tried using 
 requestfactory-apt-2.5.1.jar, without any noticeable results. 
  
  
  In addition, I have other compilation errors. For instance, it cannot 
 find the class 
 'com.google.web.bindery.requestfactory.vm.impl.TypeTokenResolver'. 
  
  
  I am sure I am missing something in the instructions, but I can not see 
 it... 
  
  
  I am using Eclipse Indigo. 
  
  
  Thank you for your help. 
  
  
  Mirko 
  
  
  P.S. I am sorry to bother you all with such newbie questions. 



-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors
--- 
You received this message because you are subscribed to the Google Groups GWT 
Contributors group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit-contributors+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


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*: getMyThreadLocalRequest().getHeader(user-agent) -- 
   Mozilla/5.0 (X11; U; Linux armv7l like Android; en-us) AppleWebKit/531.2+ 
   (KHTML, like Gecko) Version/5.0 Safari/533.2+*Kindle/3.0+* -- ok!
   - 
   
   *From the web* www.whatsmyuseragent.com -- Mozilla/5.0 (X11; U; Linux 
   armv7l like Android; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) 
   Version/5.0 Safari/533.2+ *Kindle/3.0+* -- ok !
   - 
   
   *From GWT 2.5.1 library*: Window.Navigator.getUserAgent() -- 
   Mozilla/5.0 (X11; ; U; Linux armv7l; en-us) AppleWebKit/534.26+ (KHTML, 
   like Gecko) Version/5.0 Safari/534.26+ -- ?¿?¿
   
So, I think that the GWT function is not getting the correct value for the 
user agent of the Kindle paperwhite browser...

Any idea??

Thanks a lot in advance!!

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Problem with GWT+Hibernate

2013-10-02 Thread Jens
Change

source path=com.mySampleApplication.client/ 

to

source path=client/ 

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 lazy loading then you 
can not close the hibernate session before GWT has serialized the entity. 
While serializing the lazy relationships will be fetched but if you have 
closed the session before you will get Hibernate exceptions. You should 
follow the OpenSessionInView Pattern to solve this.

-- J.

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


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 rame...@gmail.com 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 using multiple
 z-orders in your app? These issues should be easy to figure out in
 developer tools that are present in IE9.

 Honza


 On Tuesday, May 21, 2013 12:48:41 PM UTC+2, Mike wrote:

 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't close it and you can't work with the application 
 either.
 It is not a problem of the application code, it is a problem of the version 
 9 of IE, it does not happen with IE 10.
 The message shown is modal.

 I know it is an alternative using Mozilla or Google Chrome, but our client 
 is a little bit special, so he does not want to use other web browsers.

 Any idea? Has this problem happened to someone else?

 P.D.: Sorry if there is any mistake in the grammar or in some word.

  --
 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 to google-web-toolkit@googlegroups.com.
 Visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




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't close it and you can't work with the application either.
It is not a problem of the application code, it is a problem of the version 9 
of IE, it does not happen with IE 10.
The message shown is modal.

I know it is an alternative using Mozilla or Google Chrome, but our client is a 
little bit special, so he does not want to use other web browsers.

Any idea? Has this problem happened to someone else?

P.D.: Sorry if there is any mistake in the grammar or in some word.

-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: IE9 problem with GWT

2013-05-21 Thread Juan Pablo Gardella
How do you show messages?


2013/5/21 Mike miguelaz9...@gmail.com

 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't close it and you can't work with the application either.
 It is not a problem of the application code, it is a problem of the version 9 
 of IE, it does not happen with IE 10.
 The message shown is modal.

 I know it is an alternative using Mozilla or Google Chrome, but our client is 
 a little bit special, so he does not want to use other web browsers.

 Any idea? Has this problem happened to someone else?

 P.D.: Sorry if there is any mistake in the grammar or in some word.

  --
 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 to google-web-toolkit@googlegroups.com.
 Visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




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 are 
present in IE9.

Honza

On Tuesday, May 21, 2013 12:48:41 PM UTC+2, Mike wrote:

 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't close it and you can't work with the application either.
 It is not a problem of the application code, it is a problem of the version 9 
 of IE, it does not happen with IE 10.
 The message shown is modal.

 I know it is an alternative using Mozilla or Google Chrome, but our client is 
 a little bit special, so he does not want to use other web browsers.

 Any idea? Has this problem happened to someone else?

 P.D.: Sorry if there is any mistake in the grammar or in some word.



-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




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);
try {
 
Class.forName(org.postgresql.Driver);
 
} catch (ClassNotFoundException e) {
 
System.out.println(Where is your PostgreSQL JDBC Driver? 
+ Include in your library path!);
e.printStackTrace();
return;
 
}
try {
connection = 
DriverManager.getConnection(jdbc:postgresql://192.168.42.42:5432/eclipse,eclipse,
 
***);
} catch (SQLException e) {
e.printStackTrace();
System.out.println(Verbindung zur Datenbank ist 
fehlgeschlagen);
}
}

This ends up with following exception:

INFO: Dev App Server is now running
Konstruktor
org.postgresql.util.PSQLException: Der Verbindungsversuch schlug fehl.
at 
org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:225)
at 
org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:64)
at 
org.postgresql.jdbc2.AbstractJdbc2Connection.init(AbstractJdbc2Connection.java:136)
at 
org.postgresql.jdbc3.AbstractJdbc3Connection.init(AbstractJdbc3Connection.java:29)
at 
org.postgresql.jdbc3g.AbstractJdbc3gConnection.init(AbstractJdbc3gConnection.java:21)
at 
org.postgresql.jdbc4.AbstractJdbc4Connection.init(AbstractJdbc4Connection.java:31)
at org.postgresql.jdbc4.Jdbc4Connection.init(Jdbc4Connection.java:24)
at org.postgresql.Driver.makeConnection(Driver.java:393)
at org.postgresql.Driver.connect(Driver.java:267)
at java.sql.DriverManager.getConnection(DriverManager.java:579)
at java.sql.DriverManager.getConnection(DriverManager.java:221)
at li.ip6.server.GreetingServiceImpl.init(GreetingServiceImpl.java:37)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
at java.lang.Class.newInstance0(Class.java:374)
at java.lang.Class.newInstance(Class.java:327)
at org.mortbay.jetty.servlet.Holder.newInstance(Holder.java:153)
at 
org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:428)
at 
org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.java:339)
at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at 
com.google.appengine.api.socket.dev.DevSocketFilter.doFilter(DevSocketFilter.java:74)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.ResponseRewriterFilter.doFilter(ResponseRewriterFilter.java:123)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:34)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:63)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:125)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
com.google.appengine.tools.development.DevAppServerServersFilter.doDirectRequest(DevAppServerServersFilter.java:369)
at 
com.google.appengine.tools.development.DevAppServerServersFilter.doDirectServerRequest(DevAppServerServersFilter.java:352)
at 
com.google.appengine.tools.development.DevAppServerServersFilter.doFilter(DevAppServerServersFilter.java:115)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at 

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, tsst...@googlemail.com wrote:

 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);
 try {

 Class.forName(org.postgresql.Driver);

 } catch (ClassNotFoundException e) {

 System.out.println(Where is your PostgreSQL JDBC Driver? 
 + Include in your library path!);
 e.printStackTrace();
 return;

 }
 try {
 connection = DriverManager.getConnection(jdbc:postgresql://
 192.168.42.42:5432/eclipse,eclipse, ***);
 } catch (SQLException e) {
 e.printStackTrace();
 System.out.println(Verbindung zur Datenbank ist
 fehlgeschlagen);
 }
 }

 This ends up with following exception:

 INFO: Dev App Server is now running
 Konstruktor
 org.postgresql.util.PSQLException: Der Verbindungsversuch schlug fehl.
 at
 org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:225)
 at
 org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:64)
 at
 org.postgresql.jdbc2.AbstractJdbc2Connection.init(AbstractJdbc2Connection.java:136)
 at
 org.postgresql.jdbc3.AbstractJdbc3Connection.init(AbstractJdbc3Connection.java:29)
 at
 org.postgresql.jdbc3g.AbstractJdbc3gConnection.init(AbstractJdbc3gConnection.java:21)
 at
 org.postgresql.jdbc4.AbstractJdbc4Connection.init(AbstractJdbc4Connection.java:31)
 at org.postgresql.jdbc4.Jdbc4Connection.init(Jdbc4Connection.java:24)
 at org.postgresql.Driver.makeConnection(Driver.java:393)
 at org.postgresql.Driver.connect(Driver.java:267)
 at java.sql.DriverManager.getConnection(DriverManager.java:579)
 at java.sql.DriverManager.getConnection(DriverManager.java:221)
 at
 li.ip6.server.GreetingServiceImpl.init(GreetingServiceImpl.java:37)
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
 Method)
 at
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
 at java.lang.Class.newInstance0(Class.java:374)
 at java.lang.Class.newInstance(Class.java:327)
 at org.mortbay.jetty.servlet.Holder.newInstance(Holder.java:153)
 at
 org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:428)
 at
 org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.java:339)
 at
 org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
 at
 com.google.appengine.api.socket.dev.DevSocketFilter.doFilter(DevSocketFilter.java:74)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.appengine.tools.development.ResponseRewriterFilter.doFilter(ResponseRewriterFilter.java:123)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:34)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:63)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:125)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 com.google.appengine.tools.development.DevAppServerServersFilter.doDirectRequest(DevAppServerServersFilter.java:369)
 at
 com.google.appengine.tools.development.DevAppServerServersFilter.doDirectServerRequest(DevAppServerServersFilter.java:352)
 at
 com.google.appengine.tools.development.DevAppServerServersFilter.doFilter(DevAppServerServersFilter.java:115)
 at
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
 at
 org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
 at
 

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 UTC+8, Mansouri Brahim wrote:

 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 mistyped in plugin.xml.

 and
 java.lang.ClassNotFoundException: 
 org.eclipse.wb.internal.core.editor.multi.DesignerEditor
 at 
 org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:513)
 at 
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
 at 
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
 at 
 org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
 at 
 org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:345)
 at 
 org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229)
 at 
 org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1207)
 at 
 org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:174)
 at 
 org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905)
 at 
 org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)
 at 
 org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55)
 at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugin.java:268)
 at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
 at 
 org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:264)
 at 
 org.eclipse.ui.internal.registry.EditorDescriptor.createEditor(EditorDescriptor.java:235)
 at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:875)
 at 
 org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:609)
 at 
 org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:465)
 at 
 org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
 at 
 org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:289)
 at 
 org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2945)
 at 
 org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2850)
 at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2842)
 at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2793)
 at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
 at 
 org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2789)
 at 
 org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2773)
 at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:331)
 at org.eclipse.ui.actions.OpenWithMenu$2.handleEvent(OpenWithMenu.java:179)
 at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
 at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
 at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
 at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
 at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
 at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
 at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
 at 
 org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
 at 
 org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
 at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
 at 
 org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:123)
 at 
 org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
 at 
 org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
 at 
 org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
 at 
 org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
 at 
 org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at 

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 mistyped in plugin.xml.

and
java.lang.ClassNotFoundException: 
org.eclipse.wb.internal.core.editor.multi.DesignerEditor
at 
org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:513)
at 
org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:429)
at 
org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:417)
at 
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at 
org.eclipse.osgi.internal.loader.BundleLoader.loadClass(BundleLoader.java:345)
at 
org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost.java:229)
at 
org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(AbstractBundle.java:1207)
at 
org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:174)
at 
org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:905)
at 
org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243)
at 
org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:55)
at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugin.java:268)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at 
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:264)
at 
org.eclipse.ui.internal.registry.EditorDescriptor.createEditor(EditorDescriptor.java:235)
at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:875)
at 
org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:609)
at 
org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:465)
at 
org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
at 
org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:289)
at 
org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2945)
at 
org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2850)
at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2842)
at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2793)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2789)
at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2773)
at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:331)
at org.eclipse.ui.actions.OpenWithMenu$2.handleEvent(OpenWithMenu.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2701)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2665)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2499)
at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:679)
at 
org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
at 
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:668)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at 
org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:123)
at 
org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at 
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at 
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at 
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
at 
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
at org.eclipse.equinox.launcher.Main.run(Main.java:1410)

-- 
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 

Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Dominic Warzok
Hey I try to use Super Dev Mode in my web app. 

But I always get the message

 Can't find any GWT Modules on this page. code serverhttp://127.0.0.1:9876/



I follow these Steps to get Super Dev Mode running in eclipse: 

1. *add* add-linker name=xsiframe /
set-configuration-property name=devModeRedirectEnabled value=true /

* to my webapp.xml*


2. *build a new Java configuration* Run as Java App

3. *Start up code server* Output:

A lot of compiling packages and this:

* Source Maps Enabled*

*   Compile of permutations succeeded*

*Linking into 
C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\war\web_cam;
 
Writing extras to 
C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\extras\web_cam
*

*   Link succeeded*

*   Compilation succeeded -- 50,274s*

*Compile completed in 50873 ms*

*SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.*

*SLF4J: Defaulting to no-operation (NOP) logger implementation*

*SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further 
details.*

*
*

*The code server is ready.*

*Next, visit: http://localhost:9876/*

4. *Run normal dev mode* with these  programm arguments:


*-war ${workspace_loc:Web-CAM/war} -remoteUI 
${gwt_remote_ui_server_port}:${unique_id} -startupUrl Web_CAM.html 
-logLevel INFO -codeServerPort 4321 -port  
com.SchumannGmbH.cam.web.Web_CAM*

* *

Maybe here is the error ?! 


5. *Go to* http://localhost/myWebApp.html 

6. *Click Dev Mode On* 


If I set up a Testproject this will work but not with my bigger webapp, 

Any sugesstions 

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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Thomas Broyer
Did you compile your module once with the xsiframe linker and 
devModeRedirectEnabled?

On Wednesday, February 27, 2013 10:09:59 AM UTC+1, Dominic Warzok wrote:

 Hey I try to use Super Dev Mode in my web app. 

 But I always get the message

  Can't find any GWT Modules on this page. code serverhttp://127.0.0.1:9876/
 


 I follow these Steps to get Super Dev Mode running in eclipse: 

 1. *add* add-linker name=xsiframe /
 set-configuration-property name=devModeRedirectEnabled value=true /

 * to my webapp.xml*


 2. *build a new Java configuration* Run as Java App

 3. *Start up code server* Output:

 A lot of compiling packages and this:

 * Source Maps Enabled*

 *   Compile of permutations succeeded*

 *Linking into 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\war\web_cam;
  
 Writing extras to 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\extras\web_cam
 *

 *   Link succeeded*

 *   Compilation succeeded -- 50,274s*

 *Compile completed in 50873 ms*

 *SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.*

 *SLF4J: Defaulting to no-operation (NOP) logger implementation*

 *SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for 
 further details.*

 *
 *

 *The code server is ready.*

 *Next, visit: http://localhost:9876/*

 4. *Run normal dev mode* with these  programm arguments:


 *-war ${workspace_loc:Web-CAM/war} -remoteUI 
 ${gwt_remote_ui_server_port}:${unique_id} -startupUrl Web_CAM.html 
 -logLevel INFO -codeServerPort 4321 -port  
 com.SchumannGmbH.cam.web.Web_CAM*

 * *

 Maybe here is the error ?! 


 5. *Go to* http://localhost/myWebApp.html 


I'm assuming locahost:/Web_CAM.html here?
 

 6. *Click Dev Mode On* 


 If I set up a Testproject this will work but not with my bigger webapp, 

 Any sugesstions 

 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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Dominic Warzok
Yes I did compile my module with the xsiframe and devModeRedirectEnabled.

But it won't work. 

And yes you ar right Web_CAM is my web app so I went to 
localhost:/Web_CAM.html



On Wednesday, February 27, 2013 10:39:36 AM UTC+1, Thomas Broyer wrote:

 Did you compile your module once with the xsiframe linker and 
 devModeRedirectEnabled?

 On Wednesday, February 27, 2013 10:09:59 AM UTC+1, Dominic Warzok wrote:

 Hey I try to use Super Dev Mode in my web app. 

 But I always get the message

  Can't find any GWT Modules on this page. code 
 serverhttp://127.0.0.1:9876/
 


 I follow these Steps to get Super Dev Mode running in eclipse: 

 1. *add* add-linker name=xsiframe /
 set-configuration-property name=devModeRedirectEnabled value=true /

 * to my webapp.xml*


 2. *build a new Java configuration* Run as Java App

 3. *Start up code server* Output:

 A lot of compiling packages and this:

 * Source Maps Enabled*

 *   Compile of permutations succeeded*

 *Linking into 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\war\web_cam;
  
 Writing extras to 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\extras\web_cam
 *

 *   Link succeeded*

 *   Compilation succeeded -- 50,274s*

 *Compile completed in 50873 ms*

 *SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.*

 *SLF4J: Defaulting to no-operation (NOP) logger implementation*

 *SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for 
 further details.*

 *
 *

 *The code server is ready.*

 *Next, visit: http://localhost:9876/*

 4. *Run normal dev mode* with these  programm arguments:


 *-war ${workspace_loc:Web-CAM/war} -remoteUI 
 ${gwt_remote_ui_server_port}:${unique_id} -startupUrl Web_CAM.html 
 -logLevel INFO -codeServerPort 4321 -port  
 com.SchumannGmbH.cam.web.Web_CAM*

 * *

 Maybe here is the error ?! 


 5. *Go to* http://localhost/myWebApp.html 


 I'm assuming locahost:/Web_CAM.html here?
  

 6. *Click Dev Mode On* 


 If I set up a Testproject this will work but not with my bigger webapp, 

 Any sugesstions 

 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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread emurmur
Here is a blog post I wrote on getting the code server running with the 
Elemental library.  You might find stuff in it that is useful.

http://lumpofcode.blogspot.com/2012/11/configuring-gwt-codeserver-and.html



On Wednesday, February 27, 2013 1:09:59 AM UTC-8, Dominic Warzok wrote:

 Hey I try to use Super Dev Mode in my web app. 

 But I always get the message

  Can't find any GWT Modules on this page. code serverhttp://127.0.0.1:9876/
 


 I follow these Steps to get Super Dev Mode running in eclipse: 

 1. *add* add-linker name=xsiframe /
 set-configuration-property name=devModeRedirectEnabled value=true /

 * to my webapp.xml*


 2. *build a new Java configuration* Run as Java App

 3. *Start up code server* Output:

 A lot of compiling packages and this:

 * Source Maps Enabled*

 *   Compile of permutations succeeded*

 *Linking into 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\war\web_cam;
  
 Writing extras to 
 C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\extras\web_cam
 *

 *   Link succeeded*

 *   Compilation succeeded -- 50,274s*

 *Compile completed in 50873 ms*

 *SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.*

 *SLF4J: Defaulting to no-operation (NOP) logger implementation*

 *SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for 
 further details.*

 *
 *

 *The code server is ready.*

 *Next, visit: http://localhost:9876/*

 4. *Run normal dev mode* with these  programm arguments:


 *-war ${workspace_loc:Web-CAM/war} -remoteUI 
 ${gwt_remote_ui_server_port}:${unique_id} -startupUrl Web_CAM.html 
 -logLevel INFO -codeServerPort 4321 -port  
 com.SchumannGmbH.cam.web.Web_CAM*

 * *

 Maybe here is the error ?! 


 5. *Go to* http://localhost/myWebApp.html 

 6. *Click Dev Mode On* 


 If I set up a Testproject this will work but not with my bigger webapp, 

 Any sugesstions 

 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 stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: Problem use GWT 2.5.0 Super Dev Mode

2013-02-27 Thread Juan Pablo Gardella
See
https://groups.google.com/group/google-web-toolkit/browse_thread/thread/efc1e5e3b7853cac/0d745bfee422f8eb


2013/2/27 emurmur emur...@conceptuamath.com

 Here is a blog post I wrote on getting the code server running with the
 Elemental library.  You might find stuff in it that is useful.

 http://lumpofcode.blogspot.com/2012/11/configuring-gwt-codeserver-and.html



 On Wednesday, February 27, 2013 1:09:59 AM UTC-8, Dominic Warzok wrote:

 Hey I try to use Super Dev Mode in my web app.

 But I always get the message

  Can't find any GWT Modules on this page. code 
 serverhttp://127.0.0.1:9876/
 


 I follow these Steps to get Super Dev Mode running in eclipse:

 1. *add* add-linker name=xsiframe /
 set-configuration-property name=devModeRedirectEnabled value=true /

 * to my webapp.xml*


 2. *build a new Java configuration* Run as Java App

 3. *Start up code server* Output:

 A lot of compiling packages and this:

 * Source Maps Enabled*

 *   Compile of permutations succeeded*

 *Linking into C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-
 2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\compile-1\war\web_cam;
 Writing extras to C:\Users\warzok\AppData\Local\Temp\gwt-codeserver-
 2196663031883485286.tmp\com.SchumannGmbH.cam.web.Web_CAM\
 compile-1\extras\web_cam*

 *   Link succeeded*

 *   Compilation succeeded -- 50,274s*

 *Compile completed in 50873 ms*

 *SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.*

 *SLF4J: Defaulting to no-operation (NOP) logger implementation*

 *SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for
 further details.*

 *
 *

 *The code server is ready.*

 *Next, visit: http://localhost:9876/*

 4. *Run normal dev mode* with these  programm arguments:


 *-war ${workspace_loc:Web-CAM/war} -remoteUI
 ${gwt_remote_ui_server_port}:${unique_id} -startupUrl Web_CAM.html
 -logLevel INFO -codeServerPort 4321 -port  com.SchumannGmbH.cam.web.Web_
 CAM*

 * *

 Maybe here is the error ?!


 5. *Go to* http://localhost/myWebApp.html**

 6. *Click Dev Mode On*


 If I set up a Testproject this will work but not with my bigger webapp,

 Any sugesstions

 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 stop receiving emails from it, send an
 email to google-web-toolkit+unsubscr...@googlegroups.com.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 Visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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 to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




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 Toolkit group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/O1JOIU0yvEgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Problem installing gwt developer plugin on Chrome/Windows 8

2012-11-09 Thread Luigi Viggiano
Hi everybody.

we are having a problem with a Windows 8 laptop and Chrome, which is 
refusing to install the gwt developer plugin.

Is this a known issue, and is there a workaround to the problem?

Thanks.
Luigi.

-- 
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/-/NE9bb2kD2hwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Problem installing gwt developer plugin on Chrome/Windows 8

2012-11-09 Thread Thomas Broyer

On Friday, November 9, 2012 12:16:17 PM UTC+1, Luigi Viggiano wrote:

 Hi everybody.

 we are having a problem with a Windows 8 laptop and Chrome, which is 
 refusing to install the gwt developer plugin.

 Is this a known issue, and is there a workaround to the problem?


See my comment in 
http://code.google.com/p/google-web-toolkit/issues/detail?id=7778 

-- 
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/-/XRobnX1nzmMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



problem installing GWT on RAD8.0.4 in intranet

2012-07-15 Thread Guy Passy
I've seen several people asked about the problem I've encountered when 
attempting to install GWT plugin for Eclipse 3.6 (on IBM RAD 8.0.4).
In all of the threads that I saw, the solution given was to add the Eclipse 
Repository so that Eclipse would update the necessary files.

*I cannot do this* as I am on a company *intranet*!

Is it possible to update the Eclipse that RAD is installed with/build on?
Where can I get the necessary files for the installation?

Or is there another possible way to do this?

Any help would be greatly appreciated.

-- 
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/-/AO-P8KayPRAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Problem installign gwt in eclipse

2012-06-20 Thread Rob
Hi,

Draft post:

-

In this post, we're going to take a look at how we can work with GWT and 
Maven when using Eclipse's Integrated Development Environment (IDE).

So we'll need to:

   1. Install the Google Plugin for Eclipse
   2. Install the Maven Integration for Eclipse plugin
   3. Install the Maven Integration for WTP plugin

Prerequisites

You will need a Java 
SDKhttp://www.oracle.com/technetwork/java/javase/downloads/index.html(version 
1.7 or later), the Eclipse 
IDE for Java EE Developers http://www.eclipse.org/downloads/ (Indigo 
version 3.7.2 or later) and Maven 
http://maven.apache.org/download.html(version 3.0.4 or later).

I started with a fresh install of Eclipse and followed these 
recommendationshttp://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipsewhen
 updating eclipse.ini.

You should also disable any unnecessary start-up actions (e.g. Windows - 
Preferences, type “startup”, select “Startup and Shutdown”, and then 
deselect the options you don’t need) and validations (e.g. Windows - 
Preferences - Validation, click “Disable All”, and then select only the 
options you need). You might also want to consider setting up a ram 
diskhttp://www.beyondlinux.com/2011/06/25/speed-up-your-eclipse-as-a-super-fast-ide/
.

And don't forget to add the Java SDK, Eclipse, your workspace and any other 
related folders to the white list in your anti-virus software.

*Note: *If you run into any issues when checking for updates or installing 
new software then you might need to disable your anti-virus 
softwarehttp://stackoverflow.com/questions/8367856/eclipse-downloading-content-jar-times-out-while-installing-plugins(e.g.
 AVG's Link Scanner, Identity Protection and Resident Shield).
1. Install the Google Plugin for Eclipse

The Google Plugin for Eclipse (GPE) makes it easy to import Maven projects 
that use GWT and App Engine. To get started, we first need to install GPE 
and then some additional plugins.

In Eclipse choose Help - Install New Software... and paste the update 
site URL *http://dl.google.com/eclipse/plugin/3.7* into the field named 
Work with: then press the Enter key.

Pressing Enter should cause Eclipse to update the list of available plugins:

[image: Google Plugin for Eclipse]

Select the Google Plugin for Eclipse 3.7 (and optionally the Google Web 
Toolkit SDK and the Google App Engine SDK) click Next and then follow the 
prompts. When the download has finished and the installation is complete 
make sure you restart Eclipse.

*Note:* As an alternative to installing from the update site, you can 
install the Google Plugin for Eclipse by downloading and installing an 
archive of the update 
sitehttps://developers.google.com/eclipse/docs/install-from-zip
.
2. Install the Maven Integration for Eclipse plugin

In Eclipse choose Help - Install New Software... and paste the update 
site URL *http://download.eclipse.org/technology/m2e/milestones/1.1* into 
the field named Work with: then press the Enter key.

Pressing Enter should cause Eclipse to update the list of available plugins:

[image: Maven Integration for Eclipse]

Select the Maven Integration for Eclipse plugin then click Next and follow 
the prompts. When the download has finished and the installation is 
complete make sure you restart Eclipse.

*Note:* If like me you run more than one version of Maven (e.g. Maven 2 and 
Maven 3) then you need to check your environment and make sure you aren't 
referencing more than one 
installationhttp://askubuntu.com/questions/41017/maven-exits-after-trying-to-run-it
.
3. Install the Maven Integration for WTP plugin

In Eclipse choose Help - Install New Software... and paste the update 
site URL *http://download.jboss.org/jbosstools/updates/m2eclipse-wtp* into 
the field named Work with: then press the Enter key.

Pressing Enter should cause Eclipse to update the list of available plugins:

[image: Maven Integration for WTP]

Select the Maven Integration for WTP (Web Tools Platform) plugin then click 
Next and follow the prompts. When the download has finished and the 
installation is complete make sure you restart Eclipse.
What's Next

If you have successfully installed the Google Plugin for Eclipse (GPE) and 
the additional plugins then you're ready to generate a skeleton GWT Maven 
projecthttp://kiahu.com/tutorial/generate-a-skeleton-project-using-gwt-and-maven/
.
-

Cheers
Rob

kiahu.com

On Friday, June 15, 2012 8:09:05 PM UTC+10, PhiLho wrote:

 On 14/06/2012 02:40, Jeff Silverman wrote: 
  On Friday, June 8, 2012 4:56:20 AM UTC-7, Ed wrote: 
  
  If your using AVG turn off link checker. 
  
  
  Ed, 
  
  I am something of a Newbie to Eclipse. What is AVG and what is the link 
 checker? How do I 
  turn it off? 

 I think the advice is about shutting off anti-virus software / security 
 suites / 
 firewalls, at least for the time of update. 

 -- 
 Philippe Lhoste 
 --  (near) Paris -- France 
 --  http://Phi.Lho.free.fr 
 --  --  --  --  --  --  --  

Re: Problem installign gwt in eclipse

2012-06-15 Thread Philippe Lhoste

On 14/06/2012 02:40, Jeff Silverman wrote:

On Friday, June 8, 2012 4:56:20 AM UTC-7, Ed wrote:

If your using AVG turn off link checker.


Ed,

I am something of a Newbie to Eclipse. What is AVG and what is the link 
checker? How do I
turn it off?


I think the advice is about shutting off anti-virus software / security suites / 
firewalls, at least for the time of update.


--
Philippe Lhoste
--  (near) Paris -- France
--  http://Phi.Lho.free.fr
--  --  --  --  --  --  --  --  --  --  --  --  --  --

--
You received this message because you are subscribed to the Google Groups Google 
Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Problem installign gwt in eclipse

2012-06-14 Thread Jeff Silverman


On Friday, June 8, 2012 4:56:20 AM UTC-7, Ed wrote:

 If your using AVG turn off link checker. 


Ed,

I am something of a Newbie to Eclipse.  What is AVG and what is the link 
checker?  How do I turn it off?


Many thanks,


Jeff Silverman
 


 On Tue, Jun 5, 2012 at 1:14 PM, sahli sabrina sahli.sabr...@gmail.com 
 wrote: 
  hi, i have eclipse version 3.5 and i want to set up gwt but i have 
  always this error message T 
  
  he operation cannot be completed. See the details. 
  
  
  details 
  
  Cannot complete the install because one or more required items could 
  not be found. 
  Software being installed: Google Plugin for Eclipse 3.5 
  2.6.1.v201205091048-rel-r35 
  (com.google.gdt.eclipse.suite.e35.feature.feature.group 
  2.6.1.v201205091048-rel-r35) 
  Missing requirement: Google Plugin for Eclipse 3.5 2.6.1.v201205091048- 
  rel-r35 (com.google.gdt.eclipse.suite.e35.feature.feature.group 
  2.6.1.v201205091048-rel-r35) requires 'org.eclipse.mylyn.commons.ui 
  0.0.0' but it could not be 
  found 
  . 
  
  can anyone help me to resolve this problem it is realy very important 
  and urgent for me 
  
  thank you 
  
  -- 
  You received this message because you are subscribed to the Google 
 Groups Google Web Toolkit group. 
  To post to this group, send email to google-web-toolkit@googlegroups.com. 

  To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com. 
  For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en. 
  


-- 
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/-/m21YfDZbvxAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Problem installign gwt in eclipse

2012-06-08 Thread Ed
If your using AVG turn off link checker.

On Tue, Jun 5, 2012 at 1:14 PM, sahli sabrina sahli.sabr...@gmail.com wrote:
 hi, i have eclipse version 3.5 and i want to set up gwt but i have
 always this error message T

 he operation cannot be completed. See the details.


 details

 Cannot complete the install because one or more required items could
 not be found.
 Software being installed: Google Plugin for Eclipse 3.5
 2.6.1.v201205091048-rel-r35
 (com.google.gdt.eclipse.suite.e35.feature.feature.group
 2.6.1.v201205091048-rel-r35)
 Missing requirement: Google Plugin for Eclipse 3.5 2.6.1.v201205091048-
 rel-r35 (com.google.gdt.eclipse.suite.e35.feature.feature.group
 2.6.1.v201205091048-rel-r35) requires 'org.eclipse.mylyn.commons.ui
 0.0.0' but it could not be
 found
 .

 can anyone help me to resolve this problem it is realy very important
 and urgent for me

 thank you

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Problem installign gwt in eclipse

2012-06-07 Thread sahli sabrina
hi, i have eclipse version 3.5 and i want to set up gwt but i have
always this error message T

he operation cannot be completed. See the details.


details

Cannot complete the install because one or more required items could
not be found.
Software being installed: Google Plugin for Eclipse 3.5
2.6.1.v201205091048-rel-r35
(com.google.gdt.eclipse.suite.e35.feature.feature.group
2.6.1.v201205091048-rel-r35)
Missing requirement: Google Plugin for Eclipse 3.5 2.6.1.v201205091048-
rel-r35 (com.google.gdt.eclipse.suite.e35.feature.feature.group
2.6.1.v201205091048-rel-r35) requires 'org.eclipse.mylyn.commons.ui
0.0.0' but it could not be
found
.

can anyone help me to resolve this problem it is realy very important
and urgent for me

thank you

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Findbugs problem by GWT Project.

2012-05-15 Thread gleclaire
You either need a full path to the class or end with .* if you wish to do 
all the class at the package level.  If you wish to include subpackages use 
.- suffix instead.

See http://findbugs.sourceforge.net/manual/running.html#commandLineOptions



On Monday, October 31, 2011 10:37:42 AM UTC-4, Kotuboy wrote:

 I have a maven GWT project and i am using findbugs to analyze the code.

 plugin
 groupIdorg.codehaus.mojo/groupId
 artifactIdfindbugs-maven-plugin/artifactId
 version2.3.2/version
 configuration
 targetJdk1.6/targetJdk
 onlyAnalyzecom.mycompany./onlyAnalyze
 
 /configuration
 /plugin

 But I am getting the following error and dont get any result from 
 findbugs. The other plugins are working properly.

  [INFO] Fork Value is true
 [java] The following classes needed for analysis were missing:
 [java] com.google.gwt.core.client.GWTBridge
 [java] Missing classes: 2 
 [INFO] xmlOutput is false

  What is the difference of findbugs?? What do you recommend?




-- 
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/-/sXsQFEDS6z8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Findbugs problem by GWT Project.

2012-05-11 Thread Carlos Alexandro Becker
I am with this problem here too...

On Monday, October 31, 2011 12:37:42 PM UTC-2, Kotuboy wrote:

 I have a maven GWT project and i am using findbugs to analyze the code.

 plugin
 groupIdorg.codehaus.mojo/groupId
 artifactIdfindbugs-maven-plugin/artifactId
 version2.3.2/version
 configuration
 targetJdk1.6/targetJdk
 onlyAnalyzecom.mycompany./onlyAnalyze
 
 /configuration
 /plugin

 But I am getting the following error and dont get any result from 
 findbugs. The other plugins are working properly.

  [INFO] Fork Value is true
 [java] The following classes needed for analysis were missing:
 [java] com.google.gwt.core.client.GWTBridge
 [java] Missing classes: 2 
 [INFO] xmlOutput is false

  What is the difference of findbugs?? What do you recommend?




-- 
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/-/urdax7AiVsMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Problem requiring GWT app to use HTTPS

2012-04-27 Thread David Robison
I have a GWT app that has been running fine over HTTP. I now want to
restrict it to using HTTPS. I've modified the web.xml file as follows:

?xml version=1.0 encoding=UTF-8?
!DOCTYPE web-app
PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//
EN
http://java.sun.com/dtd/web-app_2_3.dtd;

web-app

  filter
filter-nameguiceFilter/filter-name
filter-classcom.google.inject.servlet.GuiceFilter/filter-
class
  /filter

  filter-mapping
filter-nameguiceFilter/filter-name
url-pattern/*/url-pattern
  /filter-mapping

  listener
listener-classcom.orci.vicads.server.AppConfigListener/
listener-class
  /listener

  welcome-file-list
welcome-fileAlarmClips.html/welcome-file
  /welcome-file-list

  security-constraint
web-resource-collection
web-resource-namesecuredapp/web-resource-name
url-pattern/*/url-pattern
/web-resource-collection
user-data-constraint
transport-guaranteeCONFIDENTIAL/transport-guarantee
/user-data-constraint
  /security-constraint

/web-app

I am running inside of JBoss AS5. When JBoss tries to startup the app
I get the following error:

ERROR org.apache.catalina.core.ContainerBase.[jboss.web].
[localhost].[/ORCI-GWT-V5MilestoneAlarmClips-1.0]  Error configuring
application listener of class com.orci.vicads.server.AppConfigListener
java.lang.ClassNotFoundException:
com.orci.vicads.server.AppConfigListener

However, when I remove the security-constraint, the app starts up
normally. Am I doing something wrong?
Thanks, David

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 compiler gripes and points me to the temp file
holding the generated code.  I'm curious what kind of issues result in
this message.

For what it is worth, I really like GWT but I find the error messaging
during the compile phase is beyond cryptic for bugs in generators.

Thanks,

Stephan

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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! rihab.sa...@gmail.com wrote:
 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, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: source path problem in GWT RPC

2011-12-13 Thread Kanagaraj M
The problem is in your Rpctext.gwt.xml

source path='rpctest.client.Rpctest'/
  source path='server'/
  source path='hibDomain.User'/

You are supposed to put only 

source path='client'/

-- 
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/-/0gNvbftWS9kJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/m3JtPntBkEwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 jdrinka...@gmail.com

 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 the web visit
 https://groups.google.com/d/msg/google-web-toolkit/-/m3JtPntBkEwJ.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



captcha problem in gwt

2011-12-07 Thread shipra dhooper
if i create captcha in gwt application then it doesn't show on apache
server but it display in hosted modehow can i solve this problem can
anybody help me






thanks in advance

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 see the 
post on the form.submit, so it appears that the file went to the server.  I 
then use an RPC service call to try and pull the file stream off the 
server.  I use an serviceImpl servlet (extends RemoteServiceServlet) and I 
try to pull the stream back with this line of code in the servlet:  
*inputStream = request.getInputStream();*

However, it doesn't appear that I'm getting anything back at all.  Is this 
doable and is this the correct approach?  I've done lots of RPC calls, so 
that is what I thought was the right way to do this, but now I'm not sure.  
I've never worked with the fileUpload widget before and opted to use it 
over the GWTUploader widget as a simpler, fast solution.  

Any ideas as to how to do this?

-- 
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/-/HTOyWc4IqSsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: captcha problem in gwt

2011-12-07 Thread Raphael André Bauer
On Wed, Dec 7, 2011 at 2:40 PM, shipra dhooper shipra@gmail.com wrote:
 if i create captcha in gwt application then it doesn't show on apache server
 but it display in hosted modehow can i solve this problem can anybody
 help me

What captcha vendor are you using? Most likely you have to generate a
personal key for your domain. If you don't do this the captcha will
work on localhost (for testing), but not on your domain.

And no - this is almost for sure not a GWT problem,


Best,


Raphael








 thanks in advance

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
inc: http://ars-machina.raphaelbauer.com
tech: http://ars-codia.raphaelbauer.com
web: http://raphaelbauer.com

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



how to resolve the cross-domain problem in gwt?

2011-11-29 Thread wahaha
how to resolve the cross-domain problem in gwt?
i get a element in another iframe,but i can't fire its event

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to resolve the cross-domain problem in gwt?

2011-11-29 Thread Juan Pablo Gardella
See
http://code.google.com/intl/es-419/webtoolkit/doc/latest/FAQ_Server.html#What_is_the_Same_Origin_Policy,_and_how_does_it_affect_GWT?




2011/11/29 wahaha il...@yahoo.com.cn

 how to resolve the cross-domain problem in gwt?
 i get a element in another iframe,but i can't fire its event

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to resolve the cross-domain problem in gwt?

2011-11-29 Thread wahaha
thanks,but my english is very poor that i think i can not understand
that article.
my question now is: i get a element in another iframe,i have tested
that i can modify the element's style,but i can not call its click()
method.
so how to fire its onclick event?

On Nov 29, 8:39 pm, Juan Pablo Gardella gardellajuanpa...@gmail.com
wrote:
 Seehttp://code.google.com/intl/es-419/webtoolkit/doc/latest/FAQ_Server.h...

 2011/11/29 wahaha il...@yahoo.com.cn







  how to resolve the cross-domain problem in gwt?
  i get a element in another iframe,but i can't fire its event

  --
  You received this message because you are subscribed to the Google Groups
  Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to resolve the cross-domain problem in gwt?

2011-11-29 Thread wahaha
.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Findbugs problem by GWT Project.

2011-11-01 Thread Thomas Broyer
Do you really have no output from findbugs? What if you add 
xmlOutputtrue/xmlOutput (as suggested by the last line your 
copy/pasted)?

We do have:
  findbugsXmlOutputtrue/findbugsXmlOutput
  findbugsXmlWithMessagestrue/findbugsXmlWithMessages
  xmlOutputtrue/xmlOutput
in our config. I can't remember what each one does and whether they're 
required or even useful, but it works (and by that, I mean that our Jenkins 
job correctly shows us findbugs results)

BTW, this is not an error.

-- 
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/-/FckxCeCJHuMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Findbugs problem by GWT Project.

2011-10-31 Thread Kotuboy
I have a maven GWT project and i am using findbugs to analyze the code.

plugin
groupIdorg.codehaus.mojo/groupId
artifactIdfindbugs-maven-plugin/artifactId
version2.3.2/version
configuration
targetJdk1.6/targetJdk
onlyAnalyzecom.mycompany./onlyAnalyze

/configuration
/plugin

But I am getting the following error and dont get any result from findbugs. 
The other plugins are working properly.

 [INFO] Fork Value is true
[java] The following classes needed for analysis were missing:
[java] com.google.gwt.core.client.GWTBridge
[java] Missing classes: 2 
[INFO] xmlOutput is false

 What is the difference of findbugs?? What do you recommend?


-- 
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/-/wR4i3La3lgQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Findbugs problem by GWT Project.

2011-10-31 Thread Hilco Wijbenga
On 31 October 2011 07:37, Kotuboy aliyu...@googlemail.com wrote:
 I have a maven GWT project and i am using findbugs to analyze the code.

 plugin
                 groupIdorg.codehaus.mojo/groupId
                 artifactIdfindbugs-maven-plugin/artifactId
                 version2.3.2/version
                 configuration
                     targetJdk1.6/targetJdk
                     onlyAnalyzecom.mycompany./onlyAnalyze

                 /configuration
 /plugin

 But I am getting the following error and dont get any result from findbugs.
 The other plugins are working properly.

 [INFO] Fork Value is true
 [java] The following classes needed for analysis were missing:
 [java] com.google.gwt.core.client.GWTBridge
 [java] Missing classes: 2
 [INFO] xmlOutput is false

 What is the difference of findbugs?? What do you recommend?

GWTBridge is in gwt-dev. Did you add that as a dependency? Mind you, I
don't know why FindBugs would need it given your onlyAnalyze...

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



  1   2   3   4   >