[google-appengine] Re: Datastore OFFSET is WORTHLESS

2012-10-09 Thread Richard Watson
Enterprise pricing and GAE aren't in the same universe, unless we're talking about enterprises that run out of the back of a truck. "Enterprise" is where they ask for your phone number, and then get an expensive salesperson to figure out how much you value the product, and then charge you that.

[google-appengine] Fwd: [Action Required] Update your domain's CNAME record

2012-10-09 Thread Deepak Singh
Hi, Through App engine, we enable / disable page-speed-service. Once we change the CNAME record and after that we disable page-speed, so will it continue to work the same way ? Regards Deepak -- Forwarded message -- From: Mona Vajolahi Date: Wed, Oct 10, 2012 at 5:27 AM Subject

[google-appengine] Re: Datastore OFFSET is WORTHLESS

2012-10-09 Thread stevep
Google is a bit schizophrenic right now IMHO. Its pricing is enterprise, yet it still desires the startup developers' halo (appealing to their desire for high-productivity). So GAE product managers have been riding the backs of startup developers who chafe at the enterprise-level pricing while

Re: [google-appengine] Re: Datastore OFFSET is WORTHLESS

2012-10-09 Thread Jeff Schnitzer
On Tue, Oct 9, 2012 at 10:40 AM, James Gilliam wrote: > The main point I am making is offsets are useless because reading all > records from 0 to offset costs the same as reading a a record from +offset. > If GAE didn't charge for the records being skipped, it would be useful to > use offsets. I s

Re: [google-appengine] GAE Domains not resolving/redirecting

2012-10-09 Thread Andreas
its working rom nyc. On Oct 9, 2012, at 2:27 PM, Emre Baran wrote: > Is anyone having the same issue. > I am experiencing a problem where my domain is not resolving to the app > engine instance. > It looks like all is same/not changed with my DNS provider. > > However, in the last few hours it

[google-appengine] Writing files to the blobstore : Future safe ?

2012-10-09 Thread Mahron
Hi, writing files to the blobstore has been experimental for some time now. Is there a chance it won't make it to production ? Is it wise to rely on it ? -- 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-appengine] GAE Domains not resolving/redirecting

2012-10-09 Thread Emre Baran
Is anyone having the same issue. I am experiencing a problem where my domain is not resolving to the app engine instance. It looks like all is same/not changed with my DNS provider. However, in the last few hours it looks like www.musicbymap.com is failing to resolve to musicbymap.appspot.com

[google-appengine] Senior Java Programmer Analyst (Google Apps) Opening in Florida - Relocation Provided!

2012-10-09 Thread JabilRecruiter
Jabil is looking for a Senior Java Programmer Analyst (Google Apps) role here at Jabil. This role will play an integral part in our global IT initiatives. If you're not familiar with Jabil, we're a global $16+B diversified manufacturing services company located in the Tampa/St. Petersburg, FL a

Re: [google-appengine] Re: DKIM - not clear why not working

2012-10-09 Thread Takashi Matsuo
Hi johnP, On Wed, Oct 10, 2012 at 6:34 AM, johnP wrote: > It looks like Google announced they fixed a bug - and people are seeing a > green 'authenticating' in their google apps control panel pages. > > My account has said that it was authenticating all along. The problem is > that the emails t

[google-appengine] Storing the Cursor for App Engine Pagination

