[google-appengine] checking if datastore key exists for one small operation only

2014-03-13 Thread James Gilliam
i thought there was a way to see if a database key exists for the price of 
one small operation?

doing keyobj = Key.from_path, followed by filter( '__key__ =', keyobj ), 
followed by query.get() using key only query, you are charged one large and 
one small operation and only get the key returned.

using, get_by_key_name you are charged one large operation, receives the 
entire entity, and it takes longer than the previous.

i have concluded there is no way to check if a key exists for the price of 
a small operation.

does anybody know if there is a way to check whether a key exists for just 
one small operation?

thank you

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] alternatives to channel api?

2014-03-13 Thread aloo
Has anyone found any good realtime browser push notification service that 
works well with appengine? What are have your experiences been like?

We have ~25k simultaneously connected users so price is a concern for us. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] reuse existed master/slave datastore app name

2014-03-13 Thread Vinny P
When you use the migration tool, anyone who visits A.appspot.com will be
redirected to your HRD application at B.appspot.com. You'll need to deploy
your application and index settings to the new application ID, but the
migration tool will automatically move over your datastore entities.

See
http://stackoverflow.com/questions/11941558/deleting-a-google-app-engine-alias-app



-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com




On Mon, Mar 10, 2014 at 8:10 AM, 賣飛機  wrote:

>   I have an old app at "A. 
> appspot.com," and it is created on master/slave datastore type. I found
> that it is becoming read-only recently. Many reference data recommend me
> transfering it to HRD type. But It is like creating a new app such as "
> B.appspot.com" and alias all the requests from "A.appspot.com" to "
> B.appspot.com." So, If I migrate "A.appspot.com" to "B.appspot.com," Is
> that mean someone browses "A.appspot.com," the real website is run on "
> B.appapot.com" ? And, when I migrate A to B, could I replace all the
> website (html/css/php/...) to a new one ? (eg. the original site is
> constructed by wordpress, but I want to rebuild the website by django and
> want old user could visits new site through "A.appspot.com")
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] parse xml file stored in blobstore

2014-03-13 Thread Vinny P
On Thu, Mar 6, 2014 at 5:51 AM, user345  wrote:

> I would like to find out how to parse a xml file that has been uploaded to
> the blobstore. Below is the code that I have.
>
> Can any one recommend a solution to this? At the moment my project uploads
> the xml file and serves it through a serve.java file
>


The code you have is sufficient for uploading the XML file. If you want to
parse it, you'll need to import an XML parser, read the data into a DOM,
etc. There are a number of tutorials for this, for example this one:
http://docs.oracle.com/javase/tutorial/jaxp/dom/readingXML.html


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Glob function not working (PHP)

2014-03-13 Thread Vinny P
On Fri, Mar 7, 2014 at 4:21 PM, danpros  wrote:

> Yesterday I tried to test my app on App
> Engine, in development server all works fine but when I deploy it to App
> Engine it can not work properly, the glob function is not working.
>


You'll need to use the opendir or readdir commands, then filter out all the
.MD files yourself.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Invoking a REST service via Google App Engine

2014-03-13 Thread Vinny P
On Fri, Mar 7, 2014 at 1:20 AM,  wrote:
>
> Couple of issues I am facing :
>
>- Timeout Issue ('had to tweak the query temporarily) - Any
>alternative to increase the REST call timeout issue in URL FETCH
>- The REST call from the Google App Engine works fine Locally -in
>localhost (but it fails when I push or update the code to the Google cloud
>instance)
>   - The UI is in GAE while the REST Services are hosted on premise
>   which interact with the on-premise datastores.
>
> It would be helpful if someone can point me to any prev discussion or hany
> info in this regard.
>
>

For the timeout issue, you can call setConnectTimeout and setReadTimeout on
URLConnection objects to increase the urlfetch timeout.

For the second issue, that's more of a difficult problem; there may be
on-premise firewalls (on your side) blocking the connection. Can you try
opening up a Compute Engine machine and see if you can SSH from there into
your on-premises machines? If not, check the routes and see if the
connection is being dropped anywhere.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] DataStore Read Operations growing up

