Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-02-28 Thread Jens
GWT 2.6.0 is out and officially released and the problem is still there. It used to work fine before with 2.5. It is not a real issue as it was never really officially supported. If you want to configure your server you should use -noserver and a local jetty distribution on your host.

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-02-27 Thread joerg.hohwil...@googlemail.com
Hi there, GWT 2.6.0 is out and officially released and the problem is still there. It used to work fine before with 2.5. Also I read that dev-mode plugin may not be supported in next firefox version. This is all a real pity: The whole thing about GWT is that you can do RIAs in pure Java with all

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-25 Thread Thad Humphries
I'm not using the tomcat-maven-plugin. I'm managing Tomcat in a separate console using the $CATALINA_HOME/bin/startup.sh and shutdown.sh scripts (having modified startup.sh to add jpda to the command). I can see that Eclipse is writing to target/MyApp-1.0-SNAPSHOT/WEB-INF/classes. What I can't

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-24 Thread Thad Humphries
Hm... Okay, it's working on *this* machine. I start my app with Maven from a console (`mvn clean generate-sources gwt:run-codeserver`) and from Eclipse start a debug Remote Java Application for my project. Before all this (as in yesterday) I ran Web Application in Eclipse with the -noserver

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-24 Thread Jens
I log out and change a log entry in my servlet. I open a new tab in Chrome, etc., and I see the new message written in my log file. Interestingly (to me, at least) is that the date and time of the servlet class in /Library/Tomcat/catalina/webapps/myapp/WEB-INF/classes is still from

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-22 Thread Thomas Broyer
On Tuesday, January 21, 2014 10:12:52 PM UTC+1, Thad Humphries wrote: In short: How to I configure my GWT 2.6.0-rc* webapp launch in Eclipse and process webapp context settings for Jetty? I'm giving GWT 2.6.0-rc3 a trial run using Maven and SuperDevMode. I launch the code server in a

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-22 Thread Thad Humphries
On Wednesday, January 22, 2014 11:53:27 AM UTC-5, Thomas Broyer wrote: On Tuesday, January 21, 2014 10:12:52 PM UTC+1, Thad Humphries wrote: In short: How to I configure my GWT 2.6.0-rc* webapp launch in Eclipse and process webapp context settings for Jetty? I'm giving GWT 2.6.0-rc3 a

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-22 Thread Jens
or using -noserver and losing the Eclipse debugger You don't loose Eclipse debugger when using -noserver. Just launch your app server of choice with debug enabled and then connect to it with Eclipse. You can also configure Eclipse to launch a Jetty of your choice (or any other supported

Re: 2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-22 Thread Thad Humphries
Thanks, Jens. It's *almost* coming together, but not quite. I've got Tomcat started with debug and I've got Eclipse linked to it (per http://wiki.apache.org/tomcat/FAQ/Developing). However when I make a change to my servlet, I don't see it reflected in the run. I've got the Eclipse Web

2.6.0-rc3 and Jetty's WebAppContext (jetty-web.xml)

2014-01-21 Thread Thad Humphries
In short: How to I configure my GWT 2.6.0-rc* webapp launch in Eclipse and process webapp context settings for Jetty? I'm giving GWT 2.6.0-rc3 a trial run using Maven and SuperDevMode. I launch the code server in a console with mvn clean generate-sources gwt:run-codeserver and launch my webapp