[appengine-java] Re: backup for data in namespaces

2012-02-24 Thread andrew
Good question!

For us, the feature is useless without this

All datastore admin tools and utilities need to be data space aware by
default.

On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
wrote:
 Hello,
 In the Datastore Admin console, there is no UI to backup for the data
 containing in namespaces.   It shows only the entities in no namespace.
 When will this feature rollout?

 -Aswathwww.AccountingGuru.in

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: backup for data in namespaces

2012-02-24 Thread andrew
Also, I think there is a feature request for this in issue tracker.
I'd find it and star it.

On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
wrote:
 Hello,
 In the Datastore Admin console, there is no UI to backup for the data
 containing in namespaces.   It shows only the entities in no namespace.
 When will this feature rollout?

 -Aswathwww.AccountingGuru.in

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: backup for data in namespaces

2012-02-24 Thread andrew
Good question!

For us, the feature is useless without this

All datastore admin tools and utilities need to be data space aware by
default.

On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
wrote:
 Hello,
 In the Datastore Admin console, there is no UI to backup for the data
 containing in namespaces.   It shows only the entities in no namespace.
 When will this feature rollout?

 -Aswathwww.AccountingGuru.in

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Digest for google-appengine-java@googlegroups.com - 12 Messages in 10 Topics

2012-02-24 Thread Ignacio Vela
El 24/02/2012, a las 02:06, google-appengine-java@googlegroups.com 
google-appengine-java@googlegroups.com escribió:

  Today's Topic Summary

Group: http://groups.google.com/group/google-appengine-java/topics

   - backup for data in namespaces #group_thread_0 [1 Update]
   - Java Servlets in GAE #group_thread_1 [2 Updates]
   - GWT/AppEngine application for distributed role playing -
dorp#group_thread_2[1 Update]
   - Mail send from AppEngine application not received by any recipient
   from past few days #group_thread_3 [1 Update]
   - JPA Query setMaxResult vs DB Read Ops number #group_thread_4 [1
   Update]
   - jersey/jackson/jaxb java.lang.NoClassDefFoundError
#group_thread_5[1 Update]
   - Unable to load several versions of AppEngine Project and Seeing
   HardDeadLineExceeded Exceptions #group_thread_6 [1 Update]
   - DevServer fails after updating to java 6u31 #group_thread_7 [2
   Updates]
   - Clean Slate #group_thread_8 [1 Update]
   - max keys for memcache #group_thread_9 [1 Update]

  backup for data in
namespaceshttp://groups.google.com/group/google-appengine-java/t/d526dca50f590384

   Aswath Satrasala aswath.satras...@gmail.com Feb 24 08:20AM +0530

   Hello,
   In the Datastore Admin console, there is no UI to backup for the data
   containing in namespaces. It shows only the entities in no namespace.
   When will this feature rollout?

   -Aswath
   www.AccountingGuru.in



  Java Servlets in
GAEhttp://groups.google.com/group/google-appengine-java/t/674d9a9db2d38c6a

   bluechips23 bluechips...@gmail.com Feb 22 09:57AM -0800

   I am new to GAE and Java servlets. I created a Java web application on
   Eclipse as a Dynamic Web Project, which works perfectly. But now I am
   trying to port to GAE. The whole application basically has two parts:

   a) The front page (index.html) - it has three text boxes where people
   can
   enter any text there.
   b) The second page - getlist.html (resulting from the servlet) - this
   page
   is created by the Java servlet.

   Basic behavior is as follows:
   1) The user goes to the front page and enters three shopping items (e.g.
   XBox, iPhone, iPad) and clicks on the submit button
   2) On clicking the submit button, the user is directed to the
   getlist.html page, where he sees his shopping list (e.g. XBox, iPhone,
   iPad) - the same items he listed on the front page.

   Basically, I created the servlet that takes the text entered in the 1st
   page as parameters and shows them in the 2nd page (like a form
   submission).
   To do that, on the index.html file, on submit button, I have the
   following code, followed by the text boxes and submit button:

form name=input ACTION=getlist

   where, getlist calls the getlist servlet to fire up.

   Then, I wrote the servlet part and named it getlist as I want that
   servlet to fire it up when I click the submit button and process my
   input
   from index.html and generate an output to getlist.html page. So, in my
   GetList class I have the follow snippet:

