I   want   my application to startup only once ie my servlet-listner
to be called once  , so I added warmup-requests-enabled  and set it to
false. in my appengine-web.xml
here is my  file

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0";>
        <application>srini-links</application>
        <version>1</version>

        <!-- Configure java.util.logging -->
        <system-properties>
                <property name="java.util.logging.config.file" value="WEB-INF/
logging.properties"/>
        </system-properties>
         <warmup-requests-enabled>false</warmup-requests-enabled>
<!--     <threadsafe>true</threadsafe> -->
</appengine-web-app>

after an hour I tried accessing my application it was taking time when
I saw  the logs servlet- listener was called again , how can I disable
warmuprequests ?
is it possible   without payment ?

-- 
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.

Reply via email to