2014-03-13 Thread Vinny P
On Wed, Mar 5, 2014 at 11:35 AM, Carlos Montero Padilla <
carlos.monteropadi...@gmail.com> wrote:

> I have a web application in App engine with Java and a Datastore with
> information that need the web app. When received a request page the rate of
> Datastore Read Operations resource grow up 6%. If the limit is 0.05 Millons
> Op, the 6% are 3000 read operations, but my app only access to 20 different
> enttity objects in 3 different querys.
>
>
>
> I don't understand why I have this rate grow up in DataStore Read
> Operations. I use JDO in my app. Does anyone know why this happens?
>



It's difficult to state why exactly without any source code, but if I were
you, I'd install AppStats (
https://developers.google.com/appengine/docs/java/tools/appstats ) and
review the datastore calls being made. There may be some calls that you can
prune out.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] application delete

2014-03-13 Thread Vinny P
On Sun, Mar 9, 2014 at 1:33 AM, michelbenay  wrote:

> I deleted an application
> actualy disappeared in dashbord but application Id already in use!!!
> when i try to create  with this 'old' name
>


This is intended; you can't reuse an application ID that has previously
been deleted. You'll have to create an application ID with a new name.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] App Engine Database

2014-03-13 Thread Vinny P
On Fri, Mar 7, 2014 at 2:01 PM, Austin Deuerling 
 wrote:

> I was recently contacted to develop an app that would poll questions off
> of a database stored outside the app.  I was pointed here and told this
> would be the easiest way to store and poll from a database, but I am lost
> on where to begin, can someone help with this issue?
>



When you say "off of a database", does this database already exist, or are
you creating a new one? If this database already exists, is it stored on
Google servers, such as Cloud SQL, Cloud Datastore, or a Compute Engine
machine?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] The API call mail.Send() was explicitly cancelled.

2014-03-13 Thread Vinny P
On Wed, Mar 5, 2014 at 1:27 AM, Jai Gupta  wrote:

> While sending emails from Google app engine to Salesforce, I am receiving
> "The API call mail.Send() was explicitly cancelled." error message.
> However, I am using "Task queues" so in next retries this error gets
> resolved. But I am just curious to know why these errors occur and what if
> it crosses the number of retries and fail to process.
>
>

Occasionally these errors occur; there's no need to worry about them as
long as they're rarely occurring. Usually they're due to transient issues
within the mail infrastructure.

If you want to try a different approach, use the SendGrid integration to
send your emails:
http://googlecloudplatform.blogspot.com/2013/07/sendgrid-gives-app-engine-developers.html.
You may find it a bit easier to resolve errors.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] https://appengine.google.com is DOWN? Error 500

2014-03-13 Thread Vinny P
On Tue, Mar 4, 2014 at 11:34 AM, Gerardo Lopez 
 wrote:

> Hello, I was tried upload my app to google engine, but I have the problem
> that I want to access the https://appengine.google.com , but  i found the
> following message:
>
> Server error 500.
>
> Can you help me, please?
>


Hi Gerardo,

I see you sent this email almost 9 days ago, are you still experiencing
difficulties?

If you are, can you try logging out of all Google accounts, then logging
back in with only the Google account connected to your App Engine app ID?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] email dump

2014-03-13 Thread Vinny P
On Sun, Mar 2, 2014 at 9:55 AM, Josh Stratton 
 wrote:

> Is there an API call to get a dump of the current user's email or even for
> admins to get dumps for other users' emails?
>


Not directly via App Engine, but you could always use the Apps Scripts
service ( https://developers.google.com/apps-script/reference/gmail/ ) to
retrieve emails from your Apps users.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] How to do Normalization in Cloud Sql