@WebServlet(/getlist)

public class GetList extends HttpServlet {}

   Now my questions are:
   a) I realized that GAE supports only servlet-api.jar version 2.5, so
   @WebServlet(/getlist) throws error for me. What can I do about that?
   How
   do I identify that servlet as the getlist servlet to be called from my
   index.html page?
   b) The submit button on index.html no longer prompts the GetList class
   to
   run. In fact, when I run my GAE web application, it only runs the
   GetList
   class (and not the index.html) to start things off. So my question would
   be, what should I be doing to make the above scenario work with GAE? May
   be the better questions can be i) how do I call one servlet from
   another,
   or ii) how do I call the getlist servlet from a submit button in
   GAE,
   like I am being able to do in Eclipse as a Dynamic Web Project?

   I'm still new to all this, so I am learning. So feel free to let me know
   if
   there is a better way to handle all this.

   Thanks!




   M.W. Aruna Withanage deltaar...@gmail.com Feb 23 06:28PM -0800

   Dear bluechips23,

   Why don't you use google plugin for eclipse?
   Then you can easily create a GAE app and add servlets as you need.
   Hope this helps you.

   Thank you and best regards
   Aruna




  GWT/AppEngine application for distributed role playing -
dorphttp://groups.google.com/group/google-appengine-java/t/ab0b0c01c3c1087

   ingo ingo.jaec...@googlemail.com Feb 23 04:09PM -0800

   [This is cross-posted on the google web toolkit mailing list.]

   Hello,

   did you love to play role playing games with your friends but you just
   went abroad so you cannot meet with them to play anymore? Worry no
   more because you can go on playing with a little help from dorp:
   distributed online role playing. dorp is a Google Web Toolkit
   application running on Google App Engine. Together with a couple of
   friends I created dorp just for fun and put it 

[appengine-java] Re: GWT/AppEngine application for distributed role playing - dorp

2012-02-24 Thread vega
check maptool rptools.net for those purpose. it has a great community :)

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/iX-_tu8peiEJ.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: GWT/AppEngine application for distributed role playing - dorp

2012-02-24 Thread vega
check maptool on rptools.net - it has a great community and with the 
existing frameworks it supports a lot of the pp systems that are out 
there...

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine-java/-/P27D1NncGq8J.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Mail send from AppEngine application not received by any recipient from past few days

2012-02-24 Thread Raphael André Bauer
On Tue, Feb 21, 2012 at 8:24 AM, Gaurav Sharma
applane.develo...@gmail.com wrote:
 Hello Everyone,

 We have two Business application running on AppEngine one of which we have
 upgraded into HRD instance a couple of months before and other one was
 upgraded into HRD instance a week before.Everything was working fine on them
 but from past few days(after Friday) no mail is sending from these
 applications.No exception is coming in code and it is showing Mail send
 successfully message but mail not receiving anywhere.

 We also have few other HRD and non-HRD applications running on AppEngine in
 same account and the same code is working fine for all of them.Only these
 two applications are facing this issue.

Maybe your sent mails are classified as SPAM by the receiving party?

Best,

Raphael

 I would appreciate if anyone can help or give any suggestion on this.


 Thanks,
 Gaurav Sharma

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine-java/-/YJDfH_UnZ10J.
 To post to this group, send email to google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
inc: http://ars-machina.raphaelbauer.com
tech: http://ars-codia.raphaelbauer.com
web: http://raphaelbauer.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Re: backup for data in namespaces

2012-02-24 Thread Aswath Satrasala
I have starred 3-4 of the issues that are namespace and backup related.

-Aswath

On Fri, Feb 24, 2012 at 1:32 PM, andrew andrew.macken...@bcntouch.comwrote:

 Good question!

 For us, the feature is useless without this

 All datastore admin tools and utilities need to be data space aware by
 default.

 On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
 wrote:
  Hello,
  In the Datastore Admin console, there is no UI to backup for the data
  containing in namespaces.   It shows only the entities in no namespace.
  When will this feature rollout?
 
  -Aswathwww.AccountingGuru.in

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] JPA Query setMaxResult vs DB Read Ops number

