1
vote
1answer
78 views

Failure to convert static files to resource files in app engine so that http requests pass authentication filter

I am trying to make requests for a html file pass a filter in a google app engine deployment. I aim to accomplish this by excluding it as static file and making it a resource file as per the ...
0
votes
0answers
168 views

How to access managed bean from servlet filter?

GAE only support "client" for javax.faces.STATE_SAVING_METHOD (defined in web.xml), so don't know because of that I not able access the manage bean from servlet filter. During login ...
2
votes
2answers
374 views

How can I filter all except requests app engine dev console in web.xml

I want to filter all requests to my jersey servlet so I do this: <filter-mapping> <filter-name>jersey</filter-name> <url-pattern>*</url-pattern> ...
1
vote
1answer
5k views

how to get string parameter from request when using multipart/form-data?

i make html page to upload image with text box which has description form it . i have use multipart/form-data ; in the dopost at servlet i get file using ServletFileUpload upload = new ...
2
votes
2answers
194 views

Strange Java Servlet Filter-Mapping Behaviour

I am using Eclipse IDE with Google App Engine plugin, and Guice. Running on the Dev Server, I've tried both of these in web.xml and the guice MyServletModule extends ServletModule: ...
0
votes
1answer
125 views

Prevent Google App Engine from remembering session of non-admin user when using security-constraint

I was going through this article and got stuck with one issue. Imagine I have following rule in web.xml: <security-constraint> <web-resource-collection> ...
2
votes
2answers
608 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
377 views

UrlRewriteFilter run element produces 404 but to element works fine on GAE/Java

I'm using the UrlRewriteFilter library in order to avoid having to write my own url filter. I'm pretty sure that I have things set up properly, because when I have this in my url rewrite xml: ...
1
vote
1answer
1k views

Unable to access session data in servlet filter on app engine dev server

I was trying to write a session filter to centralize authorization check in my app engine web app. My filter looks like this : @Override public void doFilter(ServletRequest request, ...
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 ...
1
vote
1answer
151 views

From within a servlet how do you access a variable set inside a corresponding servlet filter?

I'd like to use the following filter to open and close persistence managers. public final class PersistenceFilter implements Filter { private static final PersistenceManagerFactory ...