I have followed the steps given on this page - getting-started-with-the-superdevmode
but I am still getting message - Can't find any GWT Modules on this page. I did some more googling but could not find any solution until now.
I am using GWT 2.6.1 and eclipse kepler 64 bit on ubuntu.
Here are the steps I did.
- Created a new Web app project for GAE, using GWT 2.6.1 and GAE sdk 1.9.6.
- Go to Run configurations. Create a new configuration for a "Java Application". Change the main class, Argument and add jar file as shown in the screenshot.
- Check the apps .gwt.xml file. It already has
<add-linker name="xsiframe"/>
. I have tried addingdevModeRedirectEnabled
property also. It did not help. - GWT compile the project.
Run the application as Web application. Default jetty config serves the application at
http://localhost:8888/SuperDev.html
. I opened up this page in firefox. I can see the page content.Launch the Java application configuration. It does compile again and gives a success message and tells me to launch
http://localhost:9876/
I opened it in firefox and it shows -
Dragged Dev Mode On to firefox's bookmark. And clicked.
- I get the message - Can't find any GWT Modules on this page.
Following are the configurations for my superdev mode java app. Did I miss anything?
gwt.codeserver.port
is to be passed to your web server (Tomcat or whatever), not the CodeServer; though that's not the problem here. That however means there probably is some misunderstanding of the step-by-step guides (either it's not clear enough, or you misunderstood it); so telling us exactly what you did (yes, step by step, paraphrasing the guide if needed) would probably help understand what you did wrong or missed. – Parkinhttp://localhost:9876
– Parkin