can anyone point me to the right direction? sorry, really new to this.
thanks.
while the "Debug main project" button is actually the one with the -
noserver option. it's target is "debug-connect-gwt-shell-20" in the
build-gwt.xml. (sorry for the redundancy).
i guess my problem is that if i use the -noserver option it doesn't
start jetty in dev mode (that's good) but it starts tomcat. so i still
can't use port 80.
i'm really at a loss here. or probably i just don't really understand
how it works.
try to do the following (I assume you use gwt 2.0):
- start you php application (let's assume it is running on
http://localhost:80/somePageContainingGWT.html)
- start you gwt dev mode using "debug/dev mode". don't worry about
jetty. it uses the port 8888 by default. jetty will be just not used.
- navigate to http://localhost:80/somePageContainingGWT.html?gwt.codesvr=127.0.0.1:9997
in firefox (gwt 2.0 plugin should be installed in firefox). you can
get the "?gwt.codesvr=..." part of the url by pressing the button
"copy to clipboard" in the gwt shell
On 27 Feb., 13:45, mibtar <bim.pangili...@gmail.com> wrote:
somehow my last answer disappeared...
you don't have to worry about -noserver. Jetty will be started on 8888
and just not used.
- copy the JavaScript created by GWT to you PHP app and start it
- start the GWT project by doing "Debug/GWT Dev Mode"
- navigate in FireFox to http://localhost/PhpProject1/welcomeGWT.html?gwt.codesvr=localhost:9997
you will even be able to debug your GWT code
On 27 Feb., 13:45, mibtar <bim.pangili...@gmail.com> wrote: