Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-21 Thread Raziel
I added the -startup option, and although DevMode generates the gwt.codesvr parameter, when pasting it into the browser I still cannot get the breakpoints to work. In my case my GWT application is part of another application, and this one requires to go through a login page. Previously (i.e. GWT

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-21 Thread Raziel
I made it work. Apparently now DevMode only pays attention if the URL that represents the request that loads the application has the gwt.codesvr parameter. I hope there's another way to preserve the old behavior where hosted mode was able to debug applications no matter how they were loaded, as

How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread Stefan Sigvardsson
Hi! In the previous versions of GWT i have been able to use hosted mode against my external server this way http://code.google.com/intl/sv-SE/webtoolkit/doc/latest/FAQ_DebuggingAndCompiling.html#How_do_I_use_my_own_server_in_hosted_mode_instead_of_GWT%27s I just whitelistes the address and typed

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread fmk11
Hi, I use an external Ruby server. What I do is to simply replace the first part of the URL to point to my RoR server, and I leave everything else the same. My RoR server just have to have the HTML host page from where my GWT app is loaded. So the original Dev Mode URL looks like:

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread Thomas Broyer
On Dec 10, 11:13 am, Stefan Sigvardsson scht...@gmail.com wrote: Hi! In the previous versions of GWT i have been able to use hosted mode against my external server this wayhttp://code.google.com/intl/sv-SE/webtoolkit/doc/latest/FAQ_Debugging... I just whitelistes the address and typed a

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread fmk11
No, You do .. just make sure your Dev Mode server is running (from eclipse), then add ?gwt.codesrv=... argument to the URL for your external server and it should work. Federico. On Dec 10, 11:38 am, Thomas Broyer t.bro...@gmail.com wrote: On Dec 10, 11:13 am, Stefan Sigvardsson

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread fmk11
Actually .. I did not test that .. it might work too. The important bit is that GWT's Browser Plugin seems to relax SOP restrictions on the browser so you can get your pages, data, css, images, etc from your external server and at the same time the code from the Dev mode server. On Dec 10, 11:47 

Re: How do I use development mode on an external server via eclipse? GWT 2.0

2009-12-10 Thread Rajeev Dayal
This is exactly right - just add: -startupUrl http://myotherserver/path/to/my/page.html to the program arguments list. Note that the argument is -startupUrl, not -startUrl. On Thu, Dec 10, 2009 at 8:38 AM, Thomas Broyer t.bro...@gmail.com wrote: On Dec 10, 11:13 am, Stefan Sigvardsson