0
votes
2answers
66 views

GWT Filter never executed

I am developing a GWT Filter to make my GWT app crawlable. The idea is that when it finds a ugly URL like this: http://www.myapp.com/?_escaped_fragment_=v;id=Mv67mC13Yizr Presents the good one: ...
1
vote
1answer
93 views

Intercepting and forwarding client certificate to webservice

I have a web application (gwt) that is running on a tomcat application server. This web application consumes several web services (login, application data transfer, queries, etc.). The web service ...
0
votes
0answers
35 views

How can i say GWTTesCase use web.xml configuration instead of servlet tags define inside *.gwt.xml?

I understand that GWTTesCase does not use web.xml for test gwt widgets and use servlet tags define inside *.gwt.xml (module file). I was wondering how can i define filter or listener or ...
1
vote
0answers
151 views

Servlet Filter is Returning “Proxy Error” on AWS

I have set up a Filter to add crawler support for my GWT web application. The idea is to catch all requests that contain "_escaped_fragment_=" and supply a snapshot for the crawler. I have set up ...
1
vote
2answers
765 views

Parsing GWT RPC POST request/response

I'm using GWT-RPC to get the client data and my requirement is to parse the payload to retrieve the data inside. I need to log or persist this data for metrics/monitoring purpose. I'm using the ...
1
vote
1answer
392 views

GWT servlet filter ,How to identify special service request?

I created a app with GWT+requestfacotry(MVP)+GAE. There are some service or method exposed to GWT client ,such as 1.create 2.remove 3.query I want to add authorization function to "create" and ...
0
votes
1answer
226 views

servlet filter for url rewriting makes gwt page getting 404

I have a GWT application /application.html for easy access (and SEO) I would like make url rewriting like /station/fr/foo mapping I'm trying with a servlet filter declared like this ...
2
votes
2answers
611 views

Servlet filter isn't being invoked on .html file of GWT module

Perhaps I'm just missing some fundamental piece of knowledge but I can't figure out why servlet filter doesn't catch GET request on .html file of main GWT module. My filter is defined in web.xml as ...
1
vote
1answer
145 views

filter a servlet at method level

Is there a way to apply a filter to a servlet at method level? I don't want every method of the servlet to be filtered. Maybe I should not use filters, I am not a java expert. I want to validate the ...
0
votes
1answer
388 views

filter not executing on static content request

I'm trying to implement making gwt apps crawlable, but the CrawlFilter isn't being executed, ever. What am I doing wrong? Is static content not subject to filters? <web-app> <!-- Crawling ...