Re: [google-appengine] Dynamic urls

2011-05-15 Thread James Broberg
You might like to consider Restlets [1] as well - they are well suited to this sort of routing and dynamic naming. [1] http://www.restlet.org/ On 16 May 2011 10:28, Stephen Johnson wrote: > I would have all products have a URL pattern like > mysite.com/product/mini-shop-vac  (or similar). Then,

Re: [google-appengine] App Engine 1.5.3 Pre-release SDKs are out

2011-08-09 Thread James Broberg
Amazon's limit is 5TB, not 5GB - although you can only upload it in up to 5GB parts for a single PUT. On 10 August 2011 02:51, Joshua Smith wrote: > Does this mean there is no limit at all? (We've bumped into Amazon S3's 5GB > limit now and then, so having an alternative which was unlimited would

Re: [google-appengine] 'The 3000 limit' Guido has change the ticket status from accepted to started

2011-08-16 Thread James Broberg
It seems the cat picture was the clincher. On 17 August 2011 09:36, Mario César wrote: > I have goose bumps. > > → http://code.google.com/p/googleappengine/issues/detail?id=4639#c17 > > -- Mario César > > -- > You received this message because you are subscribed to the Google Groups > "Google App

Re: [google-appengine] Re: Time for a community-sourced Google App Status page?

2011-08-25 Thread James Broberg
Frankly I never even look at or depend upon the Google App Engine System Status. I monitor my individual apps using Pingdom and other internal tools. On 26 August 2011 11:08, Tim Hoffman wrote: > I too have problems with the status page. > Also I feel some different things should be monitored. >

Re: [google-appengine] Re: Our new performance tuning "best practices" document

2011-08-27 Thread James Broberg
Great stuff Per - and you have an interesting application there. It makes me wonder whether it would be worthwhile setting up a central shared wiki somewhere so we could all contribute our best practices. I'm sure many of us (I know I do) have some best practices scribbled down internally that many

Re: [google-appengine] Re: Channel API not working properly

2011-09-15 Thread James Broberg
OpenID service has also been down for us for about 6 hours or more. On 15 September 2011 21:12, Brian Immel wrote: > Same here... Started within the last day for me. > > > > > On Sep 15, 3:26 am, GK wrote: >> Same here. >> >> I have starred the issue. >> >> On Sep 15, 12:58 pm, Tom Newton wrote

Re: [google-appengine] Re: OpenID authentication gives 500 Server Errors?

2011-09-15 Thread James Broberg
I also opened a production issue also: http://code.google.com/p/googleappengine/issues/detail?id=5907 It's been down for around 10 freakin hours for us. Anyone using Google to login to our site (i.e. 90% of our users) cannot login. On 16 September 2011 14:42, Jan Zawadzki / Hapara wrote: > Open

Re: [google-appengine] Re: OpenID authentication gives 500 Server Errors?

2011-09-15 Thread James Broberg
All, Adding www to the front of the google OpenID claimid seems to fix or work around the issue. Have a look at my issue for an example - I have added another comment. On 16 September 2011 15:08, James Broberg wrote: > I also opened a production issue also: > > http://code.goo

Re: [google-appengine] X-AppEngine-City

2011-10-06 Thread James Broberg
Jeff, This made me smile as we did the exact same thing. Split the maxmind database in 3 and reconstituted the file in code. We initialise the database in a warm up task so it gets loaded into memory. It's quite speedy after that (but it does take up a chunk of memory) cheers James On 7 Octobe

Re: [google-appengine] MySQL on GAE becomes a reality ?

2011-10-06 Thread James Broberg
Very interesting. I wonder how many writes/second it can do. -James On 7 October 2011 09:17, Tim wrote: > > In case anyone missed it, a full SQL database is in "limited preview" >   http://googleappengine.blogspot.com/2011/10/google-cloud-sql-your-database-in-cloud.html >   http://code.google.c