2012-02-24 Thread Matthew Jaggard
The first one :-)

On 22 February 2012 21:01, Peter Han devifr...@gmail.com wrote:

 situation:
 - user entities in db (properties id, name, sex, age)
 - you want to get the oldest of them with min. age 10

 createQuery(select u from User u where u.age=10 order by age desc)
 query.setMaxResults(1)  !!!
 query.getResultList();

 how GAE handles this situation?

 1. search in index table where age=10 and only the oldest
 2. found 1 entity key
 3. read entity
 4. return entity

 OR

 1. find all of them in index table where age=10
 2. found X entity keys
 3. read all entities
 4. return only the oldest of them (because JPA maxResults=1)

 Thanks

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine for Java group.
 To post to this group, send email to
 google-appengine-java@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine-java+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: JPA Query setMaxResult vs DB Read Ops number

2012-02-24 Thread Peter Han
amen :-)


On Feb 24, 3:13 pm, Matthew Jaggard matt...@jaggard.org.uk wrote:
 The first one :-)

 On 22 February 2012 21:01, Peter Han devifr...@gmail.com wrote:







  situation:
  - user entities in db (properties id, name, sex, age)
  - you want to get the oldest of them with min. age 10

  createQuery(select u from User u where u.age=10 order by age desc)
  query.setMaxResults(1)  !!!
  query.getResultList();

  how GAE handles this situation?

  1. search in index table where age=10 and only the oldest
  2. found 1 entity key
  3. read entity
  4. return entity

  OR

  1. find all of them in index table where age=10
  2. found X entity keys
  3. read all entities
  4. return only the oldest of them (because JPA maxResults=1)

  Thanks

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine for Java group.
  To post to this group, send email to
  google-appengine-java@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine-java+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Help, error from example - java.lang.NoClassDefFoundError: Could not initialize class guestbook.PMF

2012-02-24 Thread Vaso
How to reinstall appengine  eclipse plugin?
Can it help to decide problem?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine for Java group.
To post to this group, send email to google-appengine-java@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



Re: [appengine-java] Digest for google-appengine-java@googlegroups.com - 11 Messages in 6 Topics

2012-02-24 Thread Ignacio Vela
El 25/02/2012, a las 01:22, google-appengine-java@googlegroups.com 
google-appengine-java@googlegroups.com escribió:

  Today's Topic Summary

Group: http://groups.google.com/group/google-appengine-java/topics

   - Help, error from example - java.lang.NoClassDefFoundError: Could not
   initialize class guestbook.PMF #group_thread_0 [1 Update]
   - JPA Query setMaxResult vs DB Read Ops number #group_thread_1 [2
   Updates]
   - backup for data in namespaces #group_thread_2 [4 Updates]
   - Mail send from AppEngine application not received by any recipient
   from past few days #group_thread_3 [1 Update]
   - GWT/AppEngine application for distributed role playing -
dorp#group_thread_4[2 Updates]
   - Digest for google-appengine-java@googlegroups.com - 12 Messages in 10
   Topics #group_thread_5 [1 Update]

  Help, error from example - java.lang.NoClassDefFoundError: Could not
initialize class
guestbook.PMFhttp://groups.google.com/group/google-appengine-java/t/16309c42ac6e02fe

   Vaso 81n...@gmail.com Feb 24 04:27PM -0800

   How to reinstall appengine  eclipse plugin?
   Can it help to decide problem?



  JPA Query setMaxResult vs DB Read Ops
numberhttp://groups.google.com/group/google-appengine-java/t/b210969c5ecb323d

   Matthew Jaggard matt...@jaggard.org.uk Feb 24 02:13PM

   The first one :-)





   Peter Han devifr...@gmail.com Feb 24 07:10AM -0800

   amen :-)





  backup for data in
