Hello Chris, Firstly I start the Tomcat web server at localhost:8080, my launch configuration is all that I write in the first post: Run -> Run configurations ->
Java Application: in the Main tab as Main class I'm using: com.google.gwt.dev.DevMode, and as Project Iam using my GWT project: myapp. in the Arguments tab as Program Arguments I'm using the previous ones: -noserver -war "C:\workspace\.metadata\.plugins\org.eclipse.wst.server.core \tmp0\wtpwebapps\myapp\gwt" -startupUrl http://localhost:8080/MyAppWeb/gwt/com.xxx.web.MyApp/MyApp.html com.xxx.web.client.MyApp and as VM arguments I'm using: -Xmx256M That's my entire launch configuration. And as I said in the first post after the GWT Development Mode window starts I get the next error: Unable to find com.xxx.web.client.MyApp.gwt.xml on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source? I'm not sure if what you want is my module gwt.xml file, is this one: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module SYSTEM "http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/ src/gwt-module.dtd"> <module> <inherits name='com.xxx.architecture.commons.gwt.web.ItxCommonsGwt' /> <inherits name='com.xxx.compras.comunes.gwt.precompras.web.CVPComunesPreCompras' / > <source path='client' /> <source path='layout' /> <source path='naming' /> <source path='public' /> <source path='utils'> <include name='**/css/**' /> </source> <source path='view' /> <source path='widgets' /> <entry-point class='com.xxx.web.client.MyApp'/> <set-property name='user.agent' value='ie6,gecko1_8' /> <stylesheet src="css/prearticle-general.css" /> </module> The problem is only launching in DevMode, being as if I go to the startupUrl from a web navigator I can access to the web application without any problem, but I can't debug my web application. I also have tried launch the web application using GWT Web App launch config but I have another problem when the application calls to any RPC service, I have created other topic for this problem: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/e4a33a1bbcba67fc/930151e7f6d7cb85 Thank you for your interest and request me all the information that you could need. Marcos Lopez.
-- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