2014-03-13 Thread Vinny P
On Mon, Mar 3, 2014 at 1:39 AM, anupam srivastava 
 wrote:

> Pls share the data who has worked Normalization in Cloud sql and let us
> know are there any limitations.
>


Cloud SQL is a hosted MySQL instance, so you can use any of the
normalization tutorials for MySQL (or even SQL in general) and apply it to
Cloud SQL. Here's a good introduction to the topic:
http://stackoverflow.com/questions/9321399/normalizing-mysql-data


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: question on performance and storing non-indexed data in the datastore

2014-03-13 Thread Chad Vincent
You didn't say which language you're using, but if you're on Java, I 
strongly suggest Objectify.

It defaults all columns/fields to unindexed unless you decorate the field 
with an @Index annotation.

On Wednesday, March 5, 2014 2:55:12 AM UTC-6, Mattan Furst wrote:
>
> I have a question regarding performance and saving non-indexed data in the 
> datastore.
>
> I have a situation where I have an entity with several tidbits of 
> information that I need to save (currently around 20-30 columns each with a 
> few bytes of information worth). Most of those tidbits do not require 
> indexing. It used to be that I would save every piece of information in a 
> different indexed column. After reading up on the subjects I came to 
> realize that I can save costs and performance by not having all the pieces 
> of information in indexed column. I have 3 main options I consider changing 
> into:
> 1. Keep saving the various column I don't need indexing for but turn their 
> type to ByteString to keep them from being indexed.
> 2. Get all the tidbits of information, turns them into some common format 
> like json or xml and store that in a single blob column.
> 3. Same thing as 2 but before storing the blob compress it using some fast 
> and common compression algorithm like.
>
> Which is the better option?
> What are the considerations I need to make as far as write read costs or 
> cpu time?
> Can you direct me to reading material on the subject (performance and data 
> storage) specifically tuned to google's datastore?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Glob function not working (PHP)

2014-03-13 Thread Mars Lan
It's a known issue. Please 
star https://code.google.com/p/googleappengine/issues/detail?id=10623

On Thursday, March 13, 2014 10:40:43 AM UTC-7, Vinny P wrote:
>
> On Fri, Mar 7, 2014 at 4:21 PM, danpros >
>  wrote:
>
>> Yesterday I tried to test my app on App 
>> Engine, in development server all works fine but when I deploy it to App 
>> Engine it can not work properly, the glob function is not working.
>>
>  
>
> You'll need to use the opendir or readdir commands, then filter out all 
> the .MD files yourself.
>  
>  
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Help - more than 100 URLMap entries

2014-03-13 Thread Vinny P
On Fri, Feb 28, 2014 at 4:50 PM, M. Hossein Amerkashi 
 wrote:

> I was using appengine-java-sdk-1.7.2 to deploy my application and all was
> going fine.
> Now, I have to upgrade to java. So I believe I have made the switch.
> However, when I try to upload, it prevents me from deployment because I get
> this message:
> *   Java 6 applications are prevented from being deployed to Google App
> Engine from any version of the SDK, including older ones*
>
> Then I switch to any version higher than +appengine-java-sdk-1.7.4 and I
> get:
> *   Found more than 100 URLMap entries in application configuration*
>
> Is there anyway to change this default of 100?
>



If this is a regression from Java 7, you could always request whitelisting
of your Java 6 app using this form: http://goo.gl/ycffXq

If you don't want to do that, then the best way would be to look at the URL
paths and see if there's a way to consolidate multiple URL path entries
into fewer entries: for an example, see this SO post:
http://stackoverflow.com/questions/11298401/google-app-engine-100-urlmap-entries-limitation

If you can't do any consolidation, you can configure a ServletFilter class
to interpret incoming requests and hand them off to the appropriate
servlets. This should be avoided if possible though, since it can add
additional latency to requests.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] question on performance and storing non-indexed data in the datastore

