Re: gwt module may need to be (re)compiled

2012-12-12 Thread Pavel Šimeček


 Sometimes you see the message “GWT module fundd may need to be 
 recompiled “ popping up. 

 It’s simply because the URL does not contain the “? 
 gwt.codesvr=127.0.0.1:9997” part at its end. 


This helped me a lot todat. One can ask - how can that happen? But it is 
rather easy - it is enough to use SUBMIT button instead of normal button. 
Since my form had no data to transfer it ended up with accessing URL 
without ?

-- 
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/-/pSmWsGXZdj4J.
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: gwt module may need to be (re)compiled

2012-10-02 Thread Nick Kerr
I was experiencing this same problem recently and for the benefit of the 
community I am posting my solution today:

I discovered that my src/main/webapp folder contained an oldmodule.nocache.js 
file.

If you see this error message, check the timestamp of your module.nocache.js 
to ensure that it is in sync with the rest of the GWT compiler output (i.e. 
*.gwt.rpc and *.cache.png). In my case, I'm guessing that an old DevMode 
execution from within eclipse directed the GWT compiler output to the 
src/main/webapp 
folder and this was getting packaged in to the war file by maven instead of 
the freshly compiled version.

Nick


On Thursday, July 29, 2010 4:18:36 AM UTC-4, Thomas Van Driessche wrote:

 Hi all, 

 I have developed for a while now on a gwt 2.0.0 and maven project. 
 But recently i did a maven clean install on the project to generate 
 the war file in the target folder. 

 Now when i tried to do a mvn gwt:run again it sais that the module may 
 need to be (re)compiled... 
 I can't get it fixed. 

 I even checked out an older version of the project out of the 
 repository in an new workspace, but still i get the error. 
 And i am sure that that version was working when i checked in the 
 changes... 

 Any idea pls?? 

 I'm really stuck here 

 kind regards, 
 Thomas

-- 
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/-/LrX-tEFOAmgJ.
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: GWT module may need to be (re)compiled message when using SuperDevMode

2012-09-09 Thread Thomas Broyer

On Sunday, September 9, 2012 6:02:48 AM UTC+2, Paul Stockley wrote:

 Every time I click the compile button from the 'Dev Mode On' bookmarklet, 
 I get the 'GWT module '..' may need to be (re)compiled' alert. It works 
 fine after that but it's kind of annoying. Anyone have an idea why this 
 happens?


This generally happens when you try to run in prod mode (i.e. without the 
?gwt.codesvr=xxx) a *.nocache.js file that has been generated by DevMode 
rather than the Compiler.
And the way SuperDevMode works is that the code that shows the alert is 
(and needs to be) run just before the SuperDevMode hook overrides the 
normal bootstrap sequence.

-- 
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/-/0Jg-jCh9mFcJ.
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: GWT module may need to be (re)compiled message when using SuperDevMode

2012-09-09 Thread emurmur
Make sure that you do a full release compile (using GWT compile from the 
Google menu) once before running the code server the first time.  Of 
course, the source code server MUST be running for the bookmarklets to work 
at all.

On Saturday, September 8, 2012 9:02:48 PM UTC-7, Paul Stockley wrote:

 Every time I click the compile button from the 'Dev Mode On' bookmarklet, 
 I get the 'GWT module '..' may need to be (re)compiled' alert. It works 
 fine after that but it's kind of annoying. Anyone have an idea why this 
 happens?

-- 
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/-/tv1TxSl1qR0J.
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.



GWT module may need to be (re)compiled message when using SuperDevMode

2012-09-08 Thread Paul Stockley
Every time I click the compile button from the 'Dev Mode On' bookmarklet, I 
get the 'GWT module '..' may need to be (re)compiled' alert. It works fine 
after that but it's kind of annoying. Anyone have an idea why this happens?

-- 
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/-/R3YJaOoHGQ8J.
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.



Unable to run GWT application in production mode - GWT Module may need to be (re) compiled

2011-01-05 Thread Shubhang Mani
I'm trying to deploy a GWT application to an external server in order to run 
it in production mode. When I try to access the application, I get an alert 
dialog with the message:
GWT Module 'name-of-module' may need to be (re)compiled

After dismissing the alert, I can see all the static content from my host 
page but nothing else. Server logs do not have any errors.