2012-10-09 Thread aaron
I'm trying to implement pagination using App Engine's RPC and GWT (it's an app engine connected project). How can I pass both the query results and the web-safe cursor object to the GWT client from the RPC? I've seen examples using a servlet but I want to know how to do it without a servelt.

[google-appengine] Re: DKIM - not clear why not working

2012-10-09 Thread johnP
It looks like Google announced they fixed a bug - and people are seeing a green 'authenticating' in their google apps control panel pages. My account has said that it was authenticating all along. The problem is that the emails themselves are not being signed. Any way to get a response on th

[google-appengine] HRD migration broke tables & indexes

2012-10-09 Thread Andrew Mackenzie
Indexes are not part of datastore and are not migrated, they are defined in your app and built after being uploaded as part of a deploy or index update via appcfg. Existing entities (by key match) are overwritten. "Extra" entities you had at destination before copy are not deleted. Mine worked

Re: [google-appengine] Re: Channel API and "fan out" to multiple clients

2012-10-09 Thread Aleksei Rovenski
I remember reading somewhere on StackOverflow that few connections maybe supported to one channel to support same user refreshing the page or smt like that.. How many connections did you test to one channel? If you want fan out, please star this issue: http://code.google.com/p/googleappengine/is

[google-appengine] Google, what's the latest on RAM?

2012-10-09 Thread pdknsk
I had hoped my Golden RAM post some months ago would spark some discussion at Google, but apparently not. RAM is incredibly inexpensive. Google probably pays $20 and less for 4GB bulk. A modest increase of 50% across all instances seems reasonable. -- You received this message because you are sub

[google-appengine] Re: gae-cms.com - A brand new CMS based on Google App Engine via Python

2012-10-09 Thread GAE-CMS
Hi ID, thanks for trying it out. The empty column on the left side of the default theme is for the secondary level navigation. If your page has only one level of navigation, or else you want to use the drop down navigation instead for the top navigation, you can create your own theme which has

[google-appengine] Re: Datastore OFFSET is WORTHLESS

2012-10-09 Thread James Gilliam
The main point I am making is offsets are useless because reading all records from 0 to offset costs the same as reading a a record from +offset. If GAE didn't charge for the records being skipped, it would be useful to use offsets. I suspect the only reason they charge for skipping records is

[google-appengine] Re: gae-cms.com - A brand new CMS based on Google App Engine via Python

2012-10-09 Thread ID
I'm trying it out, seems quite interesting and clean. I have a question, how can I resize or get rid of the empty space on left side? On Wednesday, June 13, 2012 12:06:59 AM UTC+8, GAE-CMS wrote: > > I am the creator of a brand new CMS called GAE-CMS. > It is based on Go

[google-appengine] Re: Datastore OFFSET is WORTHLESS

2012-10-09 Thread Vinny P
Cursors are nice, but not necessarily useful in all situations. I have code that uses both offsets and cursors in the same application, because I need the flexibility of offsets occasionally. In the cases where cursors can be used, I use cursors for speed. The GAE documentation comments on the

Re: [google-appengine] Re: Channel API and "fan out" to multiple clients

2012-10-09 Thread Richard Watson
Seems pretty well defined here: https://developers.google.com/appengine/docs/java/channel/overview#Caveats "One Client Per Client ID Only one client at a time can connect to a channel using a given Client ID, so an application cannot use a Client ID for fan-out. In other words, it's not possibl

Re: [google-appengine] Re: Channel API and "fan out" to multiple clients

2012-10-09 Thread Gopal Patel
its undefined behavior. they never said it will not work or prohibited. they said undefined. On Tue, Oct 9, 2012 at 1:54 AM, Richard Watson wrote: > I'm sure it's very unlikely to work reliably. If you need that, until > Google makes a policy change I'd suggest using something like Pusher. > ht

[google-appengine] How to create/execute/deploy a Adobe flex app using google app engine

2012-10-09 Thread saju thankathurai
I have created a Adobe Flex application, which uses blazeds as server which pushes data from flex to java and vice versa. I am using Oracle 11g as Database. I am using Cairngorm framework for building flex app. I need to understand whether i can continue my project by using google app engine.

Re: [google-appengine] limite di invio messaggi

2012-10-09 Thread Gianni
Se per messaggi intendi email, basta abilitare i pagamenti ("Enable billing"). -- Gianni 2012/10/9 CB made in Italy > buongiorno, > > io vorrei poter mandare tutti i messaggi al giorno che voglio, anche > pagando. > > c e un modo??? > > -- > You received this message because you are subscrib

[google-appengine] limite di invio messaggi

2012-10-09 Thread CB made in Italy
buongiorno, io vorrei poter mandare tutti i messaggi al giorno che voglio, anche pagando. c e un modo??? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-app

Re: [google-appengine] Hundreds of 500-pages out of the blue. All related to database errors ("An error occurred parsing (locally or remotely) the arguments to DATASTORE_V3.Get()")

2012-10-09 Thread Per
This error has been striking again, and our customers had the impression the site was down for about two hours. Our customers are complaining and I am really unhappy about this too. I've raised an issue on the tracker (http://code.google.com/p/googleappengine/issues/detail?id=8233). I know th

[google-appengine] Re: sendmail error!

2012-10-09 Thread Shilendra Sharma
Hi Gustavo As simon says you use the java 1.6 in eclipse you go through this path :- window -> preference -> java -> compiler -> compiler compliance level -> select 1.6. App Shilendra On Tuesday, 9 October 2012 14:19:24 UTC+5:30, Simon Knott wrote: > > Hi, > > You've built your project with

[google-appengine] Re: sendmail error!

2012-10-09 Thread Simon Knott
Hi, You've built your project with Java 7 and GAE only supports Java 6 at this time. Rebuild your project with Java 6 and this error will go away. Cheers, Simon On Thursday, 4 October 2012 04:08:28 UTC+1, Gustavo Madi wrote: > > > you can test my application in www.iyoung.com.br > looking at t

Re: [google-appengine] I am a new GAEer, it promts as below, how should I do ?

2012-10-09 Thread Fred Liu
Thanks Tkashi, but the log said " 1. 1. 2012-10-09 14:22:11.730 / 500 27ms 0kb Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1 203.169.242.35 - - [08/Oct/2012:23:22:11 -0700] "GET / HTTP/1.1" 500 0 - "Mozilla/5.0 (Windows NT 6.1; WOW64;