Thanks. Understood. I realize that GWT apps are "single page" and logical pages are created/torn down dynamically. My question was concerning the application URL string and what sorts of tricks mights be possible in order to support multiple URL paths/parameters strictly as a means of directing the application to a logical target location in the UI. So, for example, a 3rd party app might launch the app in context, selecting a specific element in a tree view, seleting a tab, etc (all by way of the URL string), so that the UI is opened to the target location without the user having to perform the navigation himself.
I suppose the simple solution is to limit this to the query string parameters of the URL. I just thought the path portion of the string would be a more concise way of expressing a logical target location rather than parameter keywords/values. On Jun 6, 12:59 am, "Dean S. Jones" <[email protected]> wrote: > most ( well, all ) of my GWT apps are "single page apps", I include > the GWT generated js in index.jsp at the web root, and drive all > screen display > through history tokens. The administration configuration tab is just a > Widget that is ( built/triggered/shown) when say I get a history > change with > #administration as the token. The user never sees any other URL's... I > understand that this may not be possible if you are "migrating" an > older application, > but there is a sly trick to that too... in the case of needing to > display a "legacy jsp/html page", I just create an IFrame and load the > page into it, then > display that in my apps main area... > > On Jun 5, 12:20 pm, Mickey <[email protected]> wrote: > > > > > I know that arguments can be easily passed into the application using > > URL query string parameters. But I was wondering whether it would be > > possible to define mutliple (or alias) URL paths into the same GWT > > application to produce a more natural/cleaner looking URL for > > targeting logical locations in the application (e.g. administration > > configuration tab in the app > > =http://localhost/myapp/administration/configuration/...). > > > Is this possible (e.g. url-pattern, redirection filter, multiple > > module entry points, etc), or is it more trouble than it is worth?- Hide > > quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
