Re: [appengine-java] Re: JSP page as Warmup Servlet

2011-05-17 Thread Don Schwarz
JSPs are compiled into servlet class files during deployment, not in each
instance.

Warmup requests are GET requests, so doGet() will be called.  We recommend
that you override service() instead, as the default implementation of
doGet() calls it, but you can do either.

And yes, warmup servlets can have admin auth-constraints, which will be
bypassed automatically for legitimate warmup requests.

On Tue, May 17, 2011 at 12:52 AM, Anders i...@blabline.com wrote:

 The documentation doesn't mention it (as far as I could see), but I take it
 that warmup servlets can be given admin auth-constraint.

  --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Re: JSP page as Warmup Servlet

2011-05-17 Thread Anders
Ok. Excellent.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: JSP page as Warmup Servlet

2011-05-16 Thread Anders
The documentation doesn't mention it (as far as I could see), but I take it 
that warmup servlets can be given admin auth-constraint.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.