Re: [google-appengine] Google App Engine reachable from China

2011-10-17 Thread James Broberg
Fun while it lasted... On 18 October 2011 01:21, Francois Masurel wrote: > You're totally right, GAE doesn't seem to be reachable anymore. > Francois > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To view this discussion on the we

Re: [google-appengine] Domains used by Blobstore URLs?

2011-10-19 Thread James Broberg
Hi Pamela, If you are serving up the images straight from your blobstore then it just uses your appspot domain (or whatever you have CNAME aliased it to). The common pattern is you implement your own blob download handler. If you are using the getServingUrl function you will get the funky high pe

Re: [google-appengine] Re: Memcache failing fetch about once every 5 or 6 seconds.

2011-10-22 Thread James Broberg
Memcache performance for my app has gone down the tube. Gets and sets that used to take 10-20ms are now taking seconds, making it significantly slower than just going straight to the datastore: http://code.google.com/p/googleappengine/issues/detail?id=6167 On 22 October 2011 18:54, Eurig Jones w

Re: [google-appengine] Re: URGENT: memcache errors out on write, the entire site is down

2011-10-25 Thread James Broberg
Sounds familiar: http://code.google.com/p/googleappengine/issues/detail?id=5790 http://code.google.com/p/googleappengine/issues/detail?id=6167 On 25 October 2011 20:16, jon wrote: > Memcache for our app is back now. > > According to the log, memcache write operations started throwing > com.goog

Re: [google-appengine] Re: URGENT: memcache errors out on write, the entire site is down

2011-10-25 Thread James Broberg
on I got is different). > However there's a common pattern whereby an app seems to be assigned a > memcache "service provider" and if this provider misbehaves the app > will be stuck with it instead of getting reassigned a new, healthy > replacement. > > On Oct 2

Re: [google-appengine] Re: New blog post about adjustments to the pricing rollout

2011-10-25 Thread James Broberg
Are premier accounts actually available for early sign-up as stated in the original message? I shot an email to appengine_premier_reque...@google.com as instructed and have heard nothing back for 4 days. Not very premier so far... On 11 September 2011 09:04, Rob Smith wrote: > This is some much n

Re: [google-appengine] Memcache put: Error setting single item

2011-11-04 Thread James Broberg
Tip: Don't depend on memcache working 100% of the time because it won't. We see outright failures and deteriorated performance from time to time. If you code with this mindset these errors can be just an annoyance rather than a catastrophic failure, On 5 November 2011 09:14, Carter wrote: > We g

Re: [google-appengine] DeadlineExceededException in warmup request

2011-11-07 Thread James Broberg
We see this every couple days... On 4 November 2011 19:28, Clement Pang wrote: > Just started happening recently, instances cannot spin up after 80s. > Sometimes it works but sometimes they are just stuck. Anybody else who > has seen this before (or is seeing it now)? > > Failed startup of contex

Re: [google-appengine] Re: What happened to the promised reliability improvement for email delivery?

2011-11-10 Thread James Broberg
SES, Dynect email, many others to choose from. On 11 November 2011 07:36, JH wrote: > I've had a lot of success with Amazon SES.  I switched when I noticed > a lot of GAE email being flagged as spam and google employees on this > very group said they really do intend to become a mass email platfo

Re: [google-appengine] Re: New Acceptable Use: Porn?

2011-11-14 Thread James Broberg
We already built one. However we don't encode on GAE obviously... Once we update our Ts and Cs to reflect the new GAE AUP we should be ready for your lascivious videos: http://www.metacdn.com/ On 15 November 2011 13:57, Brandon Wirtz wrote: > Time to start building my competitor running on Googl

Re: [google-appengine] Re: New Acceptable Use: Porn?

