I try to set up 'GWT configuration' in IntelliJ 12. I am using JBoss as my server.
My project contains GWT client side code which talks to a set of java services. I been up and running with this project smoothly. Now, I need to debug a client side issue and I try to do it following below steps.
From IntelliJIdea add a new GWT configuration. In the DevMode parameters I give below.
-noserver -war "D:/code/myproject/target/myproject -startupUrl http://localhost:8080/myproject"
Launch the debug configuration.
I am getting below in the console
Dev Mode initialized. Startup URL:
http://127.0.0.1:8888/Application.html?gwt.codesvr=127.0.0.1:9997
But when I access the page using that URL I get a blank page.
Does any body have experience with configuring GWT debugging with IntelliJ with JBOSS?
Probably I may have missed out an argument in the dev mode parameters.