2014-03-13 Thread Vinny P
On Wed, Mar 5, 2014 at 2:55 AM, Mattan Furst  wrote:

> I have a situation where I have an entity with several tidbits of
> information that I need to save (currently around 20-30 columns each with a
> few bytes of information worth). Most of those tidbits do not require
> indexing. It used to be that I would save every piece of information in a
> different indexed column. After reading up on the subjects I came to
> realize that I can save costs and performance by not having all the pieces
> of information in indexed column. I have 3 main options I consider changing
> into:
> 1. Keep saving the various column I don't need indexing for but turn their
> type to ByteString to keep them from being indexed.
> 2. Get all the tidbits of information, turns them into some common format
> like json or xml and store that in a single blob column.
> 3. Same thing as 2 but before storing the blob compress it using some fast
> and common compression algorithm like.
>
> Which is the better option?
>
>

As Chad noted, it depends on your runtime and whether you're using the low
level API or some sort of abstraction layer. If you're using the low level
API, there's a way to set certain properties as unindexed (you don't need
to do any conversion). This way is probably the easiest and fastest way.

You can also convert to JSON or XML, but that involves a lot more work
(writing a conversion script, testing, etc). It's much more straightforward
to simply set the columns as unindexed.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] App engine not request https

2014-03-13 Thread Vinny P
Hi Geraldo,

When you do attempt to make a HTTPS request, is there an error popping up?
If so, can you supply the error message?

If you don't see any error message, can you describe what happens when the
HTTPS request is attempted?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com




On Thu, Mar 6, 2014 at 5:22 PM, Geraldo Cerqueira Silva <
geraldo.cerqueir...@gmail.com> wrote:

> I cant make request using https.
> I have tried use urllib, urllib2, urllib3, requests e fetch, but nothing
> works.
>
> Please help me
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Can't connect to https url from app engine?

2014-03-13 Thread Vinny P
On Sun, Mar 2, 2014 at 10:54 AM,  wrote:

> I can't seem to connect to a url from app engine. The url looks like:
>
> https://myexamplesite.com:8443/echo?timestamp=now
>
> app engine always times out. But I can hit this same url with any browser
> just fine. The ssl cert is a trusted cert from godaddy. Also, if I change
> from https to http, then app engine can connect just fine too
>

Hi,

I see you posted this message quite a few days ago; are you still
encountering issues with this?

If so, can you make a HTTPS request to any other site (NOT myexamplesite.com)
from your App Engine application and if so, does it succeed?

-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: urlfetch DeadlineExceededError

2014-03-13 Thread Vinny P
Hi Stanislau,

There are some services that rate limit requests from hosted platforms
(Google Cloud, AWS, Azure, etc). I don't know if longurl.org does this, but
it wouldn't surprise me.

It looks like longurl is a service to expand URLs; if you need this
functionality, what you could do is a workaround: urlfetch to the "short"
url, follow any redirects, and return the last URL you come to.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com




On Sat, Mar 1, 2014 at 5:24 PM, Stanislau Charniakou <
stas.chernia...@gmail.com> wrote:

> Having DeadlineExceededError on GAE for url http://api.longurl.org/v2/
>
> Appears to be the same thing, as it works fine on dev server and in the
> browser. Suggested workaround with IP didn't help, it's neither available
> by IP from GAE.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Google developers console

2014-03-13 Thread Vinny P
On Wed, Mar 5, 2014 at 5:33 PM, Heikki Liukkonen 
 wrote:

> I've deleted apps from the new cloud 
> panel and
> it said that those will be deleted after 7 days.
> It is already *10* days pass, but deletions are still pending.
>


Hi Heikki,

You said you deleted apps from the new cloud panel; can you try going to
the original App Engine console at appspot.com and see if the applications
are listed as deleted there? If not, can you try deleting again?

-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Help deleting or editing app on an account I can't get into

