Just noticed something peculiar and haven't run it down yet, just wanted to
see if anybody else had noticed the same:
In earlier releases, with this:
final Directory d = new Directory(getContext(),
"clap://thread/client-bin"){
};
root.attach("/accounts/{groupname}/{username}/admin", d);
A client can go to /accounts/foo/bar/admin/index.html?baz and it works
(returning index.html from the Directory)
In 1.1M3, this gets a 404. Using Route.BEST, the request (containing a
query string) never even gets routed to the Directory. Using Route.FIRST,
it hits the Directory but the Directory itself gives a 404.
Did I miss an intentional change, or is this a bug? The use case here is
that I have some clients that, for reasons beyond my control, like to append
stuff like ?refresh={some-random-number} to resource names to defeat local
caching behavior.
- Rob