Re: Parsing URI components

2016-08-17 Thread Pablo Nussembaum
You can also use: http://www.gwtproject.org/javadoc/latest/com/google/gwt/http/client/RequestBuilder.html On 17/08/16 16:35, Jens wrote: > http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/Window.Location.html > > Should help you. > > -- J. > -- You received this message becau

Parsing URI components

2016-08-17 Thread Jens
http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/Window.Location.html Should help you. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to go

Re: Parsing URI components

2016-08-17 Thread Gilberto
I'm sure there are other implementations around, but I created my own parser: https://github.com/gilberto-torrezan/gwt-views/blob/master/src/main/java/com/github/gilbertotorrezan/gwtviews/client/URLToken.java (take a look at the setToken method). It is part of gwt-views project, that helps you

Parsing URI components

2016-08-17 Thread Kay Pac
Hi, I would like to parse the UrI for the host page to populate arguments for the application. I do not know how to do this - I can use Document.get().getURL() but there is no jdk URI emulation and UriUtils and/or the URL class don't have methods to parse the query string. Any help? Kay --