The application runs fine in development mode.

Some relevant details:
GWT 2.1.0
Eclipse 3.6 Helios
Apache Maven 3.0
Project was generated using the GWT maven plugin 2.1.0-1
Trying to deploy to apache tomcat 7.0.4

I've verified that GWT compile is being executed when I run maven.
I've also checked the war that was generated (using mvn package). It has the 
appropriate pieces (host page, static content, *nocache.js, *cache*,  server 
side service layer code).

I realize that this may not be a core web toolkit related issue but I hope 
someone can help or point me to the right forum in order to solve this 
issue.

Thanks
Shubhang

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: Unable to run GWT application in production mode - GWT Module may need to be (re) compiled

2011-01-05 Thread Y2i
May be this post will help:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/8fc260a7865076e9/

It was solved by adding webAppDirectory to the GWT maven plugin.

On Jan 5, 8:50 pm, Shubhang Mani shubhang.m...@gmail.com wrote:
 I'm trying to deploy a GWT application to an external server in order to run
 it in production mode. When I try to access the application, I get an alert
 dialog with the message:
 GWT Module 'name-of-module' may need to be (re)compiled

 After dismissing the alert, I can see all the static content from my host
 page but nothing else. Server logs do not have any errors.

 The application runs fine in development mode.

 Some relevant details:
 GWT 2.1.0
 Eclipse 3.6 Helios
 Apache Maven 3.0
 Project was generated using the GWT maven plugin 2.1.0-1
 Trying to deploy to apache tomcat 7.0.4

 I've verified that GWT compile is being executed when I run maven.
 I've also checked the war that was generated (using mvn package). It has the
 appropriate pieces (host page, static content, *nocache.js, *cache*,  server
 side service layer code).

 I realize that this may not be a core web toolkit related issue but I hope
 someone can help or point me to the right forum in order to solve this
 issue.

 Thanks
 Shubhang

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: Unable to run GWT application in production mode - GWT Module may need to be (re) compiled

2011-01-05 Thread Shubhang Mani
Wow ! Thanks. The link was incredibly useful as it contained a working POM 
which I could use as a reference.

I did have the webappDirectory specified but it was pointing (by default) to 
${project.build.directory}/${project.build.finalName}. 

I changed this to src/main/webapp instead and it is being referenced in the 
maven-war-plugin as well as the gwt-maven-plugin

I also added module information to the gwt-maven-plugin config section and 
the webXml detail to the maven-war-plugin config section.

I am able to successfully deploy and bring up the webapp on tomcat now !

-Shubhang

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: gwt module may need to be (re)compiled

2010-07-29 Thread Blagoja Chavkoski
You have problems with compiling, probably not created all permutation...Ill
say u have added some I18N language topics
Compile first all project, then create the war..with all pages...let me say
if u have 2 languages..en and de than u need to compile(the compiler, not
you) 14 diff permutation...if 3 lang then about 21...and so on:)

Hope i help..!:)

On Thu, Jul 29, 2010 at 10:18 AM, Thomas Van Driessche 
thomas.van.driessch...@gmail.com wrote:

 Hi all,

 I have developed for a while now on a gwt 2.0.0 and maven project.
 But recently i did a maven clean install on the project to generate
 the war file in the target folder.

 Now when i tried to do a mvn gwt:run again it sais that the module may
 need to be (re)compiled...
 I can't get it fixed.

 I even checked out an older version of the project out of the
 repository in an new workspace, but still i get the error.
 And i am sure that that version was working when i checked in the
 changes...

 Any idea pls??

 I'm really stuck here

 kind regards,
 Thomas

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: gwt module may need to be (re)compiled

2010-07-29 Thread Thomas Van Driessche
Hi,

Thanks for the reply.
But i think this is what i did?

What steps/commands do you suggest then?

kind regards