2014-03-13 Thread Vinny P
On Tue, Mar 11, 2014 at 8:03 PM, Ozzy Pyro  wrote:

> I made an app oh probably 4+ years ago by now, and now I want it gone or
> for the address it is at to redirect to a new page. I made a new one now
> that I have a better understanding of HTML. The app I want removed or for
> the address to redirect is located at ozzy-new-playground.appspot.com and
> I have tried going through all my accounts but it was hiding on none of
> them. So the only account it could be on is one I can't get into anymore, I
> don't have that phone number anymore and I can't recall enough account info
> since it was so long go and I was like 13 :/ and ideas or suggestions??
>


If you absolutely must get the application down, you can file an issue
here:
https://code.google.com/p/googleappengine/issues/entry?template=Production%20issue

But before you do that, consider this: there's no particular reason to shut
the site down. This looks like a simple proxy, it doesn't look particularly
dangerous or annoying. And you might find yourself wanting to look back on
the work your 13-year-old self did :-)


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] How to remove Error in creating new application on google app engine launcher

2014-03-13 Thread Vinny P
On Thu, Mar 6, 2014 at 4:20 AM, Jitendra Kumar  wrote:

> How to remove Error in creating new application on google app engine
> launcher
>


This sounds like a problem with your local machine: if you look into the
source code of the launcher at
http://google-appengine-wx-launcher.googlecode.com/svn-history/r2/trunk/launcher/addnew_controller.pyit
looks like this message only pops up if a generic OS error occurs.

Can you try logging into your PC's admin account and trying again?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Adding domain to google app engine

2014-03-13 Thread Jason Collins
Nope - that's the way it works.

Crazy, eh?

j

On Sunday, 9 March 2014 19:18:51 UTC-6, Matthew Cohen wrote:
>
> I'm writing a little app on Google App Engine.  I would like to point a 
> domain I own to this application.  I have owned the domain for years and 
> it's been parked on another host.
>
> I think I am missing something,though.
>
> When I go to add the domain to my google app engine account, it forces me 
> to create a Google Apps account?  As in gmail, google drive, etc?  A bunch 
> of stuff I already have and don't need another one.
>
> I dont know if I've done something wrong or I'm not understanding, but I 
> don't see why it's forcing me to create a Google Apps account when all I 
> want to do is point a domain I already own to my Google App Engine 
> application.
>
> If I'm doing something incorrect, please let me know.  If not, what is the 
> reason for forcing me to create a Google Apps account when I am not 
> interested in getting another gmail or google drive account?
>
> It feels like this should be a simple process and I am just missing 
> something completely obvious.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Google App Engine / Cloud Storage Uploads for php broken in 1.9.0?

2014-03-13 Thread Andrew Jessup
Hi David - this is a known issue, we expect to get it addressed ASAP.
https://code.google.com/p/googleappengine/issues/detail?id=10634

And you're quite right - a bug like this should never make it to
production.

Right now we're auditing exactly how an issue like was able to be shipped,
and updating our pre-release testing framework includes checks for
regressions like this.


On Wed, Feb 26, 2014 at 12:55 PM, David Tyler wrote:

> Has anyone else noticed a problem uploading files to GCS using the php
> libraries in 1.9.0?
>
> My production app has been on 1.8.9 for weeks, and today was automatically
> upgraded to 1.9.0.
>
> Ever since, I get a php error coming from Google's runtime:
>
> strpos(): Empty needle
> /base/data/home/runtimes/php/sdk/google/appengine/ext/cloud_storage_streams/CloudStorageStreamWrapper.php
> line 168
>
> I found a stack overflow post, looks like someone using the 1.9.0 beta had
> this problem earlier this month:
>
> http://stackoverflow.com/questions/21545873/google-cloud-storage-error-on-upload-strpos-empty-needle
>
> Is there any official word on this bug or release?
> Seems really odd to me that this slipped through and was automatically
> pushed to production apps.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/d/optout.
>



