Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread William Davis
I think you are right, probably a typo on my end. I have tried localhost:8080/index.html but no connection there either. I am just assuming I want to navigate to index.html since that is the html file in my WEB-INF directory. I am not sure if I need to prepend the module name or something? At

Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread William Davis
I feel like this might be a dumb question and the answer is probably very simple. I am using Eclipse 4.4 and Maven to run my GWT 2.7 app. I am in the process of redesigning my project layout and wanted to use the new gwt-maven-plugin by @ThomasBroyer. I create a new maven project from

Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread Jens
I am pretty sure your pom.xml for your -server project does not change the port of jetty, right? In that case Jetty's default port is 8080 so try using localhost:8080 instead. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread William Davis
So I thought I would try tomcat since I could not get the jetty to work. So I do maven build gwt:codeserver -pl *-client -am, then tomcat7:run -pl *-server -am -Denv=dev. I navigate to http://localhost:8080/index.html and sure enough I see the html file. Although I don't think any of the client

Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread Jens
I think you are right, probably a typo on my end. I have tried localhost:8080/index.html but no connection there either. I am just assuming I want to navigate to index.html since that is the html file in my WEB-INF directory. WEB-INF, a typo again? Your index.html should either be in

Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread William Davis
I should probably mention that I am trying to use this modular archetype. mvn archetype:generate \ -DarchetypeCatalog=https://oss.sonatype.org/content/repositories/snapshots/ \ -DarchetypeGroupId=net.ltgt.gwt.archetypes \ -DarchetypeArtifactId=modular-webapp \

Re: Trouble running GWT 2.7 net.ltgt.gwt.maven:gwt-maven-plugin project

2015-05-13 Thread William Davis
I did what you said and I found an error on the console, the ${module.toLowerCase()} wasn't being evaluated properly so I just manually switched it out for the actual module name. Clean and ran as before, it is now working. Thank you very much Jens for your help and patience. -Will On

GWT 2.7 with Designer

2015-05-13 Thread atx . hx . ag
https://github.com/bently0602/GWT-2.7 Here's some patches to support using the eclipse designer with GWT 2.7. It is very hackish so it may not work in every use case or some random bugs may come up. If you want to grab the SDK pre-built see the file gwt-0.0.0.zip from the link. -- You

GWT 2.8.0 ?

2015-05-13 Thread Michael Joyner
Any status reports on when any GWT 2.8.0 RC's will start being available? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Logging GWT with Tomcat

2015-05-13 Thread Stefan Bylund
See the blog post 7 Tips for Exception Handling in GWT at http://www.summa-tech.com/blog/2012/06/11/7-tips-for-exception-handling-in-gwt and the GWT documentation http://www.gwtproject.org/doc/latest/DevGuideLogging.html#Remote_Logging. Section 4 Log exceptions on the server in this blog post