Re: [google-appengine] Re: Date comparison

2010-09-07 Thread Vibhuti Gupta
Thanks for the prompt reply. I am new to GAE and not familiar with DateTime if you could elaborate on this or guide me to a proper documentation as I do not see a proper documentation related to Dates. Regards On Wed, Sep 8, 2010 at 2:49 AM, GAEfan wrote: > Vibhuti: > > I am assuming that "date

[google-appengine] Direct provider federated identities

2010-09-07 Thread Niklasro
Here are the listed ones * google.com/accounts/o8/id (shorter alternative: gmail.com) * yahoo.com * myspace.com * aol.com * myopenid.com Are there more? How do we enable OpenID eg name.blogspot.com logins? Thanks Niklasro -- You received this message because you are subscribed

[google-appengine] Re: mail api calls number incrasing while application is not sending any, why?

2010-09-07 Thread Greg
Is there some exception reporting system buried deep in Django that is trying to send email warnings? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe fro

[google-appengine] Re: SAML in GAE

2010-09-07 Thread Tim Hoffman
>From what I can tell not directly, at least using PySAML. It has dependencies on things like PyXMLSec which has dependency on 'c' libraries, such as libxml2. So you would probably need to do quite a bit of digging to find a direct client solution. (This might work http://pypi.python.org/pypi/

Re: [google-appengine] How use myself domain

2010-09-07 Thread YF CAO
I understand. the reason is China government blocked google dns. how to solve it ? 2010/9/7 Robert Kluin > Try this: > http://code.google.com/appengine/docs/domain.html > > > > > > > > > On Sat, Sep 4, 2010 at 16:42, MD wrote: > > hello everyone. > > i hope use myself domain. > > i buy a domai

[google-appengine] SAML in GAE

2010-09-07 Thread Tat Sean
Is that possible to implement SAML SSO in our applications, if let say we want to deploy our applications to GAE? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To uns

[google-appengine] Re: When to move to a sharded counter?

2010-09-07 Thread sserrano
If you can tolerate some minimal level of error, like when you are counting popularity, this works great: http://blog.notdot.net/2010/04/High-concurrency-counters-without-sharding -Sebastian http://studio.livemade.com On Sep 7, 1:28 am, Robert Kluin wrote: > Shard when you are updating the same

[google-appengine] Re: Date comparison

2010-09-07 Thread GAEfan
Vibhuti: I am assuming that "date" is a date or datetime object (db.DateTimeProperty()) You are comparing a datetime object to a string. First, convert that string to a datetime object, then compare it to that. datetime.datetime(args) -- You received this message because you are subscribed to

[google-appengine] Re: Uploading to the blobstore directly

2010-09-07 Thread Shay Erlichmen
I spend several hours searching for something like your code and could find any. This code is kinda what I wrote myself (Yours is better). The thing is I that really think that there should be a static/fixed endpoint for uploads. The flow should be something like: 1. You upload/post to a fixed (c

Re: [google-appengine] your project must be configured to use jdk in order to use jsp

2010-09-07 Thread Ikai L (Google)
A JDK is a Java Development Kit. JRE is a Java Runtime Environment. You need to install the JDK from here: http://www.oracle.com/technetwork/java/javase/downloads/index.html On Tue, Sep 7, 2010 at 4:32 AM, santosh baral wrote: > hi everybody, > i am creating app engine application. everythin

Re: [google-appengine] Got an Error while retriving all tuples form an entity

2010-09-07 Thread Ikai L (Google)
Looks like your closed your persistence manager. It'd be more helpful if you posted some code. On Sun, Sep 5, 2010 at 10:43 PM, Hari wrote: > Uncaught exception from servlet > Object Manager has been closed > org.datanucleus.exceptions.NucleusUserException: Object Manager has > been closed >

[google-appengine] Re: Uploading to the blobstore directly

2010-09-07 Thread Shay Erlichmen
Your steps seem logical but, Problem is that the some clients are necessary in the browser, so there is no form to submit. Those clients needs a "fixed" end point to upload the data (or call a "fixed" end point that will return the upload url" On Sep 7, 6:29 pm, timwhunt wrote: > I think I have t

Re: [google-appengine] mail api calls number incrasing while application is not sending any, why?

2010-09-07 Thread Robert Kluin
Apparently something is using the deferred library to try sending an email. View your task queues. You should be able to flush the queue and get it to stop trying to send. I would post the code you were trying to run and then maybe a django-nonrel developer can help you more. Robert On

Re: [google-appengine] mail api calls number incrasing while application is not sending any, why?

2010-09-07 Thread Suleyman Yalinbas
It does, but as I said the weird thing is that I am not making those calls. Since reset there are another 66 such calls. And there has not been any http calls nor any scheduled cron jobs either. Here's the log: Unauthorized sender Traceback (most recent call last): File "/base/python_runtime/

Re: [google-appengine] mail api calls number incrasing while application is not sending any, why?

2010-09-07 Thread Robert Kluin
Check the application logs and see if something is getting called. On Tue, Sep 7, 2010 at 02:08, speedbumpsy wrote: > > Hello, > > I recently started experimenting Google App Engine (+Django + non- > rel). After I upload a working (but very simple) code and hitting only > view I see a lot of

[google-appengine] billing

2010-09-07 Thread julzin
Hi everyone, When using billable quotas, is there an other way to pay Google than to use Google Checkout system? My company is willing to use billable quotas, but they are reluctant to use such a billing mechanism, so we would like to know if there is a more "professional" way for private companies

Re: [google-appengine] App Engine for Busisness

2010-09-07 Thread HalgurD.99
halo, ach bitte ihnen ,mir noch nich E-mail schiken danke 2010/9/3 Ben Chung > Hi, App Engine Team: > > Our RD developers, We are very interested in App Engine for Business. > > Because we are assessing to migrate our platform to GAE platform, so > there are some questions for you, hope you ca

[google-appengine] mail api calls number incrasing while application is not sending any, why?

2010-09-07 Thread speedbumpsy
Hello, I recently started experimenting Google App Engine (+Django + non- rel). After I upload a working (but very simple) code and hitting only view I see a lot of increase in "Mail API Calls" and "Recipient e- mailed" numbers. This simple experimental application has code or whatsoever about ma

[google-appengine] your project must be configured to use jdk in order to use jsp

2010-09-07 Thread santosh baral
hi everybody, i am creating app engine application. everything seems to fine but when i add the jsp file to WAR directory, it shows the error message as: you project must be configured to use jdk in order to use jsp. .. -- You received this message because you are subscribed to the Google G

Re: [google-appengine] Re: Using OR statement in datastore

2010-09-07 Thread Robert Kluin
To run several parallel ops in Python you can use async tools. On Tue, Sep 7, 2010 at 11:04, timwhunt wrote: > If you feel you need to do separate queries and combine the results in > code, you might want to check out the Twig lib if you're working in > Java.  Twig can do OR queries by doi

Re: [google-appengine] Re: Idempotence & multiple task execution

2010-09-07 Thread Eli Jones
Just in case anyone comes across this thread and is wondering about the potential for concurrent execution of a named task. This is documented: http://code.google.com/appengine/docs/python/taskqueue/overview.html The important

[google-appengine] Re: Uploading to the blobstore directly

2010-09-07 Thread timwhunt
I think I have this right, so hopefully to clarify: 1) You get the upload URL for an HTML form for your user to upload the image. Part of forming that uploading URL is to identify the handler code (e.g., Servlet in Java) 2) Your handler code gets called by the Blobstore after the upload is comple

[google-appengine] Re: Using OR statement in datastore

2010-09-07 Thread timwhunt
If you feel you need to do separate queries and combine the results in code, you might want to check out the Twig lib if you're working in Java. Twig can do OR queries by doing multiple queries in parallel and combining the results (removing duplicates) in code. I believe (please correct if wrong

Re: [google-appengine] Re: App Engine for Busisness

2010-09-07 Thread Ross M Karchner
That's less fun, but thanks ;) On Tue, Sep 7, 2010 at 9:49 AM, Nick Johnson (Google) < nick.john...@google.com> wrote: > Hi Ross, > > By 'offline URLFetch', I simply mean URLFetch calls from 'offline' (eg, > task queue or cron job) requests. > > -Nick > > On Tue, Sep 7, 2010 at 1:46 PM, Ross M Ka

Re: [google-appengine] Re: Receiving mail for custom domain on Google App Engine

2010-09-07 Thread Arik Fraimovich
On Tue, Sep 7, 2010 at 4:26 PM, Geoffrey Spear wrote: > > I know that GAE doesn't support natively custom domains for incoming > > mail and that the only option is to setup another server, set it as > > the MX server for that domain and forward everything to GAE. My > > question is has someone al

Re: [google-appengine] Re: App Engine for Busisness

2010-09-07 Thread Nick Johnson (Google)
Hi Ross, By 'offline URLFetch', I simply mean URLFetch calls from 'offline' (eg, task queue or cron job) requests. -Nick On Tue, Sep 7, 2010 at 1:46 PM, Ross M Karchner wrote: > Nick, can you go into more detail of what "offline URLFetch" is? > > If it's the API I've been imagining (nay, dreami

[google-appengine] Re: Receiving mail for custom domain on Google App Engine

2010-09-07 Thread Geoffrey Spear
On Sep 7, 3:33 am, Arik Fraimovich wrote: > Hi, > > I know that GAE doesn't support natively custom domains for incoming > mail and that the only option is to setup another server, set it as > the MX server for that domain and forward everything to GAE. My > question is has someone already creat

[google-appengine] Re: Date comparison

2010-09-07 Thread Vibhuti Gupta
My query is of the format select from table where date < "Sat Apr 17 21:40:05 UTC 2010" On Tue, Sep 7, 2010 at 6:29 PM, Vibhuti Gupta wrote: > Hello > > I am trying to run a query where I need to select the records for which > date field value is less than the current date, but the date query s

[google-appengine] Date comparison

2010-09-07 Thread Vibhuti Gupta
Hello I am trying to run a query where I need to select the records for which date field value is less than the current date, but the date query seems to be returning all the records irrespective of the value in date field of database table. I am using Java. If anyone could help out with database

Re: [google-appengine] Re: App Engine for Busisness

2010-09-07 Thread Ross M Karchner
Nick, can you go into more detail of what "offline URLFetch" is? If it's the API I've been imagining (nay, dreaming of!), you call a function like : offline_urlfetch('http://cnn.com/rss.xml', '/my_callback_handler') and eventually, either the content of rss.xml or a BlobStore key are POST'ed to

Re: [google-appengine] Re: What is the most efficient way to do a large IN query in GQL?

2010-09-07 Thread Nick Johnson (Google)
Hi John, On Tue, Sep 7, 2010 at 1:01 AM, johnterran wrote: > Hi Robert, > > I can't use the key_name. The ids are not from my site > i.e. > Lets say the ids are from twitter. I want to know how many of the > twitter users > are registered on my site. So the ids can exists in the datastore, >

[google-appengine] Re: App Engine for Busisness

2010-09-07 Thread Flips
> 1) We know there are many 1MB limitation, like datastore for each > entity, image resize, mail attachment, URL fetch, memcache value. If you upload an image to blobstore and use high performance image serving there is no 1mb limit for image resizing. -- You received this message because you are

[google-appengine] Receiving mail for custom domain on Google App Engine

2010-09-07 Thread Arik Fraimovich
Hi, I know that GAE doesn't support natively custom domains for incoming mail and that the only option is to setup another server, set it as the MX server for that domain and forward everything to GAE. My question is has someone already created such setup and can share some information about his c

[google-appengine] Re: App Engine for Busisness

2010-09-07 Thread l.denardo
I hope that new background servers will be designed with the option to enable multithreading for processing. The reason is simply that many libraries (especially for computationally intensive tasks involving things like branch-and.bound tree search) are implemented using threads, and obviously thi