On Friday, January 27, 2012 3:30:59 PM UTC+1, Janko Ulaga wrote:
>
> So, when i run my fully deployed app, everything works. DEV mode does not 
> work.
> This is my debug config. arguments line:
>
> -remoteUI "${gwt_remote_ui_server_port}:${unique_id}" -logLevel INFO -
> codeServerPort 9997 -war E:\webBundle-workspc\GwtApp\war -noserver 
> "C:\Program 
>
> Files\IBM\SDP\runtimes\base_v7\profiles\was70profile\installedApps\razvojCell\We
> bBundle.ear\GwtApp.war" dev.entry.GwtApp
>
> Can you help me out here?
>

-noserver takes no value, and it only prevents the built-in server from 
launching. You might want to provide a -startupUrl so the DevMode tells you 
the exact URL to reach (this is probably what you're missing here to make 
it work):
 

-remoteUI "${gwt_remote_ui_server_port}:${unique_id}" -logLevel INFO 
-codeServerPort 
9997 -war E:\webBundle-workspc\GwtApp\war -noserver -startupUrl 
http://localhost:9081/GwtApp/ dev.entry.GwtApp


With this the DevMode should tell you to open 
http://localhost:9081/GwtApp/?gwt.codesvr=127.0.0.1:9997

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/dVAqoKjWpFoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to