namespaceshttp://groups.google.com/group/google-appengine-java/t/d526dca50f590384

   andrew andrew.macken...@bcntouch.com Feb 24 12:00AM -0800

   Good question!

   For us, the feature is useless without this

   All datastore admin tools and utilities need to be data space aware by
   default.

   On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
   wrote:




   andrew andrew.macken...@bcntouch.com Feb 24 12:02AM -0800

   Also, I think there is a feature request for this in issue tracker.
   I'd find it and star it.

   On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
   wrote:




   andrew andrew.macken...@bcntouch.com Feb 24 12:02AM -0800

   Good question!

   For us, the feature is useless without this

   All datastore admin tools and utilities need to be data space aware by
   default.

   On Feb 24, 3:50 am, Aswath Satrasala aswath.satras...@gmail.com
   wrote:




   Aswath Satrasala aswath.satras...@gmail.com Feb 24 07:38PM +0530

   I have starred 3-4 of the issues that are namespace and backup related.

   -Aswath




  Mail send from AppEngine application not received by any recipient from
past few 
dayshttp://groups.google.com/group/google-appengine-java/t/a4ab3260080123a4

   Raphael André Bauer raphael.andre.ba...@gmail.com Feb 24 02:04PM
   +0100

   On Tue, Feb 21, 2012 at 8:24 AM, Gaurav Sharma

We also have few other HRD and non-HRD applications running on
   AppEngine in
same account and the same code is working fine for all of them.Only
   these
two applications are facing this issue.

   Maybe your sent mails are classified as SPAM by the receiving party?

   Best,

   Raphael

   --
   inc: http://ars-machina.raphaelbauer.com
   tech: http://ars-codia.raphaelbauer.com
   web: http://raphaelbauer.com



  GWT/AppEngine application for distributed role playing -
dorphttp://groups.google.com/group/google-appengine-java/t/ab0b0c01c3c1087

   vega _v...@vr-web.de Feb 24 02:54AM -0800

   check maptool rptools.net for those purpose. it has a great community :)




   vega _v...@vr-web.de Feb 24 02:55AM -0800

   check maptool on rptools.net - it has a great community and with the
   existing frameworks it supports a lot of the pp systems that are out
   there...



  Digest for google-appengine-java@googlegroups.com - 12 Messages in 10
Topicshttp://groups.google.com/group/google-appengine-java/t/efb650adcbfb8025

   Ignacio Vela vela.igna...@gmail.com Feb 24 05:49AM -0300

   El 24/02/2012, a las 02:06, google-appengine-java@googlegroups.com 
   google-appengine-java@googlegroups.com escribió:

   Today's Topic Summary

   Group: http://groups.google.com/group/google-appengine-java/topics

   - backup for data in namespaces #group_thread_0 [1 Update]
   - Java Servlets in GAE #group_thread_1 [2 Updates]
   - GWT/AppEngine application for distributed role playing -
   dorp#group_thread_2[1 Update]
   - Mail send from AppEngine application not received by any recipient
   from past few days #group_thread_3 [1 Update]
   - JPA Query setMaxResult vs DB Read Ops number #group_thread_4 [1
   Update]
   - jersey/jackson/jaxb java.lang.NoClassDefFoundError
   #group_thread_5[1 Update]
   - Unable to load several versions of AppEngine Project and Seeing
   HardDeadLineExceeded Exceptions #group_thread_6 [1 Update]
   - DevServer fails after updating to java 6u31 #group_thread_7 [2
   Updates]
   - Clean Slate #group_thread_8 [1 Update]
   - max keys for memcache #group_thread_9 [1 Update]

   backup for data in
   namespaces
   

Re: [google-appengine] For information about how to identify the cause of the error to start up the backend

2012-02-24 Thread linkseed
The script for loading a library was prepared and it set to /_ah/warmup. 
However, the error did not change. 
*For more information, please look at the attached image of the first post.

(app.yaml)
- url: /_ah/warmup
  script: warmup.app


When I specified warmup.app as start handler, it succeeded in starting of 
the backend. 

(backends.yaml)
backends:
- name: backend
  class: B1
  options: dynamic
  instances: 1
  start: warmup.py


Sorry...

-- 
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/-/Xa4nYAtq4i4J.
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: Python 2.7: Instance memory limitations with concurrent requests

2012-02-24 Thread Andrin von Rechenberg
It turns out that the requests with high ram requirements are so well
distributed
that I'm not running out of memory. So my initial concerns (the first mail
in this
thread) can be forgotten. YAY.

