Re: [google-appengine] Is Google App Engine capable of sending remote service response to an adobe air application?

2014-11-16 Thread Vinny P
On Sun, Nov 16, 2014 at 1:44 AM, wrote: > have an Adobe Air application that uses AMFPHP. I have set up a local > server and everything worked fine. I have uploaded the PHP files to Google > App Engine, but the live server does not return a response. > When you say "set up a local server" does

Re: [google-appengine] Re: What can I do with the google app engine?

2014-11-16 Thread Vinny P
On Sun, Nov 16, 2014 at 6:00 PM, MINDRIL CYR wrote: > Could I use this with google sites to make a dynamic web site? > Yes. Look up Google Sites Web Gadgets - essentially they're dynamic components (optionally hosted by App Engine) that can be embedded into Sites pages: https://developers.goog

Re: [google-appengine] App Engine

2014-11-16 Thread Vinny P
On Sat, Nov 15, 2014 at 10:00 AM, Regina M Tomé wrote: > > I need to know how the Database works in App Engine. I have a MySQL > database in my PC. > > I have a project in the server App Engine, with an Instance in use. > > Question: Do I have to create my Database in the server or when I make th

[google-appengine] Re: 1.9.17 PreRelease SDKs - PHP 5.5 support

2014-11-16 Thread Stuart Langley
Best to post your question on stack overflow with the [google-app-engine] and [php] tags. You'll need a better description of what "not working" means - e.g. include details of how you expect your app to work, how you tested it, what you see in the admin console logs etc On Monday, 17 November

[google-appengine] Re: 1.9.17 PreRelease SDKs - PHP 5.5 support

2014-11-16 Thread Guo Gang
Hi Sirs, I just want to simply verify the GAE already support php or not. I used the GAE SDK for php with local PC testing environment, it's working, but when I upload to GAE cloud, it is not working, even simple php version does not show at all. What's the possible problem? I found GAE support t

[google-appengine] Re: What can I do with the google app engine?

2014-11-16 Thread MINDRIL CYR
Could I use this with google sites to make a dynamic web site? On Sunday, November 16, 2014 3:08:31 PM UTC-5, Kristopher Giesing wrote: > > App Engine can be thought of as a managed servlet container (e.g. like > Tomcat, but supporting several other languages than Java). You can use > this fo

[google-appengine] Re: 1.9.17 PreRelease SDKs - PHP 5.5 support

2014-11-16 Thread Aidan Lane
That's absolutely fantastic news, thanks guys! It's also very reassuring, as we've now invested much in using PHP on GAE. Now for PHP support on Managed VMs... (yes, always demanding more! :) Cheers, Aidan On Saturday, November 15, 2014 4:19:22 PM UTC+11, Stuart Langley wrote: > > Hello Everyo

[google-appengine] Re: What can I do with the google app engine?

2014-11-16 Thread Kristopher Giesing
App Engine can be thought of as a managed servlet container (e.g. like Tomcat, but supporting several other languages than Java). You can use this for just about any purpose you can imagine for a web app. Many other services (e.g. AWS) manage the infrastructure for you, but leave it to you to

[google-appengine] Re: What can I do with the google app engine?

2014-11-16 Thread MINDRIL CYR
Does it compile and host your apps. On Sunday, November 16, 2014 6:54:22 AM UTC-5, MINDRIL CYR wrote: > > > I'm a little new to programming. Does this give you server space to > create web apps that can serve a large number of clients? Could I use it > to make something like a flash/facebook g

[google-appengine] What can I do with the google app engine?

2014-11-16 Thread MINDRIL CYR
I'm a little new to programming. Does this give you server space to create web apps that can serve a large number of clients? Could I use it to make something like a flash/facebook game? Do I need additional software to do the programming? -- You received this message because you are subsc

Re: [google-appengine] Re: Bug in ndb with StructuredProperty?

2014-11-16 Thread timh
Though to be honest I would probably not do it at put time, but deal with the validation at input validation stage, If you leave things for validation at the time of put() it's usually a lot harder to inform the enduser in forms based messages. The other problem with strict validation on models,

Re: [google-appengine] Re: Bug in ndb with StructuredProperty?

2014-11-16 Thread timh
One possible approach for the inner SecondModel validation would be to call _validate explicitly on it, . You could call this from a _pre_put hook defined on FirstModel T On Monday, November 10, 2014 1:33:17 PM UTC+8, Vinny P wrote: > > On Sat, Nov 8, 2014 at 7:44 AM, Lapteuh > > wrote: >> >>