On Fri, Feb 28, 2014 at 4:50 PM, M. Hossein Amerkashi <[email protected]> wrote:
> I was using appengine-java-sdk-1.7.2 to deploy my application and all was > going fine. > Now, I have to upgrade to java. So I believe I have made the switch. > However, when I try to upload, it prevents me from deployment because I get > this message: > * Java 6 applications are prevented from being deployed to Google App > Engine from any version of the SDK, including older ones* > > Then I switch to any version higher than +appengine-java-sdk-1.7.4 and I > get: > * Found more than 100 URLMap entries in application configuration* > > Is there anyway to change this default of 100? > If this is a regression from Java 7, you could always request whitelisting of your Java 6 app using this form: http://goo.gl/ycffXq If you don't want to do that, then the best way would be to look at the URL paths and see if there's a way to consolidate multiple URL path entries into fewer entries: for an example, see this SO post: http://stackoverflow.com/questions/11298401/google-app-engine-100-urlmap-entries-limitation If you can't do any consolidation, you can configure a ServletFilter class to interpret incoming requests and hand them off to the appropriate servlets. This should be avoided if possible though, since it can add additional latency to requests. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