-Andrin



On Wed, Feb 22, 2012 at 9:08 AM, Robert Kluin robert.kl...@gmail.comwrote:

 Hey Alex,
  I should probably have stated this better as memory is not always
 handled well.  For example, the ext.db code keeps many copies of the
 data in various forms.  This can cause rapid and unexpected memory
 blowups, and the result is something that appears similar to a memory
 leak.  As Brian noted, this is partially caused by Python's handling
 of memory.

  However, there are a number of scenarios where you get real memory
 leaks.  For example there have recently been several posts / issues
 from people having issues with the blobstore leaking memory.  Some of
 these are quite detailed and the repro code is very simple.  If I'm
 not mistaken, in the past, we've observed this happening with heavy
 datastore use as well, though I don't have simple repro cases for
 those.



 Robert





 On Tue, Feb 21, 2012 at 16:13, alex a...@cloudware.it wrote:
  The whole point of this topic was python27 runtime, multithreading and
  concurrent requests. Your specific case, plus python 2.5, doesn't
  necessarily means memory leaks in the runtime itself. I'd profile my code
  that handles most frequently accessed URLs to start off.
 
  --
  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/-/ZyB9_mGBPDQJ.
 
  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 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] Any news regarding SSL support for google apps registered domains?

2012-02-24 Thread Iván Rodríguez
Hi,

I filled this form 1 month ago and I have not received any feedback from
GOOGLE. What is happening?

Thanks


2012/2/23 Cayden Meyer cay...@google.com

 Hi Joshua,

 Sadly I do not have a date to announce at this point, but rest assured we
 will announce one as soon as we can. We know this is an important feature
 for App Engine developers and we are working hard to make this generally
 available.

 In the meantime I would encourage you to apply for the Trusted
 Tester program if you have not already.

 Thanks,

 Cayden Meyer
 Product Manager, Google App Engine

 On 24 February 2012 02:12, Joshua Kappon sh...@mindpos.com wrote:

 Hi,

 We're working on a web based product for SMB's and want to be able to
 offer SSL by default to our customers.
 Can someone tell us if  SSL support for google apps registered domains
 is scheduled around the next 6 months?
 (we saw it is tested, but no status regarding when it will be
 available exists)

 Thanks
 Joshua

 --
 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 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: Full Text Search Options

2012-02-24 Thread Lucas
very popular topic. everyone eyes on same feature =)

-- 
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] BTW: There is a great thread about python 2.7 performance on google-appengine-python

2012-02-24 Thread Andrin von Rechenberg
If you've missed the thread about Python 2.7 performance on
google-appengine-python:
http://groups.google.com/group/google-appengine-python/browse_thread/thread/59578235d6a3f48

Cheers,
-Andrin

-- 
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: GAE and EU law regulations requiring for personal information data to be located in EU.

2012-02-24 Thread pdknsk
http://code.google.com/p/googleappengine/issues/detail?id=45
http://code.google.com/p/googleappengine/issues/detail?id=193

-- 
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: GAE and EU law regulations requiring for personal information data to be located in EU.

2012-02-24 Thread Ian Marshall
You might want to look at the discussion thread for Google App Engine
issue 193 (Country-specific Storage) at:

  http://code.google.com/p/googleappengine/issues/detail?id=193#c6


On Feb 24, 6:03 pm, Janusz Skonieczny janusz.skoniec...@gmail.com
wrote:
 Hi all,

 I'm looking into a possible case that I'll have to shut down my GAE app
 just because it's data centre is located outside EU.

 There is a discussion in Poland concerning personal information, and where
 it can be stored and processed by polish companies. Today a safe bet is
 that my application data should never leave EU, if not I could face
 criminal charges and imprisonment :/

 I'm not sure, but I think other EU countries may have similar regulations
 (please correct me).

 So here my question:
 Is there any plan to locate GAE data centres in EU?

-- 
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: Billing - credit, prepay, minimum ammonits and VAT Invoices

2012-02-24 Thread Janusz Skonieczny
A VAT Invoice is a fiscal document that has all the law required 
information, eg. company that is purchasing services with it's VAT ID.

