So here is the solution to the real problem:
I wanted my GWT (running on the Google App Engine) to be a Google scanned bot and follow this documentation: "https://developers.google.com/webmasters/ajax-crawling/". I tried to apply a servlet filter that filters every request in my application and checks for a special fragment in the escaped URL that was added by the Google bot and presents a special kind of bot with a headless browser.
But the servlet did not work for the MyApp.html file. I found out that all files are considered as static files and are not filter dependent. I had to exclude the ".html" files from these static files. I did this by adding the line "to static files in" appengine-web.xml ".
Hope this helps some people with the same problem save time :)
Thanks and best regards January
jan
source share