2011-11-15 Thread James Broberg
---Original Message- > From: google-appengine@googlegroups.com > [mailto:google-appengine@googlegroups.com] On Behalf Of James Broberg > Sent: Monday, November 14, 2011 7:43 PM > To: google-appengine@googlegroups.com > Subject: Re: [google-appengine] Re: New Acceptable Use: Porn? &g

Re: [google-appengine] Re: WTF again. Why so many GAE group posts are moved into "American-porn" group?

2011-11-22 Thread James Broberg
FYI - Premier tier comes with a free mermaid costume. You are totally missing out. On 23 November 2011 06:42, Gregory D'alesandre wrote: > Your desire for a mermaid costume is already a frequently discussed topic > internally... > Greg > > On Tue, Nov 22, 2011 at 11:36 AM, Brandon Wirtz wrote: >

Re: [google-appengine] Re: Fatal: Wrong mime-type in CSS responses

2012-01-08 Thread James Broberg
Pro-tip anyone not facing this issue, I'd advise against doing a new deployment. We weren't seeing this issue, now we are since we deployed today (Java, HR). On 9 January 2012 09:15, Amy Unruh wrote: > Mos (and others), > > The issue is being actively investigated; we'll be sure to update th

Re: [google-appengine] Stylesheet not being applied in Chome browser

2012-01-10 Thread James Broberg
A small caveat to the workaround posted on the issue: I happened to add a new css file to my application, and it is returning "Content-type: null" for the newly added css file, despite the explicit mime mapping in web.xml. However, my existing css files still have the correct mimetype. On 10 Jan

Re: [google-appengine] Minor update to Java SDK: 1.6.1.1

2012-01-11 Thread James Broberg
Great. Can the new SDK get pushed to the maven repo promptly also? Thanks, James On 12 January 2012 12:21, Ikai Lan (Google) wrote: > Hey everyone, > > There's a new version of the Java SDK available for download. You can get it > here: > > http://code.google.com/p/googleappengine/downloads/det

Re: [google-appengine] Re: Suggestions needed to implement REST for our Java App Engine back-end

2012-01-17 Thread James Broberg
Restlet is great. They have a version especially for GAE http://www.restlet.org/ On 18 January 2012 11:24, Wilson MacGyver wrote: > What sort of load time did Jersey add for you? When I last tried it, I didn't > remember it was particularly bad. > > On Jan 17, 2012, at 3:26 PM, Chris wrote: >

Re: [google-appengine] Broken css after deploys

2012-01-23 Thread James Broberg
You have probably hit this bug: http://code.google.com/p/googleappengine/issues/detail?id=6655 Make sure you have the latest SDK (1.6.1.1) which addresses this issue. On 24 January 2012 12:16, Phil McDonnell wrote: > After deploying I've noticed that sometimes our css completely breaks in a > u

Re: [google-appengine] 'Flush' Like "I'm tapping out but keep working" in Python?

2012-01-26 Thread James Broberg
Your use case is perfect for the task queue. We use a similar model: get a request then fire off a task to log some stuff to the database and jam a value in memcache if required. This way control is returned back to the user as quickly as possible. On 24 January 2012 08:07, Brandon Wirtz wrote: >

Re: [google-appengine] App Engine SDK 1.6.2 is out!

2012-01-31 Thread James Broberg
I noticed datanucleus-appengine 2.0.0-final has been released also: http://code.google.com/p/datanucleus-appengine/downloads/list Was this part of 1.6.2? If not, when will it be part of the main SDK package? On 1 February 2012 15:56, Chris Collins wrote: > Is it possible to download the blob of

Re: [google-appengine] Groundhog Day: Fatal - Wrong mime-type in CSS responses

2012-02-01 Thread James Broberg
Also please make sure it hits maven central in a timely manner. On 2 February 2012 09:47, Jeff Schnitzer wrote: > Would you be sure to doublecheck that 1.6.2.1 gets into the Eclipse > repo?  1.6.1.1 never seems to have made it.  There was something that > looked like an update to 1.6.1 but it did