On Jul 29, 11:39 am, Blagoja Chavkoski baze...@gmail.com wrote:
 You have problems with compiling, probably not created all permutation...Ill
 say u have added some I18N language topics
 Compile first all project, then create the war..with all pages...let me say
 if u have 2 languages..en and de than u need to compile(the compiler, not
 you) 14 diff permutation...if 3 lang then about 21...and so on:)

 Hope i help..!:)

 On Thu, Jul 29, 2010 at 10:18 AM, Thomas Van Driessche 

 thomas.van.driessch...@gmail.com wrote:
  Hi all,

  I have developed for a while now on a gwt 2.0.0 and maven project.
  But recently i did a maven clean install on the project to generate
  the war file in the target folder.

  Now when i tried to do a mvn gwt:run again it sais that the module may
  need to be (re)compiled...
  I can't get it fixed.

  I even checked out an older version of the project out of the
  repository in an new workspace, but still i get the error.
  And i am sure that that version was working when i checked in the
  changes...

  Any idea pls??

  I'm really stuck here

  kind regards,
  Thomas

  --
  You received this message because you are subscribed to the Google Groups
  Google Web Toolkit group.
  To post to this group, send email to google-web-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: gwt module may need to be (re)compiled

2010-07-29 Thread Blagoja Chavkoski
How much language sup. u have?!
I would say take out all inheritance for languages in the gwt.xml module,
and re-compile the app and try what will happen...

Also on withc browser you test..let me say..u can say to the compiler not to
create all the permutation, maybe for a try just
for firefox..(the compile time would be much fester also:) )

But try first the one before...


On Thu, Jul 29, 2010 at 11:52 AM, Thomas Van Driessche 
thomas.van.driessch...@gmail.com wrote:

 Hi,

 Thanks for the reply.
 But i think this is what i did?

 What steps/commands do you suggest then?

 kind regards

 On Jul 29, 11:39 am, Blagoja Chavkoski baze...@gmail.com wrote:
  You have problems with compiling, probably not created all
 permutation...Ill
  say u have added some I18N language topics
  Compile first all project, then create the war..with all pages...let me
 say
  if u have 2 languages..en and de than u need to compile(the compiler, not
  you) 14 diff permutation...if 3 lang then about 21...and so on:)
 
  Hope i help..!:)
 
  On Thu, Jul 29, 2010 at 10:18 AM, Thomas Van Driessche 
 
  thomas.van.driessch...@gmail.com wrote:
   Hi all,
 
   I have developed for a while now on a gwt 2.0.0 and maven project.
   But recently i did a maven clean install on the project to generate
   the war file in the target folder.
 
   Now when i tried to do a mvn gwt:run again it sais that the module may
   need to be (re)compiled...
   I can't get it fixed.
 
   I even checked out an older version of the project out of the
   repository in an new workspace, but still i get the error.
   And i am sure that that version was working when i checked in the
   changes...
 
   Any idea pls??
 
   I'm really stuck here
 
   kind regards,
   Thomas
 
   --
   You received this message because you are subscribed to the Google
 Groups
   Google Web Toolkit group.
   To post to this group, send email to
 google-web-tool...@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: gwt module may need to be (re)compiled

2010-07-29 Thread Frederic Conrotte
Sometimes you see the message “GWT module fundd may need to be
recompiled “ popping up.

It’s simply because the URL does not contain the “?
gwt.codesvr=127.0.0.1:9997” part at its end.

Ensure the full URL is passed to the Web server and the problem
disappears.

Fred


On Jul 29, 10:18 am, Thomas Van Driessche
thomas.van.driessch...@gmail.com wrote:
 Hi all,

 I have developed for a while now on a gwt 2.0.0 and maven project.
 But recently i did a maven clean install on the project to generate
 the war file in the target folder.

 Now when i tried to do a mvn gwt:run again it sais that the module may
 need to be (re)compiled...
 I can't get it fixed.

 I even checked out an older version of the project out of the
 repository in an new workspace, but still i get the error.
 And i am sure that that version was working when i checked in the
 changes...

 Any idea pls??

 I'm really stuck here

 kind regards,
 Thomas

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: gwt module may need to be (re)compiled

2010-07-29 Thread Thomas Van Driessche
HI,

I also have read this on the internet, but the problem is that the
parameter is attached, so that can't be the cause...

Can it be that the XSLinker causes the problem? I removed it and now i
can do a mvn clean install (deploy the war) and mvn gwt:clean
gwt:compile gwt:run withouth problems it seems.

kind regards,
Thomas