-- 

Andrew Jessup | Product Manager, Google Cloud Platform | jes...@google.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Custom domains stopped to work

2014-03-13 Thread James Foster
FYI, I've put in a feature request for Custom Domains to be shown on the 
System Status page:
https://code.google.com/p/googleappengine/issues/detail?id=10699

On Wednesday, March 12, 2014 7:40:24 AM UTC+11, Tomas Adamek wrote:
>
> Hi there
>
> it seems like that today all my custom domain configured in my google apps 
> account stopped to forward the traffic to app engine applications. All 
> custom domains directs to google.com page now (or display 404 if I use 
> custom.domain/some-path/
>
> The standard appspot url's works fine, ie:
>
> http://cover.librarist.com/9780007489978.jpg
> http://cover-librarist-com.appspot.com/9780007489978.jpg
>
> Does anyone have similar issue?
>
> Cheers
>
> Tomas
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


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

2014-03-13 Thread James Foster
FYI, I've put in a feature request for Custom Domains to be shown on the 
System Status page:
https://code.google.com/p/googleappengine/issues/detail?id=10699


On Wednesday, March 12, 2014 12:20:46 PM UTC+11, GregF wrote:
>
> The problem was resolved for us about 12:30 NZ time. We had about 4 hours 
> outage. +1 for a post-mortem.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] default bucket name in GCS

2014-03-13 Thread Amy Unruh
There is indeed a default auto-created bucket, with bucket name "
your-app.appspot.com", that is getting rolled out and backfilled to
existing apps and their associated projects.  Not all projects may have it
yet.  If the 5GB quota is sufficient for your needs, you ought to be able
to just start using it as you would any bucket.

Go to the Application Settings page for the app engine app you want to use
that bucket with, and grab the app's service account address.
Then go to the cloud console (cloud.google.com/console) and make sure that
service account is listed in the Permissions page of the project that
includes this default bucket, with 'edit' permissions.


On 13 March 2014 08:05, Stefano Ciccarelli  wrote:

> I have the same problem, the default bucket I created is billed by the
> Cloud Platform Console and seems to not belong to GAE.
>
> Il mercoledì 12 marzo 2014, GAEfan  ha scritto:
>
> I migrated an older legacy app from blobstore to GCS, using these
>> instructions:
>>
>> https://developers.google.com/appengine/docs/python/googlestorage/
>>
>> So, I added a bucket using the GCS Developer Console.  What was not
>> properly explained is that, by following these instructions, you are not
>> using the free (5GB quota) default bucket, but a billable bucket.
>>
>> Is there a way to make the new bucket I created the default bucket, to
>> fall within the free quota?
>>
>> Or, must I now go through the App Engine > Application Settings console
>> to "Create a Google Cloud project as well as a Google Cloud Storage
>> bucket for this application.", thereby getting the free default bucket, and
>> then migrate everything over (again)?
>>
>> Thank you.
>>
>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-appengine+unsubscr...@googlegroups.com.
>> To post to this group, send email to google-appengine@googlegroups.com.
>> Visit this group at http://groups.google.com/group/google-appengine.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> Nel mondo esistono 10 categorie di persone, quelle che capiscono il
> binario e quelle che non lo capiscono.
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] sample codes from developers.google.com are just too out dated!!!!!

2014-03-13 Thread Vinny P
On Thu, Mar 6, 2014 at 6:50 AM, 이백년  wrote:

> Currently I am studying about Google EndPoints and I am about to give up
> using App Engine.  I am so frustrated with guides with sample source.
>


Is there a specific issue with Endpoints you're having difficulty with?
Which Google tutorial are you using? Try using this tutorial:
https://cloud.google.com/developers/articles/how-to-build-mobile-app-with-app-engine-backend-tutorial



On Thu, Mar 6, 2014 at 6:50 AM, 이백년  wrote:

> it ask me to use Android Studio to get proper EndPoint library for the
> client.
>


