Re: [google-appengine] Question about VIP SSL

2012-07-06 Thread 拼客爱
>
>
> Account Administrator Invitation
>
> Invalid Entry
> Account owners cannot be assigned as an Account Administrator. Please
> create a new account and try accepting your invite using your new account.
>
>

what's mean??why i can't create a new account with administrator for here.


1 - 1
Domain NamePlatformStatusAccount AdminDisk SizeBandwidth
iphones-on.com
LinuxPending Setup
No
10,000 MBUnlimited







> On Thursday, July 5, 2012 7:58:03 PM UTC-7, Iain Wade wrote:
>>
>> On Fri, Jul 6, 2012 at 10:14 AM, johnP  wrote:
>> > We are using a CName aliased to  ghs.google.com
>>
>> just to be clear, ghs.google.com is not the VIP CNAME - it is the
>> shared CNAME which only supports SNI.
>>
>> VIP CNAMEs are of the form: ghs-svc-https-c.ghs-ssl.**
>> googlehosted.com .
>>
>> the two services have different network architectures.
>>
>> > The expiration time on the record is 15 minutes.
>> >
>> > The naked-domain was an error introduced in my wording of the question.
>>  The
>> > user (from two locations, from school and from home, in West Virginia)
>> is
>> > properly using the www subdomain in the request. In any case, we
>> forward the
>> > naked domains at a DNS level.
>> >
>> > We initiated SSL on Monday night/Tuesday morning.  There was a flurry
>> of
>> > users from that same area in West Virginia having this issue.  We have
>> no
>> > reports of other users having the issue.  So I was thinking there might
>> be
>> > an ISP that has not refreshed the DNS cache.
>>
>> Is it possible that your users are using web browsers which do not
>> support SNI? (for example MSIE on Windows XP).
>>
>> If you're paying for a VIP, you will have better compatibility if you
>> use your personal 
>> ghs-svc-https-c.ghs-ssl.**googlehosted.comCNAME
>> shown in the CPanel.
>>
>> --Iain
>>
>> > johnP
>> >
>> >
>> >
>> > On Thursday, July 5, 2012 4:58:42 PM UTC-7, Cayden Meyer wrote:
>> >>
>> >> Hi John,
>> >>
>> >>
>> >> On 6 July 2012 05:33, johnP  wrote:
>> >>>
>> >>> Question:
>> >>>
>> >>> a.  Am I correct in understanding that httpS://foo.com will always
>> >>> resolve to one IP Address?
>> >>
>> >>
>> >> When you have a VIP it will often resolve to the one IP Address
>> however at
>> >> this point we do not guarantee the IP address will remain unchanged.
>> As such
>> >> we strongly recommend using the CNAME we provide.
>> >>
>> >> I would recommend using the naked domain redirection provide by Google
>> >> Apps if you wish to use naked domains.
>> >>
>> >>>
>> >>> b.  Does that mean that http://foo.com  will also resolve to that
>> same IP
>> >>> Address?
>> >>
>> >>
>> >> Both HTTPS and HTTP will resolve to the same DNS record, in short yes.
>> >>
>> >>>
>> >>> c.  Is it possible that customers may have  IP_orig DNS cached, and
>> the
>> >>> cache has not updated recently (due to power outages on the East
>> Coast, for
>> >>> example), so httpS is trying to resolve to the old IP and failing?
>> >>
>> >>
>> >> Our infrastructure is designed so that traffic will be routed through
>> the
>> >> nearest possible data center to where your application is serving.
>> Your
>> >> application will fail over to a different data center if there are any
>> >> issues with the data center you are currently serving out of. What
>> this
>> >> means is that the situation you are talking about should not happen if
>> you
>> >> are using the CNAME we provide nor should a power outage in one of our
>> data
>> >> centers cause your application to be unreachable.
>> >>
>> >> If you use an A record instead and the IP changes for some reason then
>> >> this would be an issue, this is why we strongly recommend you do not
>> use an
>> >> A record.
>> >>
>> >> Cheers,
>> >>
>> >> Cayden Meyer
>> >> Product Manager, Google App Engine
>> >>
>> > --
>> > 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-appengine/-/**tbl2XTSkvyUJ.
>>
>> >
>> > To post to this group, send email to google-appengine@googlegroups.**
>> com .
>> > To unsubscribe from this group, send email to
>> > google-appengine+unsubscribe@**googlegroups.com.
>>
>> > For more options, visit this group at
>> > http://groups.google.com/**group/google-appengine?hl=en.
>>
>>
>  --
> 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-appengine/-/ndC4lnQNUSwJ.
>
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send

[google-appengine] Re: Memcache errors break session-saving. Should fail silently IMO. Any workaround?

2012-07-06 Thread Joakim
If silent failure on write is to be acceptable, we need a way to make sure 
following requests do not read session from memcache, as it could return an 
old value. I am unaware of any way to accomplish this reliably without 
hitting the datastore, at which point you might as well not have the 
session in memcache at all.

One possible alternative is to replace the entire session with storing 
encrypted data in a cookie, though this only works for smaller amounts of 
data as the maximum size for an entire cookie is generally said to be 4095 
bytes.

Just my 2 cents.
Joakim

On Wednesday, July 4, 2012 11:38:34 PM UTC+2, Per wrote:
>
>
> When using sessions, these are (also) stored in memcache  by GAE. 
> Unfortunately, it seems like any memcache hiccup can crash the process, 
> turning an otherwise fine page into a 500 page on the way out.
>
> To me that looks like a design flaw. After all, Memcache is optional, and 
> its expected to be unavailable or breaking every now and then. As of 1.6 
> you can even provide a policy to silently ignore memcache errors inside 
> your application. We're using 
> setErrorHandler(ErrorHandlers.getConsistentLogAndContinue(Level.SEVERE)) 
> with Objectify just fine, but it doesn't seem to have any effect on the 
> Session-Save process. This seems to be entirely outside our control. 
>
> These errors are really annoying some of our clients. Is there maybe some 
> kind of other error handler I'm missing?
>
> Here's the stracktrace for reference:
>
>
> com.google.appengine.api.memcache.MemcacheServiceException: Memcache put: 
> Error setting single item (_ahsOH7nik8bCRTbIXblKurKQQ)
>   at 
> com.google.appengine.api.memcache.AsyncMemcacheServiceImpl$7.transform(AsyncMemcacheServiceImpl.java:426)
>   at 
> com.google.appengine.api.memcache.AsyncMemcacheServiceImpl$7.transform(AsyncMemcacheServiceImpl.java:418)
>   at 
> com.google.appengine.api.memcache.MemcacheServiceApiHelper$RpcResponseHandler.convertResponse(MemcacheServiceApiHelper.java:60)
>   at 
> com.google.appengine.api.memcache.MemcacheServiceApiHelper$1.wrap(MemcacheServiceApiHelper.java:112)
>   at 
> com.google.appengine.api.memcache.MemcacheServiceApiHelper$1.wrap(MemcacheServiceApiHelper.java:105)
>   at 
> com.google.appengine.api.utils.FutureWrapper.wrapAndCache(FutureWrapper.java:57)
>   at 
> com.google.appengine.api.utils.FutureWrapper.get(FutureWrapper.java:98)
>   at 
> com.google.appengine.api.utils.FutureWrapper.get(FutureWrapper.java:90)
>   at 
> com.google.appengine.api.memcache.MemcacheServiceImpl.quietGet(MemcacheServiceImpl.java:28)
>   at 
> com.google.appengine.api.memcache.MemcacheServiceImpl.put(MemcacheServiceImpl.java:81)
>   at 
> com.google.apphosting.runtime.jetty.MemcacheSessionStore.saveSession(MemcacheSessionStore.java:39)
>   at 
> com.google.apphosting.runtime.jetty.SessionManager$AppEngineSession.save(SessionManager.java:164)
>   at 
> com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:41)
>   at 
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>   at 
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
>   at 
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>   at 
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
>   at 
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>   at 
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
>   at 
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
>   at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
>   at 
> com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:249)
>   at 
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>   at org.mortbay.jetty.Server.handle(Server.java:326)
>   at 
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
>   at 
> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:923)
>   at 
> com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequestParser.java:76)
>   at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
>   at 
> com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceRequest(JettyServletEngineAdapter.java:135)
>   at 
> com.google.apphosting.runtime.JavaRuntime$RequestRunnable.run(JavaRuntime.java:477)
>   at 
> com.google.tracing.TraceContext$TraceContextRunnable.runInContext(TraceContext.java:449)
>   at 
> com.google.tracing.TraceContext$TraceContextRunnable$1.run(TraceContext.java:455)
>   at com.google.tracing.TraceContext.runInContext(TraceContext.java:695)
>   at 
> com.google.tracing.TraceContext$AbstractTraceCo

[google-appengine] Mache: easy way to do log analysis by migrating appengine logs to BigQuery

2012-07-06 Thread aloo
Hi all,

We've built a small framework for moving logs from appengine to BigQuery so 
that you can do more powerful log analysis. The 
curernt implementation works for java appengine users. You can write custom 
extractors to pull out any arbitrary data you want from log entries into 
structured fields in BigQuery.

We'd love any feedback you have!

http://blog.streak.com/2012/07/export-your-google-app-engine-logs-to.html


-- 
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-appengine/-/FN2MqDVFyEQJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Where do redirect URIs get set?

2012-07-06 Thread Huperniketes
I've registered, uploaded and deployed the Google Drive sample java app to 
App Engine. But nowhere have I found a place to set a redirect URI, nor any 
setting indicating it's a redirect URI.

When I run my app, I get the following error: 

Error: redirect_uri_mismatch

The redirect URI in the request: http://xxx.appspot.com did not match a 
registered redirect URI

Where can I find and set the redirect URI, so I can find the next obstacle 
to getting my App Engine app to work?

Many thanks in advance,
H!


-- 
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-appengine/-/bz1foH8YlqkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] My Google APIs Console doesn't match what the docs & tutorials claim

2012-07-06 Thread Huperniketes
I perform a page search for "redirect" on every tab in the console, but it 
never appears.

I've got the java DrEdit uploaded to my App Engine instance, and at 
xxx.appspot.com/index.jsp it displays an empty text field with the Google 
Drive buttons "New", "Open", "Edit" and "Save", but if I try to authorize 
it to access my account at the xxx.appspot.com URL, it returns with 400: Error: 
redirect_uri_mismatch

The redirect URI in the request: http://xxx.appspot.com/index.jsp did not 
match a registered redirect URI

Where is the redirect URI supposed to be set?

My thanks in advance,
H!

-- 
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-appengine/-/oR0Vv9AgLwoJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: URGENT GAE billing issue

2012-07-06 Thread aramanuj
Hi Takashi,

Can you put this URL in the Billing Settings section of the Admin Console? 
This is the 3rd time in the recent past the same issue has come up 
(including mine), and perhaps the second time that I've seen this URL 
posted on the group. There is an email address in the Billing Settings, but 
I got no response from there when I reported this issue sometime back. 
Seems like the form based post is better than the email provided in the 
Admin Console?

Ideally, we need a "Pay Now" option so that existing charges can be cleared 
at anytime (say, if the first payment did not go through for some reason). 
For now, the only option would be to make billing changes just before the 
charges are automatically cleared.

Regards,
Arun

On Saturday, June 30, 2012 3:17:55 AM UTC+5:30, Takashi Matsuo (Google) 
wrote:
>
>
> If you have some issues related to the billing, please read our FAQ first:
> https://developers.google.com/appengine/kb/billing
>
> and if this does not help please fill out this form:
>
> http://support.google.com/code/bin/request.py?hl=en&contact_type=cloud_platform_
> billing&rd=1
>
> -- Takashi
>
>
> On Fri, Jun 29, 2012 at 7:01 AM, mc  wrote:
>
>> I'm having the same issue.   I've had this problem in the past and it 
>> lasted several weeks. This is very concerning since it prevents me from 
>> managing my application properly.
>>
>> Is there some way to escalate issues with the Google App Engine Team when 
>> an application is dead ? 
>>
>>
>>
>> On Friday, June 22, 2012 7:43:53 PM UTC-7, draftpik wrote:
>>>
>>>
>>> App Engine has shut off our nhldraftpik app due to the max daily budget 
>>> being met.  I would like to increase the budget, but I am completely unable 
>>> to change the billing limit.  It says:
>>>
>>> Billing Status: Changing Daily Budget
>>>
>>> Your account has been locked while we process your budget changes. If 
>>> you were redirected to Google Checkout but did not complete the process, 
>>> your settings will remain unchanged. *(You will be able to make changes 
>>> to your budget settings again once the outstanding payment is processed.)
>>> *
>>>
>>> *
>>> *
>>>
>>> Please advise ASAP what I can do to work around this serious failure of 
>>> Google's billing system.
>>>
>>>
>>> Thank you,
>>>
>>>
>>> Brian
>>>
>>
>> On Friday, June 22, 2012 7:43:53 PM UTC-7, draftpik wrote:
>>>
>>>
>>> App Engine has shut off our nhldraftpik app due to the max daily budget 
>>> being met.  I would like to increase the budget, but I am completely unable 
>>> to change the billing limit.  It says:
>>>
>>> Billing Status: Changing Daily Budget
>>>
>>> Your account has been locked while we process your budget changes. If 
>>> you were redirected to Google Checkout but did not complete the process, 
>>> your settings will remain unchanged. *(You will be able to make changes 
>>> to your budget settings again once the outstanding payment is processed.)
>>> *
>>>
>>> *
>>> *
>>>
>>> Please advise ASAP what I can do to work around this serious failure of 
>>> Google's billing system.
>>>
>>>
>>> Thank you,
>>>
>>>
>>> Brian
>>>
>>
>> On Friday, June 22, 2012 7:43:53 PM UTC-7, draftpik wrote:
>>>
>>>
>>> App Engine has shut off our nhldraftpik app due to the max daily budget 
>>> being met.  I would like to increase the budget, but I am completely unable 
>>> to change the billing limit.  It says:
>>>
>>> Billing Status: Changing Daily Budget
>>>
>>> Your account has been locked while we process your budget changes. If 
>>> you were redirected to Google Checkout but did not complete the process, 
>>> your settings will remain unchanged. *(You will be able to make changes 
>>> to your budget settings again once the outstanding payment is processed.)
>>> *
>>>
>>> *
>>> *
>>>
>>> Please advise ASAP what I can do to work around this serious failure of 
>>> Google's billing system.
>>>
>>>
>>> Thank you,
>>>
>>>
>>> Brian
>>>
>>  -- 
>> 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-appengine/-/0dXpJNVTDskJ.
>>
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
>
>
> -- 
> Takashi Matsuo
>  

-- 
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-appengine/-/I0jqrTUorCkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] AppEngine Billing not working!

2012-07-06 Thread Anna
Hi all, 

I need to increase my quota for a live site, but something has gone wrong.

I went to Billing > Billing Settings then added my credit card details 
about 24 hours ago. But my billing status is still 'Activating Billing'.

I fear that I have entered in the wrong address details and that it has got 
stuck.

How do I revert so I can re-enter my credit card details?

Many thanks
Anna

-- 
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-appengine/-/nc0pZSnjNmMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: App engine connect android app not visible in the new project wizard

2012-07-06 Thread Chris Durham
I too am missing this item in my project options now. This used to work for 
me, but I noticed yesterday that it was missing and the last change I 
remember making on my system was updating "Android SDK Tools" to rev 20 and 
"Android SDK Platform-tools" to rev 12 (both updated at the same time 
through SDK Manager)

Since noticing the missing item I've downloaded Eclipse 4.2 (I had been 
using Indigo) and reinstalled the google plug-ins, but this item is still 
missing. I've also noticed that the RPC Service 
(File->New->Other->Google->RPC Service) is missing as well.

On Thursday, June 28, 2012 11:38:56 PM UTC-7, Chandrashekar wrote:
>
> I followed the steps to get appengine connect android app but i dont see 
> that option in the new project options. 
>
>
> I have 
> eclipse Version: 3.7.2
>
> Android sdk api level 16
>
> app engine sdk 1.7.0
>
> GWT sdk 2.4.0
>
> I have installed the google plugin 3.7. 
>
> But when i got to the new project , i don;t see that option. 
>
>
>
> 
>
>
> This is what i currently see. 
>
>
> 
>
>
>
>

-- 
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-appengine/-/WntP-Ks8IUYJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Issue of google app engine with eclipse(juno) 4.2 IDE

2012-07-06 Thread Shilendra Sharma
Hi. All 


I am using the GAE with eclipse (juno) 4.2 but issue with that is the 
eclipse (juno) 4.2 automatic close after 2-3 min of starting on eclipse 
(juno ) 4.2 IDE but i think this is the new eclipse IDE so taht why give 
that problem.

-- 
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-appengine/-/Q7wrZ2uHN14J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] datastore with JDO API

2012-07-06 Thread Manjesh
Hi,
I am new to GAE and  especially for Datastore (JDO)
 
I have an Object Composition :   User object has a reference of Contact  
object.
I am able to store them in datastore.. but with same username as primary 
key..  can someone point out where is the problem in code?
 
Here is the code snippet..
 
//User class
 
 @PersistenceCapable (identityType = IdentityType.APPLICATION)
 public class User{
 @PrimaryKey
 @Persistent (valueStrategy = IdGeneratorStrategy.IDENTITY) 
 String username;
 @Persistent
 Contact contact;
 //getters and setters
 }
 
 
// Contact  class
 
@PersistenceCapable (identityType = IdentityType.APPLICATION)
public class Contact {
@PrimaryKey
@Persistent (valueStrategy = IdGeneratorStrategy.IDENTITY) 
private Key username; 
 
@Persistent
String Phone1;
}
 
 
 
//DAO class
public void register()  {
User user = new User();
user.setUserName("abc");
 
Contact contact=new Contact();
contact.setEmail("a...@gmail.com");
user.setContact(contact);
pm.makePersistent(user);
}
 
 
 
If I call this register method twice ( or equivalent to submit a 
registration form  twice with same set of  username and email id !!)  ,the 
datastore is not complaining about duplicate key Exception..

Since I am creating "username" as my KEY I am expecting to get  duplicate 
key Exception. But why this is not happening?   
 
 
-thanks
Ma
 
 
 
 
 
 
 

-- 
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-appengine/-/ssALgOc3N4sJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Datasotore with JDO examples

2012-07-06 Thread Manjesh

Hi,
Is there any  complete source code examples available on datastore with JDO 
which I can run on eclipse?
 
-thanks

-- 
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-appengine/-/Eou7rsFeiCQJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: " Temporary error retrieving documents." when using Global consistency in text search.

2012-07-06 Thread tuxedo


On Saturday, June 30, 2012 5:36:06 AM UTC-7, Sinan Yüce wrote:
>
> Hi everyone,
>
> Both local server and app engine does not shows the documents in full text 
> search when we set the document consistency as a Global consistency. When 
> we try to reach the document lists in both administrative consoles we get: 
> Temporary 
> error retrieving documents.
>
> The issue is still there even if we use the latest app engine sdk 1.7.0.
>
> Thanks for your help,
>
>  
>

-- 
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-appengine/-/5-Tpbby-rFQJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: [IMPORTANT] Requesting feedback for "App Engine connected Android support" in Google Plugin for Eclipse (GPE) !

2012-07-06 Thread vj
I used to have this option "App Engine connected Android support" in 
New->project menu. I updated ADT afterwards. Boom, the menu is gone now. 
Sriram advised to install GPE after ADT in another thread, but no luck.

Thanks.

On Wednesday, February 29, 2012 12:42:11 AM UTC-8, Sriram (Google) wrote:
>
> Hi folks,
> I was wondering if any of you played around with the "App Engine connected 
> Android support" we introduced in GPE  last 
> year.
> Here's the link to get started: 
> http://code.google.com/eclipse/docs/appengine_connected_android.html
>
> It allows you to define a App Engine backend for your Android app, and 
> uses an RPC mechanism for your Android app to call into App Engine, and 
> C2DM for back-communication.
> Here's a cool video from last year's Google IO on the same topic: 
> https://www.youtube.com/watch?v=M7SxNNC429U
>
> We are looking to make the experience for using App Engine as a backend 
> for Android much better, and would love to hear your feedback!
> Do ping us asap.
>
> Cheers,
> Sriram
>
> -- 
> Sriram Saroop |  Product Manager, Google | +91-9900065945
>
>

-- 
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-appengine/-/fx9tvM7ae_sJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Deploy an existing Web application in a .war file?

2012-07-06 Thread Jeo
I'm wondering if I can use Google App Engine to simply deploy an existing 
Web app that I've created.

I've created a standalone Eclipse Help Infocenter, bundled into a .war file 
that I deploy in a local Apache Tomcat server.

I don't need to create or modify the app, I mean not for my purposes 
anyway, I would just like to use my Google App Engine account to deploy it 
so I can share it with someone else, rather than having the person log into 
my computer.

Is this possible? I've read the FAQs and some of the posts here but don't 
see the answer I'm looking for. I get the impression that I'd need to build 
the app natively on this platform rather than just skip to the deployment, 
but I could be wrong. 

In Apache Tomcat, once I have that installed I just drop the .war file into 
the Webapps directory and it deploys. Is there something similar using 
Jetty in the Google App Engine service?

Thanks

-- 
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-appengine/-/VQhMN3eW3ikJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] JPA Issue - transient keyword vs @Transient annotation

2012-07-06 Thread thakkeb
Hello

I have a simple object with some fields that I'm trying to persist with JPA 
and it works perfectly fine when I use the transient keyword on the fields 
that I don't want persisted. Although when I remove the transient keyword 
and place the @Transient annotation on those fields, it results into the 
following exception. I cannot use the transient keyword because then 
gwt-rpc will also ignore the data in these fields which I'm setting 
manually after I retrieve the result from data-store.

Also given below is the dependency tree on my maven project.

Please let me know if I can provide any additional information and I'll try 
appreciate the help.

Regards.

Caused by: java.lang.NullPointerException
at 
com.google.appengine.datanucleus.query.DatastoreQuery.getMappingForFieldWithName(DatastoreQuery.java:1393)
at 
com.google.appengine.datanucleus.query.DatastoreQuery.addLeftPrimaryExpression(DatastoreQuery.java:1194)
at 
com.google.appengine.datanucleus.query.DatastoreQuery.addExpression(DatastoreQuery.java:929)
at 
com.google.appengine.datanucleus.query.DatastoreQuery.addExpression(DatastoreQuery.java:912)
at 
com.google.appengine.datanucleus.query.DatastoreQuery.addFilters(DatastoreQuery.java:888)
at 
com.google.appengine.datanucleus.query.DatastoreQuery.performExecute(DatastoreQuery.java:245)
at 
com.google.appengine.datanucleus.query.JPQLQuery.performExecute(JPQLQuery.java:164)
at org.datanucleus.store.query.Query.executeQuery(Query.java:1791)
at org.datanucleus.store.query.Query.executeWithMap(Query.java:1694)
at org.datanucleus.api.jpa.JPAQuery.getResultList(JPAQuery.java:185)


Dependency Tree:


[INFO] +- junit:junit:jar:4.10:test
[INFO] |  \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] +- log4j:log4j:jar:1.2.16:compile
[INFO] +- org.slf4j:slf4j-api:jar:1.6.4:compile
[INFO] +- org.slf4j:jcl-over-slf4j:jar:1.6.4:compile
[INFO] +- org.slf4j:slf4j-log4j12:jar:1.6.4:compile
[INFO] +- org.aspectj:aspectjrt:jar:1.6.12:compile
[INFO] +- org.aspectj:aspectjweaver:jar:1.6.12:compile
[INFO] +- javax.servlet:servlet-api:jar:2.5:provided (scope not updated to 
compile)
[INFO] +- net.sf.flexjson:flexjson:jar:2.1:compile
[INFO] +- org.apache.commons:commons-lang3:jar:3.1:compile
[INFO] +- org.springframework:spring-core:jar:3.1.0.RELEASE:compile
[INFO] |  \- org.springframework:spring-asm:jar:3.1.0.RELEASE:compile
[INFO] +- org.springframework:spring-test:jar:3.1.0.RELEASE:test (scope not 
updated to compile)
[INFO] +- org.springframework:spring-context:jar:3.1.0.RELEASE:compile
[INFO] |  +- org.springframework:spring-beans:jar:3.1.0.RELEASE:compile
[INFO] |  \- org.springframework:spring-expression:jar:3.1.0.RELEASE:compile
[INFO] +- org.springframework:spring-aop:jar:3.1.0.RELEASE:compile
[INFO] |  \- aopalliance:aopalliance:jar:1.0:compile
[INFO] +- org.springframework:spring-aspects:jar:3.1.0.RELEASE:compile
[INFO] |  \- 
org.springframework:spring-context-support:jar:3.1.0.RELEASE:compile
[INFO] +- mysql:mysql-connector-java:jar:5.1.18:compile
[INFO] +- org.hibernate:hibernate-core:jar:3.6.9.Final:compile
[INFO] |  +- antlr:antlr:jar:2.7.6:compile
[INFO] |  +- commons-collections:commons-collections:jar:3.1:compile
[INFO] |  +- dom4j:dom4j:jar:1.6.1:compile
[INFO] |  \- 
org.hibernate:hibernate-commons-annotations:jar:3.2.0.Final:compile
[INFO] +- org.hibernate:hibernate-entitymanager:jar:3.6.9.Final:compile
[INFO] |  \- javassist:javassist:jar:3.12.0.GA:compile
[INFO] +- 
org.hibernate.javax.persistence:hibernate-jpa-2.0-api:jar:1.0.1.Final:compile
[INFO] +- org.hibernate:hibernate-validator:jar:4.2.0.Final:compile
[INFO] |  \- javax.validation:validation-api:jar:1.0.0.GA:compile
[INFO] +- cglib:cglib-nodep:jar:2.2.2:compile
[INFO] +- javax.transaction:jta:jar:1.1:compile
[INFO] +- org.springframework:spring-jdbc:jar:3.1.0.RELEASE:compile
[INFO] |  \- org.springframework:spring-tx:jar:3.1.0.RELEASE:compile
[INFO] +- org.springframework:spring-orm:jar:3.1.0.RELEASE:compile
[INFO] +- commons-pool:commons-pool:jar:1.5.6:compile
[INFO] +- commons-dbcp:commons-dbcp:jar:1.3:compile
[INFO] +- org.springframework:spring-webmvc:jar:3.1.0.RELEASE:compile
[INFO] |  \- org.springframework:spring-web:jar:3.1.0.RELEASE:compile
[INFO] +- 
org.springframework.webflow:spring-js-resources:jar:2.2.1.RELEASE:compile
[INFO] +- commons-digester:commons-digester:jar:2.1:compile
[INFO] |  \- commons-beanutils:commons-beanutils:jar:1.8.3:compile
[INFO] +- commons-fileupload:commons-fileupload:jar:1.2.2:compile
[INFO] +- javax.servlet.jsp.jstl:jstl-api:jar:1.2:compile
[INFO] +- org.glassfish.web:jstl-impl:jar:1.2:compile
[INFO] +- javax.el:el-api:jar:1.0:provided
[INFO] +- joda-time:joda-time:jar:1.6:compile
[INFO] +- javax.servlet.jsp:jsp-api:jar:2.1:provided (scope not updated to 
compile)
[INFO] +- commons-codec:commons-codec:jar:1.5:compile
[INFO] +- com.google.gwt:gwt-servlet:jar:2.4.0:compile
[INFO] +- com.google.gwt:gwt-user:jar:2.4.0:provided
[INFO] +- com.google.gwt.google-apis:gwt-visualization:jar:1.0.2:provided

Re: [google-appengine] Will we be able to buy discounted instance-hours for B1 backends?

2012-07-06 Thread Robert Fischer
Hi,

It's been some time since this post and I've been wondering the same thing. 
 Are there any plans to apply purchased discounted hours toward B1 (or 
other B#) instance hours?

Thanks,
Robert

On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> 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@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> 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@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> 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@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> 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@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> 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@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>
On Friday, September 16, 2011 2:54:47 PM UTC-7, Greg D'Alesandre wrote:
>
> We don't plan to provide it just yet but could do so in the future.
>
> Greg
>
> On Fri, Sep 16, 2011 at 1:14 PM, Jason Collins 
> wrote:
>
>> The B1 backend specs are the same as frontend specs.
>>
>> Will we be able to buy discounted instance-hours for backend B1
>> instances?
>>
>> Any possibility of a similar discount being applied to B2/B3/B4 for
>> pre-commitment?
>>
>> j
>>
>> --
>> You received this message because you are subscr

Re: [google-appengine] Re: Java instance startup time out of control

2012-07-06 Thread Ibrahim Arief
Hi Everyone,


Would those that are able to configure their GAE project to bundle their 
classes into a single JAR please kindly share their configuration steps as 
an answer to the stackoverflow question 
http://stackoverflow.com/questions/9397101/configure-eclipse-to-pre-bundle-app-engine-classes-into-a-single-jar-for-faster
? 

This is the same question that Richard had linked earlier in this 
discussion thread. As the asker of the question, I would love to finally 
see some definitive/canonical answer that could be helpful for a broad 
audience.

Thank You and Best Regards,
Ibrahim

On Saturday, June 23, 2012 7:22:34 AM UTC+2, Richard Watson wrote:
>
> Hi Will,
>
> I also tried bundling (most [1]) jars into one but it didn't seem to move 
> the needle at all, once classes were jarred.  I did perceive a lower 
> initial-RAM level - I think it was about 4 or 5 megs lower but I didn't 
> test that too carefully.  Is your load-time difference compared to unjarred 
> classes, or to multiple jars only?
>
> I did think to try bundling only the jars my app would need on startup, to 
> reduce the overall initial load.  Does Java have to inspect the contents of 
> all jar files to figure out where required classes are?
>
> Richard
>
> [1] GAE deployment complained my 1-jar solution was too big, so I wrote an 
> ant task to jar-up only the jars below a certain size and leaving very few 
> bigger ones. Went from 50+ to about 8. But again, no perceived load-time 
> improvement once the classes were jarred.
>
> On Friday, June 22, 2012 8:35:11 AM UTC+2, Will Rayner wrote:
>>
>> Hi all,
>>
>> I've also been battling with with java warmup times. Last week I had 
>> startup time of at least 37 seconds. Now it's hovering around 16.
>>
>> My performance improvements were made by bundling all my dependencies 
>> together into a single jar. I've been using the excellent gradle gae plugin 
>> (https://github.com/bmuschko/gradle-gae-plugin), which integrates with 
>> https://github.com/musketyr/gradle-fatjar-plugin/. This could easily be 
>> integrated with an existing gradle project in under an hour.
>>
>> We're using Resteasy, Htmleasy, soy templates, hibernate orm and 
>> validator. There were about 60 jars in my WEB-INF/lib.
>>
>> Regards,
>> Will Rayner
>>
>>
>> On Friday, June 22, 2012 1:18:51 PM UTC+10, Thomas Wiradikusuma wrote:
>>>
>>> I have updated 
>>> http://code.google.com/p/googleappengine/issues/detail?id=7706 with 
>>> this information.
>>>
>>> On Monday, 18 June 2012 11:44:29 UTC+8, Takashi Matsuo (Google) wrote:

 On Mon, Jun 18, 2012 at 9:57 AM, Thomas Wiradikusuma 
  wrote: 
 > Just my 2 cents, 
 > 
 > If indeed our app needs to be single-JARred and obfuscaticated (at 
 least removing unused code), IMO that feature should be baked in the tool. 
 Probably triggered with extra flag. 

 I think this is also a good feedback especially if creating the single 
 JAR contributes the performance. I'd appreciate it if you could file 
 an issue. 



-- 
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-appengine/-/nZ6JCW5YAMAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Removal of Links to app after I disable it

2012-07-06 Thread Johnny Dev

Hi All,

I have a google+ game that I disabled -- unfortunately, the links to the 
app still appear in the visualized list of games.  The links of course can 
no longer launch the game but I would really like to remove all trace of 
the app.  Is this even possible?

Thanks!

-- 
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-appengine/-/yy1dV7TASMIJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] deploying

2012-07-06 Thread maziyar kosarifar
I have a problem with deploying the sample program hello world it make an 
err could u help me please
this is the text that it send to me 
2012-07-02 19:49:49 Running command: "['C:\\Python27\\pythonw.exe', '-u', 
'C:\\Program Files\\Google\\google_appengine\\appcfg.py', '--no_cookies', 
u'--email=maziya...@gmail.com', '--passin', 'update', 
u'C:\\Users\\maziyar\\Contacts\\Documents\\HelloUdacity']"
C:\Program 
Files\Google\google_appengine\google\appengine\api\search\search.py:232: 
UserWarning: DocumentOperationResult._code is deprecated. Use 
OperationResult._code instead.
  'Use OperationResult.%s instead.' % (name, name))
C:\Program 
Files\Google\google_appengine\google\appengine\api\search\search.py:232: 
UserWarning: DocumentOperationResult._CODES is deprecated. Use 
OperationResult._CODES instead.
  'Use OperationResult.%s instead.' % (name, name))
Application: helloworld; version: 1
Host: appengine.google.com

Starting update of app: helloworld, version: 1
Getting current resource limits.
Password for maziya...@gmail.com: 2012-07-02 19:49:58,153 ERROR 
appcfg.py:2152 An error occurred processing file '': HTTP Error 403: 
Forbidden. Aborting. 
Error 403: --- begin server output ---
You do not have permission to modify this app (app_id=u'helloworld').
--- end server output ---
2012-07-02 19:49:58 (Process exited with code 1)

You can close this window now.

-- 
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-appengine/-/pD_bglv-1DUJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Create datastore-objects dynamically (in Python)

2012-07-06 Thread Anup Shinde
I am trying to create datastore-objects dynamically (in Python). I know I 
can use the Expando model - and want to checkif there is a better option 
(not complex frameworks).   

So a user will mention that a object name and a datastore object is 
declared by the user through a UI. The field types are selected on the 
UI... and then the object is created (so to speak)..The actual 
datastore-entity would be created after a insert-operation occurs. 

Example pseudo-code like I found in Java option... but really don't want to 
go java way

// A program would know the strings(objectnames/attribute details)... and 
in that case, the values will be  accessed as:
e = Entity('Book')   /// Entity could be a custom python class
e['recordid'] = 'uniquerecordid';
e['name']='some name'
e['description']='some description'

e.put() // adds or updates -- update based on recordid
e.get('uniquerecordid') // returns the record
e.delete() /// deletes the record

// Additionally, I also want coders to be able to write classes using the 
newly created entity names - May be just dynamically generate  Book class 

b = Book()
b.name = 'some book name'
b.put()


Thanks,
Anup

-- 
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-appengine/-/tncFe3NVVMwJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Add Custom Domain on Google Apps

2012-07-06 Thread Clement Yuan
I'm using gmail for Google App Engine and how to add custom domain name 
without Google Apps?


-- 
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-appengine/-/WYCz-x1ontEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Field Type Codes using Google Cloud SQL

2012-07-06 Thread a_h_roth
I am using GAE with the Google Cloud SQL module "rdbms".  According to the 
documentation,
 
rdbms uses DB-API 2.0 .  What 
I've been trying to do is take advantage of the cursor.description 
attribute, which is a sequence of 7 item sequences (name, type_code, 
 display_size, internal_size,  precision,  scale, null_ok).  "type_code" is 
what I'm trying to get at , because I need to pass the data to Google 
Visualizations, which require types to be declared for each column.

Here's the problem:

"type_code" is returned as an integer.  Different integers represent 
different types.  I searched madly on the internet for mappings for these 
codes, and found them for 
MySQLdb.
 
 The problem is that the ones returned from the Google Cloud SQL rdbms 
module (for Google App Engine) returns different codes!  An integer gets a 
different code on my local machine than an integer returned from Google 
Cloud SQL in GAE.

So my questions:
1. Does anyone know where I can get a mapping for the type_codes returned 
from the rdbms module to GAE?  Or am I going to have to manually test each 
type in the database?
2. Are there any constants for FIELD_TYPE that I can use with rdbms?  MySQLdb 
defines these constants in human-readable 
form,
 
so it would be great if rdbms had the same constant names, so that I 
wouldn't have to worry about coding for two type mappings.

Can anyone help?  Thanks!

-- 
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-appengine/-/98ud1EvIe3MJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



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

2012-07-06 Thread Tom Muse
Do you have the link for the video handy? I am having difficulties locating 
it.

Thanks in advance :)

On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:
>
> Just watched the video - endpoints look great.
>
> Are you able to give us some idea when they will be available for 
> non-Trusted testers?
>
> Thanks.
> Tom
>
> On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento wrote:
>>
>> Hi All,
>>
>> Endpoints is one of the features we announced in our App Engine overview 
>> session today at I/O that's designed to make writing mobile backends on App 
>> Engine easier. More details to come in talks tomorrow (YouTube videos 
>> should be up soon) and we'll post some info with the trusted tester sign-up 
>> form to the groups shortly.
>>
>>
>> Thanks,
>> Christina
>>
>> On Wed, Jun 27, 2012 at 8:58 PM, James Broberg wrote:
>>
>>> 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 PageSpeed and SSL have been released? Where can I get to 
> these so that I can sign up?
>
> The new "Endpoints" section says that an API.yaml should exist... what 
> will go in that? Is there documentation up, now that this is a production 
> release?
>
>
> 
> Is this part of an I/O release?
>
> Screenshot sample attached.
>
  -- 
 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-appengine/-/cA8hVE9iYpcJ.

 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.

>>>
>>>  -- 
>>> 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@googlegroups.com.
>>> To unsubscribe from this group, send email to 
>>> google-appengine+unsubscr...@googlegroups.com.
>>> For more options, visit this group at 
>>> http://groups.google.com/group/google-appengine?hl=en.
>>>
>>
>>
>>
>>  

-- 
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-appengine/-/qC8lh4Gfn8gJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Maybe not connect to Google Cloud SQL from AppEngine

2012-07-06 Thread Sổ Liên Lạc Điện Tử
I build a webservice, if i return String it's ok. But I connect to Google 
Coud SQL than no result, Can you help me?

-- 
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-appengine/-/6hyNRfw6uVgJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] How do I remove my disabled game from the Google+ games directory?

2012-07-06 Thread Johnny Dev
Hello All,

I have disabled my game from appengine but the game still appears in the 
games directory.  Is there any way for me to remove it from the games 
directory?

Thanks!

-- 
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-appengine/-/UUkCMdyOEZkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: What to do if you have problems signing up for an App Engine account

2012-07-06 Thread Steve
Is there any way to speed this process up? This is a matter of urgency as 
it's for business purposes and I'm considering ditching app engine in 
favour of AWS EC2 just to avoid these silly set up issues...

On Thursday, April 26, 2012 9:10:10 AM UTC+2, Amy Unruh wrote:
>
> We often get questions on this list about how to sign up for an App Engine 
> Account in the case where you are not able to receive SMS messages, or if 
> you don't have a mobile phone.  If you have those or similar issues, then 
> as described here:
>   https://developers.google.com/appengine/kb/sms#error
> you can fill out a form:
>  https://appengine.google.com/waitlist/sms_issues
> which will put you on a list to receive an invitation.  (Note that this 
> list is not processed automatically, so there can sometimes be a few days' 
> delay).
>
>   -Amy
>

-- 
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-appengine/-/NBLCz1l1gJEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: HTML unit not working on GAE

2012-07-06 Thread Jonny_NYC


I've been having the same issue.Chrome Gmail - "Your browser's cookie 
functionality is turned off. Please turn it 
on"

I've been receiving the above message repeatedly after:

 

1 - "Clearing ALL browser data" numerous times

2 - I have "allow local data to be set (recommended)". numerous times

 

Sometimes it's not even accepting my UN & PW for my gmail rather just going 
back to a blank screen ready to re-enter a UN & PW.

 

Please help with any suggestions.




On Monday, May 14, 2012 5:24:28 AM UTC-4, Saurabh S wrote:
>
> Hi , 
> Has anyone had a try over this ? please reply 
>
>
>
> On May 8, 4:07 pm, Saurabh S  wrote: 
> > Hi , 
> > 
> > I am usinghtmlunitto login to the appengine.google.com. 
> > 
> > I have enabled the cookies programatically. still i am getting an 
> > error saying "Your browser's cookie functionality is turned off. 
> > Please turn it on." 
> > 
> > Please suggest how to overcome this. 
> > 
> > Also i'm little confused whether GAE supportshtmlunitor not ..please 
> > let me know your thoughts on this 
> > 
> > Thanks in advance,

-- 
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-appengine/-/R2To0CiQaysJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] A server for a mobile app with an in-app purchase

2012-07-06 Thread Jaroslaw Pawlak
We are looking for a server to host files for our in-app store. We are 
trying to estimate the costs of Google App Engine, but the pricing (
http://cloud.google.com/pricing/) is quite confusing and I have a few 
questions regarding it.

Pricing says that we get 28h of free "on demand frontend instances" per 
day. We need a server that will be up all the time (24h/day), does it mean 
that we can have it for free?

Also, I understand that for the storage we need only "High Replication 
Datastore" while the Datastore and Blobstore APIs are optional. Is this 
correct?

-- 
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-appengine/-/a0InlrLN9CkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Strange time.Now() behaviour with dev server

2012-07-06 Thread Brad Beveridge
I'm trying to do a simple JavaScript/AppEngine clock.  Basically, I want to 
constantly reschedule a Task that sends a message on a Channel.  The client 
side JS will update the HTML to reflect the time from the server.  I also 
have a hit count.  What I see is that the hit count goes up at the 
task-queue rate (I'm set to 1/s), but that the timestamp changes only very 
slowly.  The console output from dev_appserver.py is showing correct 
timestamps.
To get a correct timestamp back I need to do a full restart of 
dev_appserver.py.  

Can anybody shed some light on why I'm seeing this odd behaviour?  I'm a 
complete Go (golang) & web newbie, so any other constructive comments about 
the code are welcome.  I'm on OSX 64bit with a download that's a few days 
old.

I've attached my sample code.

Thanks,
Brad

-- 
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-appengine/-/v1rtiaXgYwAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



clock.go
Description: Binary data


[google-appengine] Re: App Engine multi sign in Error: Server Error

2012-07-06 Thread John Pritchard

Just started seeing this now -- across all apps 


On Tuesday, November 8, 2011 1:55:11 AM UTC-5, Nick Cooper wrote:
>
> Hi, 
>
> For my app I'm using OAuth. I simply set the security constraint in 
> web.xml and then use the userService on the server side to get their 
> login credentials 
>
> It works really well, except I'm running into an issue when a user who 
> is currently logged into multiple google accounts tries to sign in 
>
> It correctly shows them the Google page to select which account to 
> login with, however no matter what they choose it directs them to /_ah/ 
> conflogin where they get: 
>
> Error: Server Error 
>
> The server encountered an error and could not complete your request. 
> If the problem persists, please report your problem and mention this 
> error message and the query that caused it. 
>
>
> Has anybody run into this before? 
>
> Thanks, 
> Nick

-- 
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-appengine/-/hUav-zdEU7kJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Angry Birds Login

2012-07-06 Thread John Pritchard

Yes, all my apps are broken

multiple sign-in selection redirects to /_ah/conflogin which dies with 
front end error (no log)


On Thursday, May 31, 2012 1:35:31 PM UTC-4, Larry Schmidt wrote:
>
> For the past 24 hours or so, Login in Angry Birds Chrome has failed with 
> this message:
> Error: Server ErrorThe server encountered an error and could not complete 
> your request.
>
> If the problem persists, please 
> report your 
> problem and mention this error message and the query that caused it.
>
>
> URL: 
> http://chrome.angrybirds.com/_ah/conflogin 
>

-- 
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-appengine/-/SBFR58lJBYoJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Ownership verification not working with SNI certificates

2012-07-06 Thread Ben.SaaSt
SNI certificates are great and work mostly fine for me (thanks Google!), 
except for a couple of issues:
1. Google Webmaster Tools cannot find (and therefore verify) my domain 
(https://app.saast.com)
2. Google (https://www.google.com/gadgets/directory/verify) cannot verify 
the ownership of a gadget on my site (https://app.saast.com/gadget.xml)
All of this works correctly if a use the appspot url, so I think the 
problem might come from the SNI implementation in some Google servers.

Am I doing something wrong? Thank you for your help.

-- 
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-appengine/-/gdJ7uR6wmeMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Url verification not working with SNI certificates

2012-07-06 Thread Ben.SaaSt
SNI certificates are great and have been working well for me, except for a 
couple of issues:
1. Google Webmaster Tools does no seem to be able to find and verify my 
site (https://app.saast.com)
2. Google Gadget Ownership Verification Tool (
https://www.google.com/gadgets/directory/verify) cannot find my site either 
(https://app.saast.com/gadget.xml)
All of this works fine when I use the appspot url, so I think the problem 
might come from the SNI implementation in some Google servers.
Am I doing something wrong? Thanks for your help.

-- 
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-appengine/-/ppyFldWKmD0J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] "appcfg.py update" running without errors, but myapp.appspot.com shows no results or change

2012-07-06 Thread Joe Lewis
This is may seem insane, but appcfg.py update command is working totally 
error free, but my remote "myapp.appspot.com" is not showing any change.
Does this take time , under rare cases or am I missing out anything? Is 
there any alternative ways to get it working online? Help Please.

I'm using version 1.6.5
Latest version available 1.7.0

-- 
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-appengine/-/Usy-lrHZn0UJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] newbie: multi user app - getting the price per user

2012-07-06 Thread Martin Trummer
If I write an application on AppEngine that supports multiple users, I'll 
get a bill at the end of the month for the complete app, right?
Is it somehow possible to break down this cost to a per-user basis?
i.e. I'd like to know which of my logged-in users has caused how much of 
the total cost?

I'm thinking of some mechanism, where I can tell AppEngine via a command to 
assign the costs of e.g. this http-request to a certain user / or maybe I 
need to know how much of the stored data belongs to a single user.

I'm aware, that there are for sure some costs that I cannot assign to a 
specific user (like some maintenance work, general background tasks, etc.)

alternative approaches/recommendations are also welcome:
e.g. maybe create an app-engine instance for each user of my application 
(which would only work for very low user-numbers, I guess)

-- 
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-appengine/-/_roKdJGfWfAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: does bulk upload work of dev webserver with Python 2.7

2012-07-06 Thread Jesse Zhang
On Tuesday, July 3, 2012 11:42:16 PM UTC+8, sjh wrote:
>
> appcfg.py upload_data --config_file=spectrum_loader.py 
> --filename=spectrum_data.csv --kind=Spectrum --url=
> http://localhost:8080/theremote_api ./
>

Here is the command I'm using.

 appcfg.py  upload_data --config_file=bulkloader.yaml --filename=data.csv 
--url=http://localhost:8080/_ah/remote_api --kind=AModel

I think you were looking at the deprecated section of the doc, 
https://developers.google.com/appengine/docs/python/tools/uploadingdata. 
Not sure if it still works with python2.7. I guess it's better to use yaml.

Email: j...@appengine.com
> Password for j...@appengine.com:
>

For the dev server, you can just use an empty email; it won't ask for a 
password.

jesse

-- 
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-appengine/-/lL6PBWLs7uUJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] how to use a database

2012-07-06 Thread irfan pasha
Hi,

I have a doubt regarding connecting to a database for application that we 
going to deploy in google app engine. I am not able to understand how 
datastore works.

One more question is how does an application that uses a database 
consider(SQL or PROGRS or ORACLE), if deployed in cloud which database does 
it connect. 

-- 
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-appengine/-/GHKdDp2jRIIJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Get namespace

2012-07-06 Thread vivendi
I'm currently implementing the App Engine in a Python web app. But i'm 
really stuck with a few things that, in my opinion, the documentation 
doesn't really cover. Not in great detail anyway.

First thing that i'm trying to do is get the current namespace, and then 
set that namespace. This works good for me:

namespace_manager.set_namespace('test')

But for some reason the following doesn't work when i visit this URL:
(fictive url) http://test.my-app.appspot.com

bla = namespace_manager.get_namespace()
namespace_manager.set_namespace(bla)

This doesn't give me the namespace data, but just the data that was saved under 
no namespace.

Anyone any idea what the problem could be?


-- 
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-appengine/-/aepYCmV-gmYJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] newbie: pricing per logged-in user

2012-07-06 Thread Martin Trummer
is it somehow possible to break-down the billing into users that have 
logged in to my application?

e..g. users can log-in with their gmail account, upload data, do 
calculations, etc.
at the end of the month, I'll get one bill from google.
is there a way how I can break-down this bill to the user level: i.e. a 
user who has stored GB of data and did a lot of calculations should be 
charged more than a user who has not worked a lot?

are there any existing features that help me doing this? or can I maybe 
take care of this myself, or is it impossible at all?

-- 
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-appengine/-/DVWVNs4HtGUJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Get url with sub subdomain (bug?)

2012-07-06 Thread vivendi
So appearently GAE uses WebOb when i try to request the current URL:

print self.request.host_url

This all works fine, untill my URL has 2 subdomains. Which is more than likely 
when using the App Engine.

This URL will work:
http://my-app.appspot.com

This will fail:
http://subdomain.my-app.appspot.com

Is there any fix for this...??


-- 
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-appengine/-/TxHAiK4gRzMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Link google account to a namespace

2012-07-06 Thread vivendi
Hi,

This is really important for me to know. Is it possible to link a Google 
account to an App Engine namespace?

So that i can get the namespace the account is linked to when the person 
visits my app (made with Python)?

Is that possible??

-- 
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-appengine/-/dQWCun9bPBIJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] How to pass the Password for data uploading to Google datastore in command prompt

2012-07-06 Thread Dinesh
Hi team,

i am trying to Upload the Csv file into Google datastore using 
python tool through command prompt.it is uploaded sucessfully.
 
But the problem is for uploading i need to give the Appengine 
mail credentials.in that command passing the E-mail id is possible.but come 
to password i dont no how to pass the password. so please help me how to 
pass the password in below command.below i send the command.

appcfg.py upload_data --config_file=D:\DataUpload\Purchase\Purchase.yaml --
filename=D:\DataUpload\Purchase\PurchaseData1.csv 
--url=http://apmctest11.appspot.com/remote_api 
--application=s~apmctest11 --kind=Purchase 
--rps_limit=5000--email=test.datast...@gmail.com

-- 
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-appengine/-/x6KyXfxG2C4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Problem to create database schema.

2012-07-06 Thread Erick Couto
Hi, this is my first post.

I create a new project with Jersey for (REST/JSON) and JPA (EclipseLink). 
JPATools (create schema from entity) show errors, because it use 
datanucleos (i think).
Add a parameters on persistence.xml ("create tables") for eclipselink don´t 
work (and no errors is showed).

I use mysql local development.
and GoogleCloudSQL for production.

Can you help me?

Thanks

Erick

-- 
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-appengine/-/jZnSN6UIeFcJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Application is stuck on Activating Billing

2012-07-06 Thread EFCITMan
I have a new application I built and I reached a free resource limit.  I 
tried to enable billing and its stuck on Activating billing 


"Billing will be enabled as soon as the new billing administrator's credit 
card has been authorized. It will take up to 15 minutes after billing is 
enabled for quotas to be updated. *(You will be able to make changes to 
your budget settings again once the outstanding payment is processed."*
*
*
*
*
The message has been there for 3 hours now.  I contacted the billing 
department and they have not responded yet.

I would love to fix this.  and use the GAE.  Any ideas?

-- 
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-appengine/-/Sul-hIgPK3AJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Problem with iterating over child entities using low-level API.

2012-07-06 Thread Dubverse
I'm having a problem with iterating over child entities. Using low-level 
API, I create a parent,

Key groupKey = KeyFactory.createKey("Group","root" );
Entity entity = new Entity(groupKey);
store.put(entity);

Now I successively add children to the group,

Entity groupChild = new Entity("G1", groupKey);
...
store.put(groupChild);
When I iterate using  a query like so

Query query = new Query("G1");
PreparedQuery pq = store.prepare(query);

It works perfectly well, but I want to do a query on the parent like this, 
 Query query = new Query(groupKey);
PreparedQuery pq = store.prepare(query);


Unfortunately this rather than returning the children returns the group 
entity itself. 

-- 
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-appengine/-/wjK8Lc1393YJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] App Engine Connected Android Project

2012-07-06 Thread aaron
I upgraded my App Engine plugin to 1.7 and App Engine tools to 3.0 and now 
there is no longer an option to create an App Engine Connected Android 
Project? I can "generate app engine backend" but that just errors out on 
top of the fact that there is no documentation on how to use the resulting 
code (it's not the same as the original project). 

I needed to change my package name on my connected project so now I need to 
rerun the wizard, but there is no wizard.

The documentation for app engine does not appear to have been updated, what 
are we supposed to do?  

Any help is appreciated. This is very urgent.

Thanks.

-- 
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-appengine/-/6pbXRGsAiIoJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: App Engine 1.7.0 Release is Out!

2012-07-06 Thread aaron
1.7 removes the ability to create an app engine backed android project. Why 
did Google choose to do this and how do we create new app engine backed 
android apps? Is Google going to update the App Engine documentation? 

I found the option to "generate app engine backend" but it just errors and 
leaves me w/ code that maybe is broken and no documentation on how to use? 
Debugging as local connected project doesn't work anymore either.

Thoughts?

On Tuesday, June 26, 2012 7:42:16 PM UTC-4, Takashi Matsuo (Google) wrote:
>
>
> Hi App Engine users,
>
> We've just released the release of the 1.7.0 SDK.
>
> Release notes for Java:
> http://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes
>
> Release notes for Python:
> http://code.google.com/p/googleappengine/wiki/SdkReleaseNotes
>
> Release notes for Go:
> http://code.google.com/p/googleappengine/wiki/SdkForGoReleaseNotes
>
> Enjoy!
>
> -- 
> Takashi Matsuo
>  

-- 
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-appengine/-/X4J_6Ez78EEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: App engine connect android app not visible in the new project wizard

2012-07-06 Thread aaron
Same here

On Friday, June 29, 2012 2:38:56 AM UTC-4, Chandrashekar wrote:
>
> I followed the steps to get appengine connect android app but i dont see 
> that option in the new project options. 
>
>
> I have 
> eclipse Version: 3.7.2
>
> Android sdk api level 16
>
> app engine sdk 1.7.0
>
> GWT sdk 2.4.0
>
> I have installed the google plugin 3.7. 
>
> But when i got to the new project , i don;t see that option. 
>
>
>
> 
>
>
> This is what i currently see. 
>
>
> 
>
>
>
>

-- 
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-appengine/-/RTTMemLjwC0J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: App engine connect android app not visible in the new project wizard

2012-07-06 Thread aaron
I'm having the same problem.

On Friday, June 29, 2012 2:38:56 AM UTC-4, Chandrashekar wrote:
>
> I followed the steps to get appengine connect android app but i dont see 
> that option in the new project options. 
>
>
> I have 
> eclipse Version: 3.7.2
>
> Android sdk api level 16
>
> app engine sdk 1.7.0
>
> GWT sdk 2.4.0
>
> I have installed the google plugin 3.7. 
>
> But when i got to the new project , i don;t see that option. 
>
>
>
> 
>
>
> This is what i currently see. 
>
>
> 
>
>
>
>

-- 
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-appengine/-/fJoOgiyx25QJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: App Engine multi sign in Error: Server Error

2012-07-06 Thread Zachary “Gamer_Z . ” Yaro
I have had that same issue for a while, but I have yet to find a solution :(

—Zachary “Gamer_Z.” Yaro
On Jul 6, 2012 9:02 PM, "John Pritchard" 
wrote:

>
> Just started seeing this now -- across all apps
>
>
> On Tuesday, November 8, 2011 1:55:11 AM UTC-5, Nick Cooper wrote:
>>
>> Hi,
>>
>> For my app I'm using OAuth. I simply set the security constraint in
>> web.xml and then use the userService on the server side to get their
>> login credentials
>>
>> It works really well, except I'm running into an issue when a user who
>> is currently logged into multiple google accounts tries to sign in
>>
>> It correctly shows them the Google page to select which account to
>> login with, however no matter what they choose it directs them to /_ah/
>> conflogin where they get:
>>
>> Error: Server Error
>>
>> The server encountered an error and could not complete your request.
>> If the problem persists, please report your problem and mention this
>> error message and the query that caused it.
>>
>>
>> Has anybody run into this before?
>>
>> Thanks,
>> Nick
>
>  --
> 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-appengine/-/hUav-zdEU7kJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Error: Server Error

2012-07-06 Thread Minh Võ Thanh
I meet problem above. Have you fix  Server Error? Can you help me!

Vào 12:16:24 UTC+7 Thứ bảy, ngày 23 tháng sáu năm 2012, Vinod Gangal đã 
viết:
>
> please any1 rply to dis
>>
> Error: Server ErrorThe server encountered an error and could not complete 
> your request.
> If the problem persists, please 
> report
>  your problem and mention this error message and the query that caused it.
> i m geting dis wenevr i try to run.. 
>

-- 
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-appengine/-/6Nizl-JHzskJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



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

2012-07-06 Thread Amy Unruh
On 3 July 2012 05:41, Tom Muse  wrote:

> Do you have the link for the video handy? I am having difficulties
> locating it.


Here's the I/O session video:
https://developers.google.com/events/io/sessions/gooio2012/303/ .

 -Amy


>
> Thanks in advance :)
>
>
> On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:
>>
>> Just watched the video - endpoints look great.
>>
>> Are you able to give us some idea when they will be available for
>> non-Trusted testers?
>>
>> Thanks.
>> Tom
>>
>> On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento wrote:
>>>
>>> Hi All,
>>>
>>> Endpoints is one of the features we announced in our App Engine overview
>>> session today at I/O that's designed to make writing mobile backends on App
>>> Engine easier. More details to come in talks tomorrow (YouTube videos
>>> should be up soon) and we'll post some info with the trusted tester sign-up
>>> form to the groups shortly.
>>>
>>>
>>> Thanks,
>>> Christina
>>>
>>> On Wed, Jun 27, 2012 at 8:58 PM, James Broberg wrote:
>>>
 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 PageSpeed and SSL have been released? Where can I get to
>> these so that I can sign up?
>>
>> The new "Endpoints" section says that an API.yaml should exist...
>> what will go in that? Is there documentation up, now that this is a
>> production release?
>>
>>
>> 
>> Is this part of an I/O release?
>>
>> Screenshot sample attached.
>>
>  --
> 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-appengine/-/**cA8hVE9iYpcJ
> .
>
> To post to this group, send email to google-appengine@googlegroups.**
> com .
> To unsubscribe from this group, send email to
> google-appengine+unsubscribe@**googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/**
> group/google-appengine?hl=en
> .
>

  --
 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@googlegroups.**
 com .
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-appengine?hl=en
 .

>>>
>>>
>>>
>>>   --
> 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-appengine/-/qC8lh4Gfn8gJ.
>
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
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@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Request was aborted errors

2012-07-06 Thread Richard
Hi Takashi,

App id is sven-wordhero.  Max latency is set to 500msec.

I am seeing errors in the dashboard atm with 30 instances running.  The 
error rate is 3% at the moment.  This is with only 500 requests.  I 
actually cache the data locally in a global var (along with a datetime) to 
try reduce the number of database reads to help with this problem. but 
the problem is still there!

I have not used app-stats in a long time.

This is a simple 'get', json up the results and return them.  I really 
don't think there should be a problem here!

-Richard

On Friday, July 6, 2012 1:43:20 AM UTC-4, Takashi Matsuo (Google) wrote:
>
>
> Hi Mind,
>
> Generally, I would suggest settings appropriate number of 'Min Idle 
> Instances' for such errors.
> However, it's not possible to give a proper advise from information you've 
> provided.
>
> What is your app-id?
> How long is the average latency of your program?
> Have you used appstats for profiling?
>
> Re: memcache
> Don't rely entirely on the memcache service, because currently the 
> memcache contents might be evicted any time.
>
> -- Takashi
>
>
> On Fri, Jul 6, 2012 at 11:45 AM, Mind  wrote:
>
>> I have a GAE app written in Python that provides the back end for a 
>> multi-player Android game.  The game just got 'featured' on Google Play.
>>
>> Usage has significantly increased, and I am starting to see errors like 
>> the following:
>>
>>
>>1. 
>>
>>68.48.166.111 - - [05/Jul/2012:19:33:27 -0700] "GET /client/gs HTTP/1.1" 
>> 500 0 - "Apache-HttpClient/UNAVAILABLE (java 1.4)" 
>> "sven-wordhero.appspot.com" ms=21604 cpu_ms=0 api_cpu_ms=0 cpm_usd=0.31 
>> pending_ms=10963 
>>
>>2.  I 2012-07-05 22:33:27.594  
>>
>>Request was aborted after waiting too long to attempt to service your 
>> request.
>>
>>
>> I don't have quota problems (using 1/10th of daily quota atm) and I don't 
>> have an upper limit on the number of instances.  The code is Python 2.7 and 
>> marked thread-safe.
>>
>> Here is the code that is failing to respond (in about 8% of cases)... 
>> actually, I don't even think this code gets a chance to run (GAE just fails 
>> to respond to the HTTP GET?):
>>
>> lg_ref = LastGame.get_by_key_name('current_game')
>> results = lg_ref.gameStorageKey
>> 
>> out = {'u': results.players,
>>'s': results.scores,
>>   }
>> return self.response.out.write(json.dumps(out))
>>
>> Since the game is synchronized, I have about 500 users hit this URL 
>> within a 5 second window.  No, I cannot use memcache.  It is BROKEN.  It 
>> randomly fails to update the results (even with expiry time set!) and then 
>> provides the results from the PREVIOUS game.  Users don't like that!
>>
>> -- 
>> 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-appengine/-/newhM5g7zPMJ.
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
>
>
> -- 
> Takashi Matsuo
>  

On Friday, July 6, 2012 1:43:20 AM UTC-4, Takashi Matsuo (Google) wrote:
>
>
> Hi Mind,
>
> Generally, I would suggest settings appropriate number of 'Min Idle 
> Instances' for such errors.
> However, it's not possible to give a proper advise from information you've 
> provided.
>
> What is your app-id?
> How long is the average latency of your program?
> Have you used appstats for profiling?
>
> Re: memcache
> Don't rely entirely on the memcache service, because currently the 
> memcache contents might be evicted any time.
>
> -- Takashi
>
>
> On Fri, Jul 6, 2012 at 11:45 AM, Mind  wrote:
>
>> I have a GAE app written in Python that provides the back end for a 
>> multi-player Android game.  The game just got 'featured' on Google Play.
>>
>> Usage has significantly increased, and I am starting to see errors like 
>> the following:
>>
>>
>>1. 
>>
>>68.48.166.111 - - [05/Jul/2012:19:33:27 -0700] "GET /client/gs HTTP/1.1" 
>> 500 0 - "Apache-HttpClient/UNAVAILABLE (java 1.4)" 
>> "sven-wordhero.appspot.com" ms=21604 cpu_ms=0 api_cpu_ms=0 cpm_usd=0.31 
>> pending_ms=10963 
>>
>>2.  I 2012-07-05 22:33:27.594  
>>
>>Request was aborted after waiting too long to attempt to service your 
>> request.
>>
>>
>> I don't have quota problems (using 1/10th of daily quota atm) and I don't 
>> have an upper limit on the number of instances.  The code is Python 2.7 and 
>> marked thread-safe.
>>
>> Here is the code that is failing to respond (in about 8% of cases)... 
>> actually, I don't even think this code gets a chance to run (GAE just fails 
>> to respond to the HTTP GET?):
>>
>> lg_ref = LastGame.get_by_key_name('

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

2012-07-06 Thread timh
HI

I have watched all of the presentations/videos on endpoints.  All examples 
are java based.
Are the tools and this service focussed on java only ?  What about 
python/go ?

Cheers

T

On Saturday, July 7, 2012 9:34:19 AM UTC+8, Amy Unruh wrote:
>
>
>
> On 3 July 2012 05:41, Tom Muse  wrote:
>
>> Do you have the link for the video handy? I am having difficulties 
>> locating it.
>
>
> Here's the I/O session video: 
> https://developers.google.com/events/io/sessions/gooio2012/303/ .
>
>  -Amy
>  
>
>>
>> Thanks in advance :)
>>
>>
>> On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:
>>>
>>> Just watched the video - endpoints look great.
>>>
>>> Are you able to give us some idea when they will be available for 
>>> non-Trusted testers?
>>>
>>> Thanks.
>>> Tom
>>>
>>> On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento wrote:

 Hi All,

 Endpoints is one of the features we announced in our App Engine 
 overview session today at I/O that's designed to make writing mobile 
 backends on App Engine easier. More details to come in talks tomorrow 
 (YouTube videos should be up soon) and we'll post some info with the 
 trusted tester sign-up form to the groups shortly.


 Thanks,
 Christina

 On Wed, Jun 27, 2012 at 8:58 PM, James Broberg wrote:

> 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 PageSpeed and SSL have been released? Where can I get 
>>> to these so that I can sign up?
>>>
>>> The new "Endpoints" section says that an API.yaml should exist... 
>>> what will go in that? Is there documentation up, now that this is a 
>>> production release?
>>>
>>>
>>> 
>>> Is this part of an I/O release?
>>>
>>> Screenshot sample attached.
>>>
>>  -- 
>> 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-appengine/-/**cA8hVE9iYpcJ
>> .
>>
>> To post to this group, send email to google-appengine@googlegroups.**
>> com .
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscribe@**googlegroups.com
>> .
>> For more options, visit this group at http://groups.google.com/**
>> group/google-appengine?hl=en
>> .
>>
>
>  -- 
> 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@googlegroups.**
> com .
> To unsubscribe from this group, send email to 
> google-appengine+unsubscribe@**googlegroups.com
> .
> For more options, visit this group at http://groups.google.com/**
> group/google-appengine?hl=en
> .
>



   -- 
>> 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-appengine/-/qC8lh4Gfn8gJ.
>>
>> To post to this group, send email to google-appengine@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-appengine+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>
>

-- 
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-appengine/-/buKREK4jKSwJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.