On Jul 29, 12:11 pm, Frederic Conrotte frederic.conro...@gmail.com
wrote:
 Sometimes you see the message “GWT module fundd may need to be
 recompiled “ popping up.

 It’s simply because the URL does not contain the “?
 gwt.codesvr=127.0.0.1:9997” part at its end.

 Ensure the full URL is passed to the Web server and the problem
 disappears.

 Fred

 On Jul 29, 10:18 am, Thomas Van Driessche

 thomas.van.driessch...@gmail.com wrote:
  Hi all,

  I have developed for a while now on a gwt 2.0.0 and maven project.
  But recently i did a maven clean install on the project to generate
  the war file in the target folder.

  Now when i tried to do a mvn gwt:run again it sais that the module may
  need to be (re)compiled...
  I can't get it fixed.

  I even checked out an older version of the project out of the
  repository in an new workspace, but still i get the error.
  And i am sure that that version was working when i checked in the
  changes...

  Any idea pls??

  I'm really stuck here

  kind regards,
  Thomas

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: gwt module may need to be (re)compiled

2010-07-29 Thread Thomas Van Driessche
The problem isn't gone.

I still got it...
It was gone for a second, but now it's back and i don't know the
reason why.

The internationalisation is out of the project...
I use also the maven-clean-plugin for the war folder.

any other reasons why this can happen?

On Jul 29, 2:05 pm, Thomas Van Driessche
thomas.van.driessch...@gmail.com wrote:
 HI,

 I also have read this on the internet, but the problem is that the
 parameter is attached, so that can't be the cause...

 Can it be that the XSLinker causes the problem? I removed it and now i
 can do a mvn clean install (deploy the war) and mvn gwt:clean
 gwt:compile gwt:run withouth problems it seems.

 kind regards,
 Thomas

 On Jul 29, 12:11 pm, Frederic Conrotte frederic.conro...@gmail.com
 wrote:

  Sometimes you see the message “GWT module fundd may need to be
  recompiled “ popping up.

  It’s simply because the URL does not contain the “?
  gwt.codesvr=127.0.0.1:9997” part at its end.

  Ensure the full URL is passed to the Web server and the problem
  disappears.

  Fred

  On Jul 29, 10:18 am, Thomas Van Driessche

  thomas.van.driessch...@gmail.com wrote:
   Hi all,

   I have developed for a while now on a gwt 2.0.0 and maven project.
   But recently i did a maven clean install on the project to generate
   the war file in the target folder.

   Now when i tried to do a mvn gwt:run again it sais that the module may
   need to be (re)compiled...
   I can't get it fixed.

   I even checked out an older version of the project out of the
   repository in an new workspace, but still i get the error.
   And i am sure that that version was working when i checked in the
   changes...

   Any idea pls??

   I'm really stuck here

   kind regards,
   Thomas

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: gwt module may need to be (re)compiled

2010-07-29 Thread Yau
I encountered the same problem 2 times before

1) I forgot to add a new jar in the build path into WEB-INF/lib
folder.
2) the mapping in proxy_ajp was incorrect (but it doesn't apply if you
are debugging in hosted mode).

On Jul 29, 4:18 pm, Thomas Van Driessche
thomas.van.driessch...@gmail.com wrote:
 Hi all,

 I have developed for a while now on a gwt 2.0.0 and maven project.
 But recently i did a maven clean install on the project to generate
 the war file in the target folder.

 Now when i tried to do a mvn gwt:run again it sais that the module may
 need to be (re)compiled...
 I can't get it fixed.

 I even checked out an older version of the project out of the
 repository in an new workspace, but still i get the error.
 And i am sure that that version was working when i checked in the
 changes...

 Any idea pls??

 I'm really stuck here

 kind regards,
 Thomas

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: gwt module may need to be (re)compiled

2010-07-29 Thread igor mejia
tou can use mvn gwt:clean gwt:compile

2010/7/29 Yau kvle...@gmail.com

 I encountered the same problem 2 times before

 1) I forgot to add a new jar in the build path into WEB-INF/lib
 folder.
 2) the mapping in proxy_ajp was incorrect (but it doesn't apply if you
 are debugging in hosted mode).

 On Jul 29, 4:18 pm, Thomas Van Driessche
 thomas.van.driessch...@gmail.com wrote:
  Hi all,
 
  I have developed for a while now on a gwt 2.0.0 and maven project.
  But recently i did a maven clean install on the project to generate
  the war file in the target folder.
 
  Now when i tried to do a mvn gwt:run again it sais that the module may
  need to be (re)compiled...
  I can't get it fixed.
 
  I even checked out an older version of the project out of the
  repository in an new workspace, but still i get the error.
  And i am sure that that version was working when i checked in the
  changes...
 
  Any idea pls??
 
  I'm really stuck here
 
  kind regards,
  Thomas

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: Gwt module may need to be (re)compiled

