Saturday, November 29, 2014

Re: Chrome GWT Plugin required but is already installed

Hi everybody,

I had the same trouble this morning.
So i've upgraded my project with GWT 2.7.0 (with super dev mode by default).
relaunched mvn gwt:debug ... works as a charm

regards,
Sylvain

Le samedi 29 novembre 2014 09:39:01 UTC+1, Mike Dougherty a écrit :
Hello Alex,

Just wanted to say that you are not the only one. My Chrome upgraded itself this morning and now the Dev Mode stopped working. I'm working through this issue as well. 

Kind regards,
Mike


On Friday, November 28, 2014 10:26:08 PM UTC+1, Alex wrote:
This just suddenly started happening to me. I'm developing using the Maven gwt plugin on OS X against Google Chrome. I've been using it for many months with no problem. Now I get prompted to download the plugin again with the message:

Development Mode requires the GWT Developer Plugin


But I already have it installed. I've tried removing it and re-installing but I still get this message. 

Any help would be greatly appreciated!

Thanks,

Alex

--
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+unsubscribe@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: Running new auto compile super dev mode from maven plugin

Did you list all module sources in the build-helper-maven-plugin in the module you run gwt:run in?
This is an unfortunate but necessary hack to get things working.

On Friday, November 28, 2014 8:26:58 PM UTC+1, SP Gingras wrote:
Hi Thomas,

I tested "compile on refresh" (CoR) with your archetypes, and it works fine (using mvn gwt:run).

However, CoR does not work in my project (gwt 2.7, using mvn gwt:run).

File changes don't seem to be picked up by SDM:

[INFO] GET /recompile/App
[INFO]    Job com.myproject.App_1_4
[INFO]       starting job: com.myproject.App_1_4
[INFO]       binding: user.agent=safari
[INFO]       skipped compile because no input files have changed
[INFO]       0.038s total -- Compile completed

I have a particular maven structure where I have a root GWT module that aggregates a dozen of other GWT modules.
The parent GWT module is in its own Maven module, and all child GWT modules are in separate Maven modules. 
The parent Maven module contains 0 java code. All java code is located in the child Maven modules

/
├── app (Maven module, contains 1 gwt module inheriting all child GWT modules, no Java code here)
├── module1 (Maven module, pom)
│   ├── client (Maven module, contains 1 GWT module + Java files)
│   ├── server
├── module2 (Maven module, pom)
│   ├── client (Maven module, contains 1 GWT module + Java files)
│   ├── server
├── module3 (Maven module, pom)
│   ├── client (Maven module, contains 1 GWT module + Java files)
│   ├── server

 
I tried changing UiBinder files, View or Presenter files (using GWTP here), no changes are ever picked up.

Any hints?


On Wednesday, November 5, 2014 2:16:43 AM UTC-5, Michael Wiles wrote:
Hi all...

So I'm trying out gwt 2.7-rc1

I'm using the same maven config as I had for 2.6

I precompile all my sources so when I start the app it picks up the gwt module. 