Re: [google-appengine] Re: App Engine SDK 1.6.2 is out!

2012-02-02 Thread James Broberg
I think it's due right after GAE for Cobol. On 3 February 2012 10:27, Jeff Schnitzer wrote: > On Thu, Feb 2, 2012 at 2:40 PM, Bruno Antunes wrote: >> are any plans to include EJB and java EE stack in GAE?? > > You're joking, right? > > Jeff > > -- > You received this message because you are subs

Re: [google-appengine] Re: App Engine SDK 1.6.2 is out!

2012-02-02 Thread James Broberg
everything else is cool, but java EE in gae would be awesome! > > > > 2012/2/3 James Broberg >> >> I think it's due right after GAE for Cobol. >> >> On 3 February 2012 10:27, Jeff Schnitzer wrote: >> > On Thu, Feb 2, 2012 at 2:40 PM, Bruno Antunes

Re: [google-appengine] Task Queue REST API and push queues?

2012-02-04 Thread James Broberg
Sure would be great to know the queue lengths for instance... On 3 February 2012 18:22, Robert Kluin wrote: > By the way, this is something I've asked about a number of times as > well.  I'd love to be able to get the same stats presented on the > dashboard. > > Robert > > > > > > > On Fri, Feb 3

Re: [google-appengine] What is the email situation now?

2012-02-08 Thread James Broberg
Use Amazon SES and save yourself the heartache. On 9 February 2012 17:21, Robert Kluin wrote: > Yes, it frequently happens. > > > > On Wed, Feb 8, 2012 at 11:51, Kaan Soral wrote: >> Is it still the same? Are emails sent from gae marked as spam? >> Thanks in Advance >> >> -- >> You received this

Re: [google-appengine] How to handle HTTPS in development?

2012-02-12 Thread James Broberg
What you describe will work - are you on Java or Python? In Java, Filters are very effective for this task. On 13 February 2012 14:56, Kaan Soral wrote: > HTTP is great, easy to test on SDK, but https is a pain, SDK doesn't support > two IP's. > > I am thinking of building an app that will only u

Re: [google-appengine] 63% Reduction in Cold Start Time by Changing AppID

2012-03-12 Thread James Broberg
Did you check the current memory utilisation of each app when you ran the test? On 13 March 2012 08:41, Kyle Finley wrote: > Has anyone noticed a dramatic difference in Cold Start times when using > different AppIDs? > > I recently changed the AppID for a project that I'm working on and there was

Re: [google-appengine] Re: OpenID login redirect (/_ah/login_redir?) fails with 500 server errors!

2012-05-22 Thread James Broberg
Jeff, Did you try as a minimum clearing all cookies relating to your app (eg... xxx.appspot.com or whatever your custom domain happens to be), or for the nuclear approach, clearing your entire browser cache? Doing the above seems to have resolved it for us. -James On 23 May 2012 11:36, Jeff Ton

Re: [google-appengine] Re: OpenID login redirect (/_ah/login_redir?) fails with 500 server errors!

2012-05-22 Thread James Broberg
ents > > to notify Google staff and to help identify and fix the issue.. > http://code.google.com/p/googleappengine/issues/detail?id=7560 > > Best Regards, > Raj > > > On Wed, May 23, 2012 at 7:16 AM, James Broberg wrote: >> >> Jeff, >> >> Did

Re: [google-appengine] Saving sensitive data as user name and password in database

2012-06-06 Thread James Broberg
One option is to use the Google or Federated login, removing the need to store the password yourself: https://developers.google.com/appengine/docs/java/users/overview https://developers.google.com/appengine/articles/openid -james On 7 June 2012 06:37, Jessica wrote: > I am a total newbie and wan

Re: [google-appengine] Re: "Endpoints" section in the control panel?