I use my personal credit card to pay for GAE, and there is no way to enter 
the company info in GAE, so I can not get a proper refund. I cannot enter 
GAE bill as a company expense. 


Charging few bucks every week is still silly, I'd rather get a bill when I 
reach 50$ minimum In resource consumption. And if crediting me is to risky, 
then I could pay this 50$ in advance. 

IMHO there is a big gap in business size that is visible to Google. You 
need to spend 500$ mo to get enterprise account. I'm sorry I cannot — yet — 
afford to pay 6000 $ a year, not do I need the that kind resources, I'm 
just starting. I chose GAE so I can grow easily, for now there is no other 
argument. I could cheaper host my app elsewhere, but then in the future I 
would need to put extra work to scale.

I am happy with… no I love GAE, but it would be nice if got more 
small business oriented from the accounting perspective. I think these are 
little features in comparison to eg. full text search, and they could be 
easily implemented.

Regards. Janusz.  

PS. The cost of processing every bill for few $, it is a waste of my time. 
Yet not deducing TAX money is shameless waste to. It is not green ;)  

-- 
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/-/PZhJGhGv2usJ.
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: 1.6.3 Prerelease SDK Available

2012-02-24 Thread alex
First off, awesome job.

There's one thing I'm not sure whether I'm missing something or doing it 
wrong but, a command like this one:

appcfg.py --oauth2 -V some-version request_logs APP_ROOT /tmp/requests.log

gives me an exception:

TypeError: object of type 'NoneType' has no len()

I noticed in appengine_rpc_httplib2.py, in Send(...) method args: 

...payload: The body of the request, or None to send an empty request. And 
later, in the code (line 204), there's this:

headers['content-length'] = str(len(payload))

- and that's precisely where it gives the exception, because request_logs 
action eventually calls Send() with payload=None.

I know this is a prerelease so...  I was just wondering whether it's me 
doing something wrong.


PS I'm using python2.7. full traceback is attached.


On Monday, February 20, 2012 7:03:01 PM UTC+1, Marce (Google) wrote:

 Hi,

 The 1.6.3 prerelease SDKs are now available to download for Python and 
 Java here: http://code.google.com/p/googleappengine/downloads/list

 Please see release notes below.

 -Marzia

 Java Version 1.6.3==- In the Admin Console, you can use the 
 Traffic Splitting feature to send a  certain percentage of traffic to a 
 non-default application version. The  traffic is split by either cookie or IP 
 address.- Emails from users that belong a Google Apps domain which are sent 
 from a  request originating from the same domain will have a DKIM signature 
 applied to  them.- The instances screen in the Admin Console now has a button 
 to shut down  a specific instance.- Each application log has a link to the 
 instance that served the request. If  the instance is no longer serving 
 requests, a message will be displayed.- The TaskQueue API now supports the 
 ability to tag a Pull Queue task. You may  then lease tasks by tag.- Using 
 Google Apps wildcard domain mappings, you can access alternate  versions of 
 your app via a custom domain.- Pull Queue ACLs now support a writer-email 
 role to support notifications  of delivery of tasks to queues.- Push and Pull 
 Queues are now listed separately in the SDK development console.- The 
 DataNucleus Enhancer command line tool  
 (com.google.appengine.tools.enhancer.Enhance) now supports the  
 -enhancerVersion flag, which allow you to specify the version of DataNucleus  
 with which to enhance your JDO/JPA classes.- The dev appserver command line 
 now supports the --generated_dir flag, which  allows you to specify a 
 directory in which to write files generated by the  SDK.- Fixed a 
 StackOverflowError when using the Remote API.
 http://code.google.com/p/googleappengine/issues/detail?id=6349 
 http://www.google.com/url?q=http://code.google.com/p/googleappengine/issues/detail%3Fid%3D6349usg=AFQjCNGW-vOO4iX4ru5A-kuIZXIePWAO4A

 Python Version 1.6.3===- In the Admin Console, 
 you can use the Traffic Splitting feature to send a  certain percentage of 
 traffic to a non-default application version. The  traffic is split by either 
 cookie or IP address.- Emails from users that belong a Google Apps domain 
 which are sent from a  request originating from the same domain will have a 
 DKIM signature applied to  them.- Datastore statistics now show the amount of 
 storage used by application  indexes.- The instances screen in the Admin 
 Console now has a button to shut down  a specific instance.- Each application 
 log has a link to the instance that served the request. If  the instance is 
 no longer serving requests, a message will be displayed.- The TaskQueue API 
 now supports the ability to tag a Pull Queue task. You may  then lease tasks 
 by tag.- Using Google Apps wildcard domain mappings, you can access alternate 
  versions of your app via a custom domain.- Pull Queue ACLs now support a 
 writer_email role to support notifications  of delivery of tasks to 
 queues.- Push and Pull Queues are now listed separately in the SDK 
 development console.- The NDB datastore api is now generally available.- 
 Appcfg now supports OAuth2.- Python 2.7 now uses webapp2 version 2.5.1.- 
 Django 1.3 is now available in the Python 2.7 runtime.- GQL Query now 
 supports custom type casting for list elements for IN filters.- Fixed an 
 issue where StringProperty's validate() didn't check the 500 byte  limit.
 http://code.google.com/p/googleappengine/issues/detail?id=4030 
 http://www.google.com/url?q=http://code.google.com/p/googleappengine/issues/detail%3Fid%3D4030usg=AFQjCNEInKfglRMh3rB_SinS2ZFnVRvFCg-
  Fixed an issue where the datastore admin didn't work with Federated Login.   
  http://code.google.com/p/googleappengine/issues/detail?id=4111 
 http://www.google.com/url?q=http://code.google.com/p/googleappengine/issues/detail%3Fid%3D4111usg=AFQjCNG9NgpxiysOpsWKKc1CpVM6GcF61Q-
  Fixed an issue in the SDK where failing to call _RemoveTxn in the  
 datastore_stub_util caused a memory leak:
 http://code.google.com/p/googleappengine/issues/detail?id=6157 
 