2010-01-15 Thread Maciej Rygielski
Hi! I had this problem, when I used internationalization (i18n) and
missed to define
meta name=gwt:property content=locale=pl/

After adding this line things works as they should :)
-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: Gwt module may need to be (re)compiled

2010-01-08 Thread Yan
Hi!

I had the same problem and I fix it by changing this line in my
public void onModuleLoad() method:

   RootLayoutPanel.get().add(myDockLayout);

for the following lines:

   RootLayoutPanel.get().add(myDockLayout);
   RootPanel.get().add(RootLayoutPanel.get());

My previous line work like a charm in DEV mode, but I doesn't work
once compiled...

After this change, it works it both ways!

Hope this helps...

On Dec 18 2009, 6:36 am, Haydar haydarim...@gmail.com wrote:
 Thanks, it really helped me...

 On 18 Aralık, 12:13, Thomas Matthijs thomas.matth...@gmail.com
 wrote:

   However after I login and the location of the window changes, I see
   nothing but an error-boxon the screen: Gwt module 'secondApp' may
   need to be (re)compiled.

  This error usually means that you are missing the ?gwt.codesrv= (sp?)
  parameter, probably gets lost in your redirect to the page
-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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.




Gwt module may need to be (re)compiled

2009-12-18 Thread Haydar
Hi,

I have a problem with running my project which is linked to another
project.

One of my applications is simple user log-in system, it only has a
welcome screen where you can log in the system. This works fine
alone.

The other application is a big system where we have a lot of menus,
screens etc. Users see different menus and screens as my other app
holds users' roles...  This app cannot be run without the other one as
everthing in the system depends on user roles and authorization.

We wrote this system(both apps) with GWT 1.5.3 and now decided to
upgrade to GWT 2.0.
I have done everything suggested on gwt site about upgrading and it
seems ok. But when I run the program, the first screen comes(log-in),
I log in, then the first app. must set the window location to the
other app's html with giving the other app the username and roles and
authorization.
However after I login and the location of the window changes, I see
nothing but an error-boxon the screen: Gwt module 'secondApp' may
need to be (re)compiled.

I just have 2-months experience on gwt and I feel really desperate
about this problem.
Can anyone please help me?

(By the way my program argument is like that:
-startupUrl secondApp.html com.mycomp.firstApp com.mycomp.secondApp
I don't know if this is ok or not... )

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-tool...@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: Gwt module may need to be (re)compiled

2009-12-18 Thread Shawn Brown
 However after I login and the location of the window changes, I see
 nothing but an error-boxon the screen: Gwt module 'secondApp' may
 need to be (re)compiled.

 I just have 2-months experience on gwt and I feel really desperate
 about this problem.
 Can anyone please help me?

So did you recompile both apps when you upgraded?  Yes or No?

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: Gwt module may need to be (re)compiled

2009-12-18 Thread Haydar
yes of course :) sorry about not mentioning that...
İ recompiled many times. Cleaned and built both project many times...

On 18 Aralık, 11:09, Shawn Brown big.coffee.lo...@gmail.com wrote:
  However after I login and the location of the window changes, I see
  nothing but an error-boxon the screen: Gwt module 'secondApp' may
  need to be (re)compiled.

  I just have 2-months experience on gwt and I feel really desperate
  about this problem.
  Can anyone please help me?

 So did you recompile both apps when you upgraded?  Yes or No?

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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: Gwt module may need to be (re)compiled

2009-12-18 Thread Thomas Matthijs
 However after I login and the location of the window changes, I see
 nothing but an error-boxon the screen: Gwt module 'secondApp' may
 need to be (re)compiled.


This error usually means that you are missing the ?gwt.codesrv= (sp?)
parameter, probably gets lost in your redirect to the page

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To 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.