On Sat, Apr 24, 2010 at 1:31 PM, markww <[email protected]> wrote: > Hi, > > When we're running our apps in hosted mode, we get a url to run like: > > http://localhost:8888/projectname.jsp?gwt.codesvr=192.168.1.2:9997 > > in my app, I have some links which will send the user to another page > on my site, something like: > > http://localhost:8888/about > > once this happens though, the debugging connection is lost. I'm > actually serving the same app at: > > http://localhost:8888 > > and > > http://localhost:8888/about > > my app just checks the url path and creates the correct panels > accordingly. But is there a way to reestablish the debugging > connection after navigating away from the original url? > > Thanks
Out of the box, there's no way to get this to happen automatically. You can, however, use UrlBuilder to preserve the gwt.codesvr parameter in your URLs. -- Chris Conroy Software Engineer Google, Atlanta -- 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.