2012-06-27 Thread James Broberg
I'd also like to know. Don't hold out on us now :) On 28 June 2012 06:45, Sam G wrote: > Bump. Any word from a Googler on what this is!? > > > On Tuesday, June 26, 2012 4:59:33 PM UTC-7, Sam G wrote: >> >> >> This section just showed up for me in the App Engine dashboard. >> I also heard Pag

Re: [google-appengine] Re: SSL support

2012-07-18 Thread James Broberg
We were happy enough to go with the SNI solution. We don't have mobile users on our web interface, and we are yet to receive a complaint from an irate Windows XP user. We detect what browser and OS a client has, and if it's not SNI friendly we show them a warning: http://imgur.com/a/Axzur As you

Re: [google-appengine] Preventing GAE edge-cache caching

2012-08-12 Thread James Broberg
Given the voodoo required to actually *enable* the GAE edge cache I would have thought it would be pretty easily to avoid it. On 10 August 2012 00:19, prem wrote: > Takashi, barryhunter, Emanuele ... Am glad I posted here, thanks for the > suggestions. > > I will have to read up more on cache-co

Re: [google-appengine] Notice: Google App Engine Conversion API to be decommissioned in November 2012

2012-08-30 Thread James Broberg
This is a bit of a bummer. I was keen to try it out to generate PDF invoices for customers On 28 August 2012 02:07, Christina Ilvento wrote: > Hi All, > > The API will be shut off in November of 2012. When we have an exact date > for the release we'll let you know. > > > Thanks, > Christina

Re: [google-appengine] Cloud-based Continuous Build Server for Google App Engine Projects

2012-09-02 Thread James Broberg
Sure, we have done this with Atlassian Bamboo and GAE/J. We run tests suites over localhost and also a GAE deployed staging environment - it's pretty straight forward. On 3 September 2012 12:46, Chris wrote: > I've been asked to setup a continuous build server for a Google App Engine > project.

Re: [google-appengine] Versions 1.7.1 and 1.7.2 in maven repository

2012-09-16 Thread James Broberg
Soon. https://github.com/maven-gae-plugin/maven-gae-plugin/pull/46 P.S. the gae-runtime plugin is not maintained by google so this is the wrong place to ask. On 17 September 2012 10:08, Rik Scarborough wrote: > Will the maven repository continue to be updated with for the appengine? > 1.7.1 w

Re: [google-appengine] Versions 1.7.1 and 1.7.2 in maven repository

2012-09-16 Thread James Broberg
It's usually pretty quick but sometimes delays can occur in one of the steps above. Each step depends on the prior one. cheers, James On 17 September 2012 10:31, Rik Scarborough wrote: > inline > On Sun, Sep 16, 2012 at 7:22 PM, James Broberg wrote: > >> Soon. > > &g

Re: [google-appengine] Re: Creating a Million dollar application

2012-10-11 Thread James Broberg
A googol amount of dollars isn't cool, you know what's cool? A googolplex amount of dollars. On 12 October 2012 04:56, Vinny P wrote: > Why stop there? Let's make it an application worth a googol amount of > dollars (for the innumerate out there, that's 1 times 10 to the 100th > power)! > > -Vin

Re: [google-appengine] Looks like appengine is down

2012-11-22 Thread James Broberg
To add insult to injury the enterprise support portal is down also. https://enterprise.google.com/customerportal/ I'm glad I pay an extra $500/m for this. On 22 November 2012 17:24, Brandon Wirtz wrote: > http://appengine.google.com/ 500s and All of our sites are down. > > ** ** > > S

[google-appengine] App Engine down?

2012-11-22 Thread James Broberg
Can't get to either of my apps, or the App Engine status page. I'd file a support via our Enterprise Support Channel but that is down too! -- 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

Re: [google-appengine] Re: 1.7.4 Pre-release SDKs Available

2012-12-10 Thread James Broberg
New maven plugin? How does it differ from: https://github.com/maven-gae-plugin/maven-gae-plugin On 11 December 2012 08:06, Ludovic Champenois wrote: > Hi, > We are pushing Maven artifacts the same day as the release, so hopefully > very very soon (tm). > You'll also notice a new Maven App Engine