I'm unclear on why you need to use Android Studio. Yes, Studio is good for
writing Android apps, but you can also generate Endpoint libraries from
within Eclipse, as well as write mobile apps.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] default bucket name in GCS

2014-03-13 Thread Vinny P
On Wed, Mar 12, 2014 at 10:48 AM, GAEfan  wrote:

> Is there a way to make the new bucket I created the default bucket, to
> fall within the free quota?
>
> Or, must I now go through the App Engine > Application Settings console to
> "Create a Google Cloud project as well as a Google Cloud Storage bucket
> for this application.", thereby getting the free default bucket, and then
> migrate everything over (again)?
>


The default bucket should exist for most (but not all) applications,
provided that the App Engine ID is integrated into a cloud project.

If you'd like to test whether or not there's a default bucket ready to go,
you can use your application's runtime to test for the name of the bucket:
Go has DefaultBucketName (
https://godoc.org/code.google.com/p/appengine-go/appengine/file ), Java has
getDefaultGcsBucketName (
https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/appidentity/AppIdentityService)
and PHP/Python have equivalents in the App Identity service.



-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Securing JSESSIONID

2014-03-13 Thread Vinny P
On Thu, Feb 27, 2014 at 12:48 AM, CK Yap  wrote:

> Does anyone know how to secure the JSESSIONID by adding SECURE and
> HTTP-ONLY  to the JSESSIONID cookie for Java GAE please?
>



Hi CK,

My understanding is that setting a cookie to HTTPS-only is an option
offered in the Servlet 3.0 spec, and App Engine is currently on the Servlet
2.x standard:
https://code.google.com/p/googleappengine/issues/detail?id=3091


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] API config update request failed, unable to reach API server.

2014-03-13 Thread Vinny P
On Wed, Mar 12, 2014 at 8:10 AM, Валерий Гайдай  wrote:

> Hi. I constantly receive such admin logs when deploying applications to
> google app engine. Also I receive these logs in console
> java.lang.RuntimeException: Endpoints configuration not updated.
> Unable to update app: Endpoints configuration not updated.
> Please see the logs
> [C:\Users\E8CA~1\AppData\Local\Temp\appcfg7560752339754110905.log] for
> further i
> nformation.
>



What does the logs page say (the appcfg7560752339754110905.log file)?



-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


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

2014-03-13 Thread Vinny P
On Wed, Mar 12, 2014 at 10:09 AM, arun eswara 
 wrote:

> When i Try to deploy, i get
>
> 2014-03-12 10:08:23 Running command: "['C:\\Python2.7\\python.exe', '-u',
> 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py',
> '--no_cookies', u'--email=arun1is1c...@gmail.com', '--passin', '--server=
> maketaketest.appspot.com', 'update',
> 'C:\\Users\\Arun.Seenu-PC\\Desktop\\appinventordb']"
> Error 500: --- begin server output ---
> 500 Server Error
>
>

Hi Arun,

Most of the time, these types of deployment errors are transient - you
should be able to deploy sooner or later. If this error persists though,
can you try remaking a new App Engine ID and attempt to deploy to it?



-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Google Apps Marketplace SDK - error appears when trying to select icon

2014-03-13 Thread Vinny P
On Wed, Feb 26, 2014 at 10:00 AM, Kaspars Upmanis 
 wrote:

> I was trying to create an app in the console and wanted to use the Google
> Apps Marketplace SDK service for it. When I tried to upload icons for my
> app, after pressing "select" button a popup appears and says "Invalid
> credentials (missing or invalid oAuth token)". How should I fix this error?
>



Hi Kaspars,

I see you originally posted this message a few days ago. Are you still
encountering this error?

I believe this error was fixed a few days ago - it's due to an incorrect
display from the console.



-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] GAE/J Problem persisting updated jpa entities

