[google-appengine] Re: security issue (strange behavior)

2013-04-27 Thread @Mlaynes
Ok.. after several tests, it appears that our sample is stabilized now, although it is an unsecured application :

Re: [google-appengine] Re: help on backends

2013-04-27 Thread Google Tasks Backup Moderator
Asterisk means match zero or more of the *preceding character* */.** means a forward-slash followed by *zero *or more characters. This matches the root, and any other page off the root (e.g. it matches both *my-site.appspot.com/* and *my-site.appspot.com/mypage*) */** means zero or more forward-s

[google-appengine] Re: help on backends

2013-04-27 Thread GAEfan
Hi Vinny: I believe /.* is the proper syntax: https://developers.google.com/appengine/docs/python/config/appconfig I do not understand the difference. Both " /.* " and " /* " should mean "followed by 0 or more characters", but " /* " breaks my mapping for other urls. -- You received this me

[google-appengine] Re: OverQuotaException while testing

2013-04-27 Thread Vinny P
Hello Parag, XMPP requests use up quotas other than the specific XMPP quotas listed at https://developers.google.com/appengine/docs/quotas#XMPP . For example, outbound messages use up outbound bandwidth, and I believe there is a sent message size limit. Can you provide a sample of the code that

[google-appengine] Re: help on backends

2013-04-27 Thread Vinny P
On Friday, April 26, 2013 10:06:18 PM UTC-5, GAEfan wrote: > > OK, so it IS the wildcard URL mapping: > > - url: /.* > > Removing this allows the backends to map properly. Apparently, the > wildcard url mapping short-circuits the backends mapping. What is the > default mapping for "/_ah/start