[google-appengine] Re: Moving Images from Datastore to Blobstore

2010-08-28 Thread Niklasro(.appspot)
Thanks for helping. The mentioned method appears to work getting the id of another entity from the url, looking up the referenced blob and writing it. . Now to make presentation more userfriendly, can we also dispatch to templates for making views to blobstore? I had a custom request handler for i

Re: [google-appengine] Re: Channel API with TyphoonAE

2010-08-28 Thread Tom Wu
Unable to install the http://support.microsoft.com/kb/976662 for IE8. It's better include json2.js from json.org. 2010/8/29 Tobias > After a little investigation I found out that the same occurs with the > original demo at http://io-trivia-quiz.appspot.com and is due to a > minor issue in the

Re: [google-appengine] Re: How do I use get_serving_url correctly?

2010-08-28 Thread Nickolas Daskalou
Matt, even if that's the case, it'd be nice if the delay of dozens of get_serving_url() API calls could be parallelised and not added up sequentially (which is what I was trying to find out in my long-winded question to Ikai). Nick On 29 August 2010 06:19, Matt H wrote: > I don't think so. AFA

[google-appengine] Re: Server Error

2010-08-28 Thread Tim Hoffman
Hi Check your app.yaml for problems. This seems to one cause of this. (though I have found the error message varies) I have found for instance error handler paths can't overlap with static file handlers. i.e. error_handlers: -file static/error.html will conflict with - url: /images stat

[google-appengine] Re: Server Error

2010-08-28 Thread Matt H
I keep on getting this too, with no errors in the log. On Aug 27, 3:52 am, Tsolmon Narantsogt wrote: > Hello everybody > > When i run this command > > ./appcfg.py update myproject/ > > i got a following this error help me > > Error: Server Error The server encountered an error and could not compl

[google-appengine] Re: How do I use get_serving_url correctly?

2010-08-28 Thread Matt H
I don't think so. AFAIK the URL is intended to be persisted - not regenerated repeatedly. On Aug 27, 8:36 am, Nickolas Daskalou wrote: > Ikai, is there any way of doing this asynchronously (like URLFetch fetch() > calls)? > > Eg: (copied mostly > fromhttp://code.google.com/appengine/docs/python/

[google-appengine] Re: Will OpenID providors other than Google ever be supported by built-in OAuth?

2010-08-28 Thread Matt H
They're supported now. http://blog.notdot.net/2010/05/Using-OpenID-authentication-on-App-Engine On Aug 28, 6:16 pm, tempy wrote: > Hello all, > > The subject says it all... My app consists of a GAEj app and an > installed mobile client that connects to it, and is authorized via > OAuth.  The GAE

[google-appengine] Re: Channel API with TyphoonAE

2010-08-28 Thread Tobias
After a little investigation I found out that the same occurs with the original demo at http://io-trivia-quiz.appspot.com and is due to a minor issue in the demo's Javascript http://code.google.com/p/trivia-quiz/source/browse/trunk/src/index.html#298 which can very likely be fixed by downloading th

[google-appengine] Will OpenID providors other than Google ever be supported by built-in OAuth?

2010-08-28 Thread tempy
Hello all, The subject says it all... My app consists of a GAEj app and an installed mobile client that connects to it, and is authorized via OAuth. The GAEj uses openid for authentication. I'm using the built- in implementation for now, as its ok to only support google as the openid provider fo

[google-appengine] SSO with built-in OpenId is possible?

2010-08-28 Thread Rodrigo Moraes
Hey everybody, Is it possible to achieve SSO with the buil-in OpenId? I've been trying to integrate a Marketplace app and get the user logged in when coming from Google Apps (the admin panel or universal navigation). I failed miserably, then now I found this: "The one exception to this is applica

[google-appengine] OAuth integration issue with Google Apps

2010-08-28 Thread Jean-Lou Dupont
I am having trouble accessing "protected resources" through OAuth. I have an AppEngine application (services-systemical) registered through my Google Apps domain (systemical.com), a CNAME pointing to my application ("services.systemical.com" , working perfectly with my other non-Oauth services).

[google-appengine] Re: Channel API with TyphoonAE

2010-08-28 Thread Tim Hoffman
Hi Tobias. Actually one slight wart with chromium on linux with the demo. If I clicked on the text of the question it would submit/send the respone. If I clicked on the radio button it wouldn't. But cheers on getting it up and running. T On Aug 28, 4:25 pm, Tobias wrote: > On Aug 28, 9:53 am,

[google-appengine] access denied when reading file out of "war" directory on appspot

2010-08-28 Thread ping
Hello, I'm developing a webservice on the app engine and came across this problem: My webservice receives a xml file which should be validated against a *.dtd file on the app engine. the *.dtd file lies in the "war" directory. And the name of the *.dtd file is referenced in the xml document with a

Re: [google-appengine] Re: Channel API with TyphoonAE

2010-08-28 Thread Nickolas Daskalou
Works great in Safari 5.0 and Chrome 5.0 on Mac OS X. Fantastic work! Nick On 28 August 2010 18:25, Tobias wrote: > On Aug 28, 9:53 am, Tom Wu wrote: > > http://trivia-quiz.typhoonae.org:8080/ > > > > It works fine in firefox. > > IE8 failed with JSON undefined. > > Thanks a lot for reporting

[google-appengine] Re: Channel API with TyphoonAE

2010-08-28 Thread Tobias
On Aug 28, 9:53 am, Tom Wu wrote: > http://trivia-quiz.typhoonae.org:8080/ > > It works fine in firefox. > IE8 failed with JSON undefined. Thanks a lot for reporting this! You're right, the Javascript still needs some tweaks. - Tobias -- You received this message because you are subscribed to

Re: [google-appengine] Channel API with TyphoonAE

2010-08-28 Thread Tom Wu
http://trivia-quiz.typhoonae.org:8080/ It works fine in firefox. IE8 failed with JSON undefined. 2010/8/28 Tobias > Hi, > > I'm happy to announce that TyphoonAE (only trunk, for now) already has > experimental support for the new Channel API. We have the Google IO > Trivia Quiz running on ou