Re: [google-appengine] Using AWS APIs in an application that runs in Google App Engine

2012-12-18 Thread James Broberg
This is good but hasn't been updated in a long time: https://github.com/apcj/aws-sdk-for-java-on-gae On 18 December 2012 07:35, Shilendra Sharma wrote: > Hello Prachi > > You cannot use Threads in GAE. Here is a list of things you cannot do in > GAE: > > If you want to do something asynchronously

Re: [google-appengine] Re: Amazon S3 Server on GAE (Java)

2013-05-14 Thread James Broberg
Why wouldn't you just use Google Cloud Strorage? It's integrated (more or less) with GAE. https://cloud.google.com/products/cloud-storage On 14 May 2013 20:42, xybrek wrote: > Right, that's why I expected to be the initial response. However, if you > want to run your own App Engine, you will d

Re: [google-appengine] Datastore auto ID policy change in 1.8.1

2013-06-17 Thread James Broberg
Yes, thankfully we found out about this bug on deploying to our staging environment, not production (we were still on SDK 1.7.7). To add further pain, the legacy is missing from the appengine-web.xml schema in the SDK, which means deploys will fail with the current SDK if you want to maintain lega

Re: [google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Broberg
same here. not using cloudflare at all. On 12 March 2014 08:01, Rodrigo Almeida wrote: > Same issue here. We are located in Brazil and our DNS records managed by > cloudflare. > > > On Tuesday, March 11, 2014 5:48:43 PM UTC-3, GregF wrote: >> >> We have several custom domains (e.g. www.schoolin

Re: [google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Broberg
Thanks, I also filed a critical issue on our enterprise support (for whatever that is worth...) On 12 March 2014 08:07, GregF wrote: > I've created a production issue here: > https://code.google.com/p/googleappengine/issues/detail?id=10687 - please > star! > > > On Wednesday, 12 March 2014 09:4

[google-appengine] Re: Unable to deploy due to "500 server error"

2010-11-18 Thread James Broberg
Here also. On Nov 19, 11:15 am, nickmilon wrote: > Same here > App ID: geognos > Language: python > > On Nov 19, 2:07 am, Zeynel wrote: > > > On Nov 18, 7:00 pm, Peter Warren wrote: > > > > +1 > > > I just tried and I got 500 error > > > Error 500: --- begin server output --- > > > > > > > 50

Re: [google-appengine] Re: Unable to deploy due to "500 server error"

2010-11-18 Thread James Broberg
Login / session *seems* to be ok. Still can't deploy. On 19 November 2010 11:23, Ikai Lan (Google) wrote: > We're been working on addressing the issues. > Besides deploy, is anyone seeing issues with login or receiving reports from > end users about login failures? We're seeing some indications t

Re: [google-appengine] Re: Store Image to Blobstore withou Upload FORM

2010-11-22 Thread James Broberg
I wish. That would be super handy. On 22 November 2010 22:13, Remigius wrote: > Is there a code snippet around somewhere that uploads to blobstore > using URL fetch? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this

Re: [google-appengine] Re: Using GAE for a REST API

2010-11-24 Thread James Broberg
GAE is fantastically suited for REST. I use GAE Java + Restlets + Freemarker myself. On 25 November 2010 08:41, supercobra wrote: > Hello there, > > What is your best practice to develop REST on GAE? > > Daniel > -- > superco...@gmail.com > > > > On Wed, Nov 24, 2010 at 2:36 PM, Jay wrote: > >

Re: [google-appengine] Re: Using GAE for a REST API

2010-11-30 Thread James Broberg
gt; Reddit: http://www.reddit.com/r/appengine > Twitter: http://twitter.com/app_engine > > > > On Wed, Nov 24, 2010 at 10:25 PM, James Broberg wrote: > >> GAE is fantastically suited for REST. I use GAE Java + Restlets + >> Freemarker myself. >> >> >> On 25 N

Re: [google-appengine] Real-Time Log Delivery Via XMPP

2010-12-01 Thread James Broberg
What a clever idea. I will check it out, thanks! On 2 December 2010 05:59, Stephen Johnson wrote: > I'm not sure if anyone is interested in this type of capability but I had a > use for it for my own debugging and monitoring purposes so I thought I'd > share what I came up with especially since

Re: [google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread James Broberg
Couldn't agree with Adam more. Why not use both? For MetaCDN.com we use GAE as the "web role" / front end and do the heavy lifting (large file replication, video encoding, etc) on EC2 instances around the globe on an as needed basis. On 3 December 2010 08:09, Adam Sah wrote: > I'm a *very* longt

Re: [google-appengine] Version 1.4.0 is out!

2010-12-02 Thread James Broberg
Great! What's the ETA for the SDK in Eclipse? The plugin is at 1.4.0 but the SDK bundle for Eclipse is still 1.3.8 On 3 December 2010 07:14, Ikai Lan (Google) > wrote: > Hey everyone, > > Version 1.4.0 is officially released! Documentation will go live shortly. > In the meantime, check out our b

Re: [google-appengine] Re: Always-On Cost/Billing 1.4.0?

2010-12-05 Thread James Broberg
"Change budget" gives you the option to switch it on. On 6 December 2010 06:07, Barry Hunter wrote: > Its mentioned in the blog post: > http://googleappengine.blogspot.com/2010/12/happy-holidays-from-app-engine-team-140.html > > Or on the 'billing settings' page of the appengine console as Joshua

Re: [google-appengine] Re: Using OpenID with Google App Engine and its UserService

2010-12-05 Thread James Broberg
I don't really get why you want to use OpenID if you are limiting your users to Google & Google Apps accounts? cheers James On 5 December 2010 20:54, AmaltasCoder wrote: > Ok, a bit more explanation: > > The problem with creating Login URL's like mentioned above is that > even yahoo.com etc. st

Re: [google-appengine] Re: Using OpenID with Google App Engine and its UserService

2010-12-05 Thread James Broberg
tion, which will probably also be OpenID, to use both Google > and Google Apps accounts from the same application.  Otherwise you are > restricted to either 1) only Google accounts or 2) exactly one Google > Apps domain. > > > > Robert > > > > > > > > &g

Re: [google-appengine] Re: REST web service client in gae

2010-12-21 Thread James Broberg
Restlet client *should* work also. 2010/12/22 José Miguel Bataller : > Hi Robert, > > I am going to have a look to the URL Fetch Java Api. > > Thanks for the info, > > Jose > > On Dec 20, 8:53 pm, Robert Kluin wrote: >> Hi José, >>   Yes, you can consume REST webservices using an App Engine app.

Re: [google-appengine] Re: Announcing the High Replication Datastore for App Engine

2011-01-05 Thread James Broberg
Sounds great. Would it be reasonable to expect that read latencies would be slightly better due to the datastore being more highly replicated? On 6 January 2011 10:17, Ikai Lan (Google) > wrote: > By the way, I should mention that there is no Java SDK. This is *almost* > completely a server side

Re: [google-appengine] Channel API future improvements?

2011-02-03 Thread James Broberg
Slightly OT but the roadmap could sure do with an update. A couple of those "Features on Deck" are already in the current SDK. On 4 February 2011 07:55, Ikai Lan (Google) wrote: > In general, we don't make comments on upcoming features. You are welcome to > check the roadmap for updates: > http:/

Re: [google-appengine] Channel API future improvements?

2011-02-04 Thread James Broberg
ppengine.blogspot.com > Reddit: http://www.reddit.com/r/appengine > Twitter: http://twitter.com/app_engine > > > On Thu, Feb 3, 2011 at 7:20 PM, supercobra wrote: >> >> +1 for updating the roadmap. >> >> -- superco...@gmail.com >> http://supercobrablogger.blogs

Re: [google-appengine] Re: Storage: alternatives to Blobstore

2011-02-06 Thread James Broberg
This was a nice article on storage options for GAE: http://www.ibm.com/developerworks/java/library/j-gaestorage/?ca=drs- On 7 February 2011 07:08, Ernesto Karim Oltra wrote: > I use Google Docs currently in my projects to give my clients the > control over their files: list, rename, delete, move

Re: [google-appengine] Re: What are good ways to monitor an App Engine application ?

2011-02-10 Thread James Broberg
pingdom is handy also. -James On 11 February 2011 04:55, Calvin wrote: > ereporter can send you a daily email with a list of exceptions that have > occured on the site: > http://code.google.com/appengine/articles/python/recording_exceptions_with_ereporter.html > > -- > You received this message

Re: [google-appengine] Interested in giving us your thoughts on App Engine?

2011-02-10 Thread James Broberg
I'd recommend any/all app developers to go over and have look. I don't want to get all worked up on something that hasn't happened yet but some of the price points mooted in this survey are positively eye watering. I'm happy to put my name to the feedback I left and I'd be curious to see what other

[google-appengine] Memcache problems

2011-02-11 Thread James Broberg
Hi folks, Just set up a new dev environment on Linux with an existing codebase of mine and came across an odd error I hadn't encountered before. Has anyone seen the below error? I'm fairly certain memcache is the problem, not appstats, as I get a similar "java.lang.NoSuchFieldError: alwaysUseFiel

[google-appengine] Re: Memcache problems

2011-02-13 Thread James Broberg
It was a dumb missing jar error, nothing to see here. On 11 February 2011 19:33, James Broberg wrote: > Hi folks, > > Just set up a new dev environment on Linux with an existing codebase > of mine and came across an odd error I hadn't encountered before. > > Has anyone se

Re: [google-appengine] Convert an App from MS to HR

2011-02-14 Thread James Broberg
I seem to recall in another HR migration thread one of the googlers (Ikai or Nick) mentioning they could redirect an old app-id to a new app-id upon request. On 15 February 2011 16:34, Robert Kluin wrote: > Just a note: you won't be able to reclaim the app id if you delete it. >  If you want to k

Re: [google-appengine] Re: Charging for App and custom domain

2011-03-21 Thread James Broberg
Yes, and you can check the request domain by looking at the Host request-header field. On 22 March 2011 09:09, Roberto Saccon wrote: > Just implement a billing solution, then the user can add your app via Google > Apps to his custom domain. And in case your user does not pay, you serve > differen

Re: [google-appengine] Re: email sent by GAE would be regarded as spam for some email services

2011-03-22 Thread James Broberg
SendLabs is another option: http://dyn.com/enterprise-email/sendlabs-solutions On 23 March 2011 09:57, Jamie H wrote: > Ikai, > > On that note, do you have any services besides SES that you > recommend?  SES works well with GAE however you must slowly up your > quotas, forcing you to send some m

Re: [google-appengine] Redirect from naked domain preserving full path

2011-03-30 Thread James Broberg
I noticed that too. Is this the naked domain support we have been waiting for, or some sort of workaround? On 31 March 2011 03:36, Jeff Schnitzer wrote: > I just thought I would point out that sometime within the last several > months (possibly quite a few, I don't look often) Google added the >

Re: [google-appengine] Re: Appspot URL works but Appsfordomain URL does not

2011-04-03 Thread James Broberg
Just out of interest what was the symptoms? Did the hostname not resolve, was it getting routed to appengine but service was refused, etc? On 4 April 2011 09:36, Brandon Wirtz wrote: > That's not viable long term... Jeff Probst is not going to like me sending > all of his users to JeffProbst.apps