[google-appengine] Re: Billing - credit, prepay, minimum ammonits and VAT Invoices

2012-02-24 Thread GordonHo
I can only agree here.

Having every week a billing is indeed annoying.
We'd gladly prepay or switch at least to monthly billing.


Cheers, 

Gordon

On Friday, February 24, 2012 7:39:54 PM UTC+1, Janusz Skonieczny wrote:

 A VAT Invoice is a fiscal document that has all the law required 
 information, eg. company that is purchasing services with it's VAT ID.

 I use my personal credit card to pay for GAE, and there is no way to enter 
 the company info in GAE, so I can not get a proper refund. I cannot enter 
 GAE bill as a company expense. 


 Charging few bucks every week is still silly, I'd rather get a bill when I 
 reach 50$ minimum In resource consumption. And if crediting me is to risky, 
 then I could pay this 50$ in advance. 

 IMHO there is a big gap in business size that is visible to Google. You 
 need to spend 500$ mo to get enterprise account. I'm sorry I cannot — yet — 
 afford to pay 6000 $ a year, not do I need the that kind resources, I'm 
 just starting. I chose GAE so I can grow easily, for now there is no other 
 argument. I could cheaper host my app elsewhere, but then in the future I 
 would need to put extra work to scale.

 I am happy with… no I love GAE, but it would be nice if got more 
 small business oriented from the accounting perspective. I think these are 
 little features in comparison to eg. full text search, and they could be 
 easily implemented.

 Regards. Janusz.  

 PS. The cost of processing every bill for few $, it is a waste of my time. 
 Yet not deducing TAX money is shameless waste to. It is not green ;)  



-- 
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/-/SBrOnI749PIJ.
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] What are the rules for sending email through an application

2012-02-24 Thread mikaye
Previously, I had sent emails in my GAE appplication through my own
account. This works fine.

e.g. myapp.appspot.com

I'm working with a 3rd party and have updated their site so their
domain, http://www.nextgreatstartup.com, points to myapp.appspot.com
by adding it as a service to their GAE apps aacount. So far, so good.

I added a new user to their GAE apps account,

e.g. i...@nextgreatstartup.com

I updated the app to send emails through this user.

I don't see any error messages in the app logs nor do I receive any
emails sent from the app.

Any idea what I'm doing wrong?

-- 
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.