When I run the app for the first time it correctly says "compiling" (as it doesn't precompile) and once done the app loads.

But after that when I refresh it doesn't pick up that there are changes and recompiles...

I have to do a full recompile to pick up the changes.

Michael

--
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+unsubscribe@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: Chrome GWT Plugin required but is already installed

Hello Alex,

Just wanted to say that you are not the only one. My Chrome upgraded itself this morning and now the Dev Mode stopped working. I'm working through this issue as well. 

Kind regards,
Mike


On Friday, November 28, 2014 10:26:08 PM UTC+1, Alex wrote:
This just suddenly started happening to me. I'm developing using the Maven gwt plugin on OS X against Google Chrome. I've been using it for many months with no problem. Now I get prompted to download the plugin again with the message:

Development Mode requires the GWT Developer Plugin


But I already have it installed. I've tried removing it and re-installing but I still get this message. 

Any help would be greatly appreciated!

Thanks,

Alex

--
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+unsubscribe@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.

Friday, November 28, 2014

Re: Chrome GWT Plugin required but is already installed

Thank you Jens. This would explain it. 

I can't find any way to downgrade Google Chrome on my mac. I don't appear to have a Google Software Update app as some webpage suggested I should. 

GWT 2.7.0 won't compile my application (2.6.1 has no problem). The error message is so cryptic there's no hope to figure out why. 

I've tried for 3 hrs now to get Super Dev Mode to work but the documentation is terrible so I can't figure it out. I'm hoping you can help with that since I'm out of options. 

I can't understand the GWT documentation on running SuperDevMode. It says:

If you are not using Dev Mode, first you need to compile the GWT application and launch a web server that serves its output files.

I don't know what that means. Are they suggesting that I simply create a standard war file and deploy that on a web server like Tomcat? 

The instructions on running the code-server are also lacking details. I've no idea how to launch this codeserver or set up my classpaths. I've tried using the maven gwt:run-codeserver goal and it does a bunch of compilation and looks to launch a server but when I visit the URL I get this error in my browser:

HTTP ERROR: 500

Problem accessing /. Reason:

    org.eclipse.jetty.http.gzip.CompressedResponseWrapper.newCompressedStream(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;JII)Lorg/eclipse/jetty/http/gzip/AbstractCompressedStream;

and in the console I get:

[ERROR] java.lang.AbstractMethodError: org.eclipse.jetty.http.gzip.CompressedResponseWrapper.newCompressedStream(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;JII)Lorg/eclipse/jetty/http/gzip/AbstractCompressedStream;
[ERROR] at org.eclipse.jetty.http.gzip.CompressedResponseWrapper.getOutputStream(CompressedResponseWrapper.java:347)
[ERROR] at com.google.gwt.dev.codeserver.PageUtil.sendJsonAndHtml(PageUtil.java:89)
[ERROR] at com.google.gwt.dev.codeserver.WebServer.doGet(WebServer.java:174)
[ERROR] at com.google.gwt.dev.codeserver.WebServer.handleRequest(WebServer.java:158)
[ERROR] at com.google.gwt.dev.codeserver.WebServer.access$000(WebServer.java:65)
[ERROR] at com.google.gwt.dev.codeserver.WebServer$1.doGet(WebServer.java:123)
[ERROR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:735)
[ERROR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:848)
[ERROR] at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:669)
[ERROR] at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1336)
[ERROR] at org.eclipse.jetty.servlets.UserAgentFilter.doFilter(UserAgentFilter.java:82)
[ERROR] at org.eclipse.jetty.servlets.GzipFilter.doFilter(GzipFilter.java:294)
[ERROR] at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1307)
[ERROR] at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:453)
[ERROR] at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:229)
[ERROR] at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1072)
[ERROR] at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:382)
[ERROR] at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193)
[ERROR] at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1006)
[ERROR] at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135)
[ERROR] at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116)
[ERROR] at org.eclipse.jetty.server.Server.handle(Server.java:365)
[ERROR] at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:485)
[ERROR] at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:926)
[ERROR] at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:988)
[ERROR] at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:635)
[ERROR] at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235)
[ERROR] at org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82)
[ERROR] at org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:628)
[ERROR] at org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52)
[ERROR] at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608)
[ERROR] at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543)
[ERROR] at java.lang.Thread.run(Thread.java:745)

Any ideas why this isn't working?

Thanks,

Alex

On Friday, November 28, 2014 2:27:04 PM UTC-8, Jens wrote:
Latest Chrome on Mac OS is now 64bit but the browser plugin is only 32bit so it does not work anymore.

You can:
- downgrade your Chrome to version 38 and turn off auto update
- use Firefox 24 ESR or 26 (GWT plugin does not work in newer versions of Firefox)
- instead of DevMode use SuperDevMode which does not require any browser plugins.

-- 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+unsubscribe@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: Chrome GWT Plugin required but is already installed

Latest Chrome on Mac OS is now 64bit but the browser plugin is only 32bit so it does not work anymore.

You can:
- downgrade your Chrome to version 38 and turn off auto update
- use Firefox 24 ESR or 26 (GWT plugin does not work in newer versions of Firefox)
- instead of DevMode use SuperDevMode which does not require any browser plugins.

-- 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+unsubscribe@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: REST Service on Backend which Framework in GWT?

But my question was more in frontend direction using REST in GWT:
E.g what is the difference between REST support in gwtresty and gwtquery project. Which one should I give a try? 

Take a look at both documentations and choose the one you feel comfortable with? 

-- 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+unsubscribe@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: REST Service on Backend which Framework in GWT?

Thank you. Dropwizard looks quite interesting and I think I could give it a try. Only the micro service conzept could be problematic. My applicatoin is big and I am not sure if I want to split it up in different backend projects....

But my question was more in frontend direction using REST in GWT:
E.g what is the difference between REST support in gwtresty and gwtquery project. Which one should I give a try?

THX
-- Marian

--
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+unsubscribe@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.