2014-03-13 Thread Vinny P
On Sun, Mar 9, 2014 at 12:58 AM, Jeremy Craney  wrote:

> Is anyone else experiencing some trouble when trying to persist or merge
> an updated entity back into the datastore using the cloud endpoint update
> method? Inserting a new entity works fine but when I try to update an
> entity though the gpe generated cloud endpoint update method, the entity
> doesn't update and then the manager goes null. When the close method gets
> called on the entity manager, I get a null pointer exception.
>
> http://stackoverflow.com/questions/22215640/cloud-endpoints-update-method-crashes-at-mgr-close
>


After the *mgr.merge(party)* line, can you test the mgr object to see if it
has a value (i.e. whether or not it is null)?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Problems Deploying App - 500 Internal server Error

2014-03-13 Thread Vinny P
On Tue, Mar 4, 2014 at 12:27 AM,  wrote:

> i got an error while deploying the project to google app engine as
>
> Error: Server Error
> where on eclipse it says deployment successfully.
> please give me solution
>
>

The deployment was successful, but the application itself is running into
an error (not related to the deployment). Can you check the App Engine
application logs and see if any errors are recorded there? If so, can you
post the error text here?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Spring Hibernate Configuration for Google Cloud SQL (to deploy in GAE)

2014-03-13 Thread Vinny P
On Thu, Mar 6, 2014 at 6:02 AM, Sarika S  wrote:

> I have a web application created with spring, hibernate, maven and using
> google cloud sql. I cannt successfully deploy it in google app engine. Can
> anyone help me.
> What is the correct spring datasource bean settings for connecting to
> cloud sql?
>



Before deploying the application to production App Engine, have you tried
deploying it within the development App Engine environment? If so, how are
you currently configuring it to work in dev?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: When moving between HTTP and HTTPS, how to share authentication cookies (ACSID, SACSID)?

2014-03-13 Thread Vinny P
On Thu, Feb 27, 2014 at 1:06 AM, roshan  wrote:

> Can anyone throw some light on this matter please? I am struggling to know
> its answer too today.
>
> On Friday, 24 August 2012 10:58:22 UTC+5:30, Ben Alpert wrote:
>
>> Is there a way I can configure App Engine to honor the SACSID cookie over
>> HTTP or some way to transfer the cookie between the two? (The cookies don't
>> use the same value; simply copying the cookie appears not to work.)
>>
>

There's no way to do this. SACSID cookies are only sent over a secure
connection - they won't be supplied over the unsecure HTTP connection. And
you can't clone the SACSID cookie into ACSID.

The best fix would be to keep your entire website as HTTPS, and force HTTPS
if the current browser is using HTTP


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Help! App Custom Domains Failing - Site is down.

2014-03-13 Thread Vinny P
On Tue, Mar 11, 2014 at 3:49 PM, Jay Kyburz  wrote:

> Just got up to discover that my custom domains are not working this
> morning. My site is effectively down.
> When visiting my apps on their custom domain they all are simply
> redirected to the google search page.
>
> (I can still access the site via the appspot url, but my users don't know
> it. )
>
> http:triton.ironhelmet.com
> I don't remember what the settings should look like in Application
> Settings, but there is no reference to my domain under the Domain Setup sub
> heading.
>
>

Hi Jay,

I see you posted this message a few days ago. Are you still experiencing
issues? I tried the link you provided from a number of different machines
on different networks, and they all resolved to the correct address.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] getObjectByID ended abruptly...no exception; nothing

2014-03-13 Thread Vinny P
On Mon, Mar 10, 2014 at 2:40 PM,  wrote:

> I have a method (see screenshot) which invokes getObjectById() method from
> the Transaction Manager.
> I put the code on debug mode and noticed that immediately after invoking
> the getObjectById method, it jumps to the finally statement.  There was no
> exception or error reported.
>


So to clarify, you're not seeing the *story=target* line executed? Can you
inspect the contents of *story* and check its value?


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.