[appengine-java] Re: How to organize your server code

2010-05-24 Thread Tristan
Here's how you'd do it using Guice on the server: public MyServlet { @Inject OtherServlet otherServlet; public void someMethod(){ otherServlet.doSomething(); ... } } On May 23, 6:18 am, wilberforce wilberfo...@arcor.de wrote: If I want to organize my server code into multiple

[appengine-java] Re: Mysql database in App Engine datastore

2010-05-24 Thread Tristan
If you can wait for Google App Engine for Business it will support SQL storage eventually and you won't have to convert anything. http://code.google.com/appengine/business/roadmap.html On May 23, 12:16 am, Jitendra Gupta ibs.jiten...@gmail.com wrote: How to store my Mysql database  in App

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Tristan
The way you load the memcache, you just put data in it. It is automatically shared between all JVMs and you don't have to do anything special. As to when to load it up. Say you have some preferences stored in the datastore. You should put those preferences into the memcache and always check the

[appengine-java] Re: Problem in Serializing ArrayListString - JDO- GWT - GAE/J

2010-05-24 Thread Love Yao
first YOU make your BO and DTO one class,I do not think it is a good idea and org.datanucleus.sco.backed.ArrayList? try to use Java,util.* On May 23, 7:03 pm, mklarm...@googlemail.com mklarm...@googlemail.com wrote: i am having the same issue here. -- You received this message because

[appengine-java] Does Memcache persist if all JVMs go to JVM heaven?

2010-05-24 Thread Tristan
Does anyone know the answer to this: If all the JVMs are killed, does the memcache stick around or is it recycled? (I know memcache expires eventually, just curious if it is possible for it to carry data across JVM valley of death) Cheers, Tristan -- You received this message because you are

[appengine-java] Google App Engine for Business

2010-05-24 Thread asianCoolz
i saw the roadmap for the possibility to use sql directly on GAE. in that case, i curious to know what is the scability of using sql? there will be limitation compared to using gae bigtable right? -- You received this message because you are subscribed to the Google Groups Google App Engine for

Re: [appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Chau Huynh
Hi Rahul, About loading request/performance, there're lots of discussions that you can find in the groups, please just try google it. Here are some notes based on reading those. Latency causes by 1- time to start new JVM 2- time to load your application To reduce load time by 1) others star

[appengine-java] Re: What Framework to use?

2010-05-24 Thread Jake
I'm also using Wicket and it works well. I have had some difficulties with GAE but, after many months of debugging, I do not believe they are related to Wicket. Sometimes, I have a pretty long startup time, but it is never during the actual Wicket startup (from filter init to app ready) - it's

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Rahul
Tristan, I do understand what you are saying but my question is there exactly do we need to put data in memcache. If i put it in a servlet and load that servlet with load-on-startup parameter, then does it remain in cache for the entire period as I guess, load-on-startup servlet is loaded every

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Rahul
Chau, I have already tried various solutions out of those mentioned above, including b) request Google to load your app before start dispatch request to that instance but it is still slow, My exact question is when to put the data in cache. Thanks, Rahul On May 24, 4:49 am, Chau Huynh

[appengine-java] Re: Best method to set up nested classes in Objectify

2010-05-24 Thread Jake
Hey, I'll try to answer this, but I'm not an expert - would love to hear an expert's opinion of my answer. When you say inside, it can be a bit misleading to me. If you're talking about Embedded classes, the entire object is fetched, so that wouldn't help for #1 or #2. If you are just talking

[appengine-java] Re: Problem in Serializing ArrayListString - JDO- GWT - GAE/J

2010-05-24 Thread timwhunt
I was getting a similar error and I think I fixed it by just cleaning and rebuilding the app. But I'm struggling to remember clearly exactly what happened so I apologize if that's not what fixed it. -- You received this message because you are subscribed to the Google Groups Google App Engine

[appengine-java] Re: Problem getting list of JDO objects with List of of keys

2010-05-24 Thread timwhunt
This article from the GAE Java Persistence Blog, Executing Batch Gets, might help: http://gae-java-persistence.blogspot.com/2009/10/executing-batch-gets.html That blog seems like the missing manual for using the datastore with Java. I've found many of very useful tips and examples in it, but I

[appengine-java] Unsubsribe

2010-05-24 Thread Manoj Mohan
-- 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-j...@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com. For

[appengine-java] getThreadLocalResponse().sendRedirect(str) is not working!

2010-05-24 Thread Yousef.Ghandour
Using sendRedirect(url) on the server is not working? Any ideas? -- 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-j...@googlegroups.com. To unsubscribe from this group, send

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread bufferings
Hi drift elysium, I think you are using the version 1.3.3.1 if you use appengine-api-1.0-sdk-1.3.3.1.jar. You can confirm the version by the value of SystemProperty.version. http://code.google.com/intl/en/appengine/docs/java/javadoc/com/google/appengine/api/utils/SystemProperty.html#version I

Re: [appengine-java] Re: Development mode for HttpServlet

2010-05-24 Thread bufferings
Hi drift elysium, You don't have to set any parameter. You can try it on the dev-server and the prod-server(e.g. logging the value), and you will know the action well. - bufferings 2010/5/24 drift elysium drift2elys...@gmail.com: Hi bufferings, Thanks for the site, So here I saw this:

Re: [appengine-java] bulkloader dump and restore

2010-05-24 Thread Pavel Byles
I'm having a problem w/ bulkloading entities for my Java app and specifying autogenerated id's in my python model. My Java class look similar to this: @PersistenceCapable(identityType = IdentityType.APPLICATION) public class MyEntity implements Serializable { @PrimaryKey

Re: [appengine-java] Re: What Framework to use?

2010-05-24 Thread nicolas melendez
You can see my wicket and gae app, the start up time is aceptable because it doesn't use jdo. Www.clasificad.com.ar El may 24, 2010 10:30 a.m., Jake jbrooko...@cast.org escribió: I'm also using Wicket and it works well. I have had some difficulties with GAE but, after many months of debugging,

[appengine-java] GAE Task Queue and Google Spreadsheet Java API

2010-05-24 Thread Rudolf
Hello, I use Google Spreadsheet to store my data; I would like to use GAE to retrieve these data and perform calculations on it; I use the following code to get the data from the spreadsheet server - executed in a GAE task queue: ListFeed rows1[int_year - 1993] = getData_Query_ListFeed((

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Rahul
Ok. Let me explain the complete scenario. Suppose I have lot of preference on my page which are stored in the database. Now i have multiple options, 1. Load all the preference in Hashmap in a servlet and mark that servlet as Load-on-startup to 0 and then use the hashmap cache when a new user

Re: [appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Tristan Slominski
This sounds a lot like the sharded counter scenario. I think they came up with a committing to datastore strategy that worked well. On another hand, you can always queue a task and let the task queue persist the preferences when it gets around to it. On Mon, May 24, 2010 at 11:16, Rahul

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread drift elysium
Hi, One reason I suspect might be this. I have my servlets under the folder servlets . So in the web.xml I had mapping like this: servlet-namecomputeIntersection/servlet-name servlet-classservlets.computeIntersectionServlet/servlet-class how do I specify the path for the servlet class

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread bufferings
hi I want to know servlet-mapping and computeIntersectionServlet class name. 2010/5/25 drift elysium drift2elys...@gmail.com: Hi, One reason I suspect might be this. I have my servlets under the folder servlets . So in the web.xml I had mapping like this:

[appengine-java] Re: Bulkupload int key?

2010-05-24 Thread Craig Berry
Can someone help me with this, please? I'm sure the answer is trivial, but another weekend of tinkering hasn't led me to the solution. On Fri, May 21, 2010 at 20:21, Craig Berry cdbe...@gmail.com wrote: I have an xml file containing data which I wish to bulkupload to GAE. I am using the preview

[appengine-java] Re: Best method to set up nested classes in Objectify

2010-05-24 Thread Mike
I'm not an expert, but I believe I understand Objectify (and -- you could post the query on their group as well, the owner is very responsive and helpful). The structure would more accurately have been described as: @Entity public class A { private Long id; @Embeded private B child; } I

[appengine-java] Re: How to organize your server code

2010-05-24 Thread Mike
Actually, I would recommend the following syntax instead: public MyServlet { private OtherServlet otherServlet @Inject public MyServlet(OtherServlet otherServlet) { this.otherServelt = otherServlet; } // ... } Its ok to do the field injection, but the constructor injection is recommended (I

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread drift elysium
here's my web.xml file: ?xml version=1.0 encoding=utf-8? web-app xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns=http://java.sun.com/xml/ns/javaee; xmlns:web=http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd; xsi:schemaLocation=http://java.sun.com/xml/ns/javaee

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread drift elysium
It basically displays the two textarea containing the edges of the two graphs..and the another textarea showing the intersection of the 2 graphs On Mon, May 24, 2010 at 12:19 PM, bufferings bufferi...@gmail.com wrote: mm... The setting is good. So I touched your service.

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread bufferings
mm... The setting is good. So I touched your service. http://deepmhn.appspot.com/ The servlet call seems to be working. What does computeIntersectionServlet draw? 2010/5/25 drift elysium drift2elys...@gmail.com: here's my web.xml file: ?xml version=1.0 encoding=utf-8? web-app

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread bufferings
Can you write your servlet code here? 2010/05/25 2:22 drift elysium drift2elys...@gmail.com: It basically displays the two textarea containing the edges of the two graphs..and the another textarea showing the intersection of the 2 graphs On Mon, May 24, 2010 at 12:19 PM, bufferings

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-24 Thread drift elysium
which one? the EdgeIntersection or computeIntersection On Mon, May 24, 2010 at 12:29 PM, bufferings bufferi...@gmail.com wrote: Can you write your servlet code here? 2010/05/25 2:22 drift elysium drift2elys...@gmail.com: It basically displays the two textarea containing the edges of the

[appengine-java] Error in store BLOBS at GAE

2010-05-24 Thread Tianshu
hello, i'm a student from Temasek poly of Singapore. within one of my project. i want to use blob to store some files like pictures, documents. because of i didn't use it before. so, i just follow the teaching notes of Google Code(link:http://code.google.com/intl/en/appengine/

[appengine-java] Error in store BLOBS at GAE

2010-05-24 Thread Tianshu
hello, i'm a student from Temasek poly of Singapore. within one of my project. i want to use blob to store some files like pictures, documents. because of i didn't use it before. so, i just follow the teaching notes of Google Code(link:http://code.google.com/intl/en/appengine/

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-24 Thread Yogesh Agarwal
Memcache is shared across instances, automatically it is available as a service you do not have to load it just. User it straight away to store or access object in memory. Thanks, Yogesh On May 22, 9:37 pm, Rahul rahul.jun...@gmail.com wrote: Chau, Thanks for pointing to the link. I did go

[appengine-java] Debug Local var.

2010-05-24 Thread ww34ww34
I'm new on GAE. I need to debug some var, on my development server (local). Or to see local log. How? SDK 1.3.3.1 my logging.proprieties look like this # A default java.util.logging configuration. # (All App Engine logging is through

[appengine-java] Re: What Framework to use?

2010-05-24 Thread Jake
Hey, I also dropped JDO in favor of Objectify. I tried loading your site 4 times in the span of about 4 minutes: 3 times the delay was over 9 seconds, sometimes up to 15 seconds. I presume those were loading requests as the delay was all located in the initial request. These still remain my

Re: [appengine-java] Set all dashboard times to local time

2010-05-24 Thread Ikai L (Google)
I'm afraid not. You'll want to star the issues that are important to you: http://code.google.com/p/googleappengine/issues/list?can=2q=time+zonecolspec=ID+Type+Status+Priority+Stars+Owner+Summary+Log+Componentcells=tiles

Re: [appengine-java] Error in store BLOBS at GAE

2010-05-24 Thread Patrick Brown
Hi What does your web.xml look like? Thanks, Patrick On Sun, May 23, 2010 at 11:37 PM, Tianshu dts...@gmail.com wrote: hello, i'm a student from Temasek poly of Singapore. within one of my project. i want to use blob to store some files like pictures, documents. because of i didn't use

[appengine-java] Re: Problem getting list of JDO objects with List of of keys

2010-05-24 Thread tempy
I've had trouble with the .getById methods, so I do it like this, which seems to work reliably: query = pm.newQuery(MyClass.class); query.setFilter(_ID == :keyList); //_ID is the PK ListMyClass results = (ListMyClass)query.execute(Keys); // Keys

[appengine-java] How to change order of items in a collection property?

2010-05-24 Thread Jaroslav Záruba
Hello Could anyone please point me to a document that mentions what is the proper way of changing order of items in a collection? I ran out of ideas. When I assign the newly created collection everything seems OK, but after committing the transaction the collection is just gone. (With or without

Re: [appengine-java] Error in store BLOBS at GAE

2010-05-24 Thread dts...@gmail.com
Hi,Patrick i just copy all from google codes at http://code.google.com/intl/en/appengine/ docs/java/blobstore/overview.html#Complete_Sample_App its the same. i didn't change any code. that's the point why it can not run==! thank you~ ?xml version=1.0 encoding=utf-8? web-app

Re: [appengine-java] GAE Task Queue and Google Spreadsheet Java API

2010-05-24 Thread dts...@gmail.com
i got the same problem but no this method. also run very well in localhost. and can not run in GAE. 2010/5/24 Rudolf rudolfstolz...@googlemail.com: g files on the GAE server - it looks like that the 30 sec limitation for a request is not touched; it looks like that the code of the task is not

Re: [appengine-java] Re: Mysql database in App Engine datastore

2010-05-24 Thread Guillermo Schwarz
You can use jiql in the mean time. http://www.jiql.org/xwiki/bin/view/Main/ Cheers, Guillermo. On Mon, May 24, 2010 at 2:05 AM, Tristan tristan.slomin...@gmail.comwrote: If you can wait for Google App Engine for Business it will support SQL storage eventually and you won't have to convert

[appengine-java] Re: Error in store BLOBS at GAE

2010-05-24 Thread charming30
I had the same problem but found out the reason. You must enable Billing for your Account in order for Blobstore to work. Checout the exception in your Admin Console Log (after uploading), you will see the description of the error. However, this should work in your dev mode without any issues.

[appengine-java] Re: What Framework to use?

2010-05-24 Thread Philippe Marschall
On May 21, 6:29 pm, hurray! sudarshan.acha...@gmail.com wrote: I am looking for a web framework to use on GAE that 1. Provides pretty URLs 2. Makes passing data to views easier. 3. Is productive. I tried Grails for a small app, but the startup time was too long. I am curious what

[appengine-java] Re: Jetty Bug : Freemarker + Sitemsh (JSP decorators) Will not work

2010-05-24 Thread Sudhir Ramanandi
Can any dev confirm this as a bug ? On Sun, May 23, 2010 at 1:09 PM, Sudhir Ramanandi sramana...@gmail.comwrote: See http://code.google.com/p/googleappengine/issues/detail?id=3252 -- Sudhir Ramanandi http://www.ramanandi.org -- Sudhir Ramanandi http://www.ramanandi.org -- You

[appengine-java] Spring Roo as the local Datastore viewer.

2010-05-24 Thread niraj
Can the SpringRoo be included into the GAE core as a replacement for LocalDataStore Viewer at http://localhost:/_ah/admin/datastore. Why can the GAW code look at the Domain class and then create a springroo based GUI by default in the background -- You received this message because you are

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
Dear Group Members: I thought it over again. I found out that in effect the cloud does not today meet my requirement for security. I definitively think that this is the place to discuss that project. I think I have to tell this forum exactly what is my project and that will give you a better

[google-appengine] Re: Not Quite Grokking Datastore

2010-05-24 Thread MahatmaManic
Big monster list! My app allows users to send requests to their network which I am arbitrarily defining as 1st and 2nd degree relationships. I assume I don't want to store it as a big monster list for each user, but I do need to build it as efficiently as possible on the fly. Thanks for the

[google-appengine] Re: Who can use App Engine for Business?

2010-05-24 Thread PEZ
Thanks, I guess that was what I expected. /PEZ On May 23, 12:56 am, Devraj Mukherjee dev...@gmail.com wrote: Hi, As I understand this, the $8 per user is for Google Apps for domains users. The App can only be access by users of that domain. If you are running a SaaS style service the normal

[google-appengine] SpringSource

2010-05-24 Thread Massimiliano
Dear All, I have seen the video of Google I/O and I was impressed of SpringSource Roo. This make really fast to build a website, but I can't write Java. Is there something like this working with Python? Have I to learn Java instead? In the Google developers video they was talking about a graphic

[google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread hawkett
A small issue if the economy goes down the drain on the scale you are talking about is that an internet where everyone has the capability to connect to a cloud system is going to be difficult to maintain. It's not going to be easy for google to make money, for individuals to pay their internet

[google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread gops
@hawkett last line was the perfect answer to @keren. instead of making a central system on cloud , designing a software that is very highly distributed using highest encryption standard is a way to go. on some level , people at http://www.joindiaspora.com/ are doing that thing at social

[google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread gops
@keren, i may not have economical expertise , but one thing is sure , as long as this world is running from greed and passion of people ( imho, 2 holiest emotion ) , the economy is not going to down for sure. On May 24, 4:52 pm, gops patelgo...@gmail.com wrote: @hawkett  last line was the

[google-appengine] Re: urls.py best practice

2010-05-24 Thread dar
This sounds very similar to the issue reported on the google-app- engine-django helper issue list: http://code.google.com/p/google-app-engine-django/issues/detail?id=169 I never experienced this in my apps, but I incorporated the patch into my helper fork to be safe. Are you using the helper

[google-appengine] Re: AppEngine servin cluster overloaded?

2010-05-24 Thread Sarbyn
I need a feedback from GAE teams, because my webapp is still blocked due that error: Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this message

[google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread hawkett
@gops this style of system is the holy grail of distributed systems, however the model you have suggested perhaps suffers from lack of redundancy. If only you have your data (or some of your data), and only you have access to it, then failure at that point represents total loss. The solution is a

[google-appengine] Indexes very very very slow to create

2010-05-24 Thread Geoff
I created some (3) indexes on an empty bigtable about45 hours ago and they are still saying Building Queued: 1 Running: 0 Completed: 1 Total: 2 Is this not unusually (unacceptably) slow? Geoff. -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: Indexes very very very slow to create

2010-05-24 Thread Geoff
That should read 4/5 not 45. But still... On May 24, 2:50 pm, Geoff geoffrey.cr...@omg3d.com wrote: I created some (3) indexes on an empty bigtable about45 hours ago and they are still saying Building Queued: 1 Running: 0 Completed: 1 Total: 2 Is this not unusually (unacceptably) slow?

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Duong BaTien
Hi: This is an interesting topic. I am a retired entrepreneur, professional software developer, professional economist, economic professor and professional engineer. I am planning to use cloud technology to democratize the AwakeningBudh or Innate Intelligence in living persons. All emotions are

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Baz
I'm selling spider legs and bat wings at half price... -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

Re: [google-appengine] Re: Task queue can't keep up with load. Suggestions?

2010-05-24 Thread Waleed Abdulla
I'm noticing a big improvement today. After having a task queue backlog of 5 days and growing yesterday, today the tasks are running faster and the backlog is quickly going down (4 days as of this moment) and at this rate it should be down to 0 by the end of the day. It seems that someone fixed

[google-appengine] ldap setup?

2010-05-24 Thread Ben Ferguson
Greetings! I need some insight on setting up an ldap pool for my local google app server. Here's what I'm doing... I'm running Google App Engine 1.3.3.1 from Ecplise. I've got a GWT project that needs to authenticate against ldap. I'll eventually deploy my app on a tomcat server that we host. We

[google-appengine] Moving an App from one account to another

2010-05-24 Thread m
Hello, I inadvertently created an AE app with my google account when I wanted to create it under my apps account. How do I move it? I cannot simply delete the app and recreate it, because the documentation says that deleted apps still have their appid reserved. -- You received this message

[google-appengine] Unable to execute the URL fetch service

2010-05-24 Thread Tester
Hi I have this same code I am trying to execute: URL url = new URL(urlStr); BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream())); String line; while ((line = reader.readLine()) != null) { System.out.println(line);

Re: [google-appengine] Moving an App from one account to another

2010-05-24 Thread Jody Belka
Now, I /think/ this should work Go to Permissions in the dashboard, add your apps account, then once it's added successfully remove your google account. This, of course, assumes that the two accounts don't have the same email address, as GAE tends to get a bit confused with that. In that

[google-appengine] Re: Moving an App from one account to another

2010-05-24 Thread Jeevan
You cannot move the app, instead u can send a invitation to ur apps account, and then u disable the google account developer. go to admin logs section in the app engine dash board if ur not clear On May 24, 6:16 am, m phillip...@gmail.com wrote: Hello, I inadvertently created an AE app with my

[google-appengine] Re: Not Quite Grokking Datastore

2010-05-24 Thread Tristan
Take a read through this http://groups.google.com/group/google-appengine-java/browse_thread/thread/4298b7f54f1b58db/ddfabdb64110effc?q= On May 24, 1:43 am, MahatmaManic mahatmama...@gmail.com wrote: Big monster list! My app allows users to send requests to their network which I am arbitrarily

Re: [google-appengine] Appengine JDO Query for searching in String

2010-05-24 Thread Ikai L (Google)
No, these won't work. An alternative to this approach is to tag your data using List properties, then search for equality. Just be aware of the possibility of exploding indexes. On Sun, May 23, 2010 at 6:22 PM, Sam sk.cloudg...@gmail.com wrote: Hi All, I am looking for the following

[google-appengine] Re: Auto Login on Bulk Down-loader

2010-05-24 Thread Matthew Blain
Take a look at the --passin flag. On May 20, 3:39 am, Chris M pcdev...@gmail.com wrote: Is there anyway to Auto-login on the bulk download tool. I'm writing a batch file so I can schedule a download and delete every night and Im stuck as the thing requires a login and there doesn't seem to

Re: [google-appengine] Re: Not Quite Grokking Datastore

2010-05-24 Thread Ikai L (Google)
Most large social networks I know do not store their social graphs in relational databases, so thinking relationally doesn't scale here, period, especially if you want to do graph traversals. If you are just looking for a way to check for network inclusion - I know of a large social network,

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
Please make your remarks shorts and focussed: I will answer to all I have received but break them down to something we can digest: hawkett said A small issue if the economy goes down the drain on the scale you are talking about is that an internet where everyone has the capability to connect

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
hawkett said: When you say credit free currency, do you mean credit free society? How do you plan to make it credit free - through legislation? What's to stop me lending some currency I have in your system to someone - or making a purchase on their behalf in exchange for a purchase by them of

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
hawkett: 1. The cloud is *much* cheaper than any custom hardware installation you can come up with. Security isn't just data security - you need to manage backups, uptime, support, maintenance, facilities, redundancy, disaster recovery - long list of stuff that will cost you buckets before you

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
hawkett: 2. You need to do some risk assessment. There are always risks, and many of them - there is no perfectly secure system, and it is important not to try and sell such a thing. It is just a matter of how you rate each risk, and important that the stakeholders understand the risk and agree

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
hawkett said: slight political rant (IMO) A good example is the recent financial crisis. The banking sector took risks, understanding that the worst possible outcome (for them) was not actually as bad as is being portrayed - they felt that they would still not fail because they commanded enough

[google-appengine] redirecting in a way that will never complete

2010-05-24 Thread Peter Warren
I had a Google Apps account and a Google account with the same email address. I deleted the Google Apps account and now can't login to appengine with my Google account. Firefox gives the message: Firefox has detected that the server is redirecting the request for this address in a way that will

[google-appengine] Re: redirecting in a way that will never complete

2010-05-24 Thread Peter Warren
Also when I try to access my appengine applications from my Google Account settings, I get redirected to a login page. Is it possible that appengine is looking for my Google Apps account which no longer exists so it gets confused? Is there a way for me to tell appengine to use my Google account

[google-appengine] Re: Memcache Size limitation

2010-05-24 Thread Arun Shanker Prasad
Hi All, I am still stuck at this, any help would be greatly appreciated. Thanks, Arun Shanker Prasad. On May 22, 2:41 pm, Arun Shanker Prasad arunshankerpra...@gmail.com wrote: Hi all, I think many of you may have had this issue, I am talking about the issue with the Memcache size

Re: [google-appengine] Re: Auto Login on Bulk Down-loader

2010-05-24 Thread Malcolm MacKinnon
That's right. The answer to this is to use --passin. For example, I'm using windows xp, and had some difficulty with this. Here's a bat file I schedule to run each night to do what I think you're trying to do: #good idea to back up spreadsheet first, of course. del inv_dump.csv appcfg.py

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
What is the full (market price) of spider legs and bat wings? Water has no value in the city you live in. How much can you sell it in the desert to a man dying from thirst? I am saying that if you sell him $100 a gallon he will think he made a deal whereas a week before, when he was his in

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Ikai L (Google)
Guys, I want to encourage you to stay on topic. The issue here is encryption for data store in App Engine. As several posters have pointed out, there are no easy solutions for this. A shift towards the cloud has all the implications of not being able to physically secure the data. Using a service

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Baz
It seems the world economic revolution and the dissolution of central banks will have to wait for an updated sdk :( On Mon, May 24, 2010 at 3:44 PM, Ikai L (Google) ika...@google.com wrote: Guys, I want to encourage you to stay on topic. The issue here is encryption for data store in App

[google-appengine] Re: How to deploy .Net App on Google App

2010-05-24 Thread readonly
That's a shame. I wish the App Engine would support the .NET 4 library, with support for VB.NET and C#. But as you said, that might never happen as those great technologies are developed by Google's top competitor - Microsoft. The only good approach is Python which recently rocks over and over.

[google-appengine] Please empty index queue at ice-cron.app....

2010-05-24 Thread noiv
Could you empty all items in the index queue (status ▲ , stamp ▲) Serving index (status ▲ , time ▲) ist now obsolete, but undeleteable. Please kill both, I'd like to continue serving the app. Many thanks -- Torsten -- You received this message because you are subscribed to the Google Groups

[google-appengine] A group of students need your valuation on their app

2010-05-24 Thread Duc Anh Nguyen
Hi, We just have completed the demo version of our Java app on GAE. Generally, our idea is to make a website that helps you improve your debugging skills. And for our school project, it should be a game, so we called it a debugging game. You'd play as an employee working for a cruel employer, who

[google-appengine] [JOB] Start seeks ACE developer

2010-05-24 Thread Startup
Design oriented startup seeks developer who is analytical and flexible. We are seeking a developer who wants to LEARN. We have world-class experience in hi-end development (mission-critical software) and design (as in Apple-like experience design). We're looking for 1 HIGHLY motivated, EXTREMELY

Re: [google-appengine] [JOB] Start seeks ACE developer

2010-05-24 Thread Jawaad Mahmood
With all due respect, you want a: 1. Apple level designer 2. World class experience 3. Knowledge in several platforms 4. Constant availability despite a part time salary The benefit is - we work from home. Wonderful. I guess that's a social benefit too right? No offense but you won't find

Re: [google-appengine] Re: Google Apps and BigTable

2010-05-24 Thread Keren Or Shalom
Updating a sdk is easier and faster than updating the brain of a banker. We won't chose when we will have to implement that is something which is mathematically impossible to forecast even though we know that the system is already unstable. It is impossible by definition to know when it will

Re: [google-appengine] [JOB] Start seeks ACE developer

2010-05-24 Thread Jawaad Mahmood
http://forums.redflagdeals.com/volunteer-part-time-tech-startup-583905/ Did a little searching and this popped up. Either they are a scam or their claims of being a first class business are overblown. I did find them reselling medical books for 10-40 bucks a pop. And doing more nutty end

[google-appengine] App Engine having issues again?

2010-05-24 Thread bvelasquez
http://www.jacobsix.com (jacob-6) is down again. Anyone else having issues with GAE? 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. -- You

[google-appengine] 500 errors

2010-05-24 Thread gwstuff
Hi, I'm getting 500 errors across most of my apps, and intermittently also on the dashboard. It looks datastore-related because the apps that are running OK have mostly static content. Anyone else seeing this problem? Please reply and make this thread noticed if so. z -- You received this

Re: [google-appengine] App Engine having issues again?

2010-05-24 Thread Waleed Abdulla
Same here. App and dashboard down :( On Monday, May 24, 2010, bvelasquez bvelasq...@gmail.com wrote: http://www.jacobsix.com (jacob-6) is down again.  Anyone else having issues with GAE? Error: Server Error The server encountered an error and could not complete your request. If the

[google-appengine] Re: 500 errors

2010-05-24 Thread bvelasquez
Yes, just posted on this. My site is down, both the app and the admin. 500's and the following: Internal Server Error ControllerInitError: Initialize Session Error! Traceback Traceback (most recent call last): dispatcher.py:126 in dispatch File /base/data/home/apps/jacob-6/

[google-appengine] Re: 500 errors

2010-05-24 Thread Ryan
I'm also getting 500 errors trying to deploy a new version. Thanks, Ryan On May 24, 6:56 pm, bvelasquez bvelasq...@gmail.com wrote: Yes, just posted on this.  My site is down, both the app and the admin. 500's and the following: Internal Server Error ControllerInitError: Initialize

Re: [google-appengine] Re: 500 errors

2010-05-24 Thread Andrius A
the same is here.. app engine page shows anomaly and google responded that it has been resolved??? :) issue descriptions always say the same... http://code.google.com/status/appengine/detail/serving/2010/05/24#ae-trust-detail-helloworld-get-latency come one google, gives us more light, whats

Re: [google-appengine] [JOB] Start seeks ACE developer

2010-05-24 Thread Jeff Schwartz
LOL Why am I not surprised. Good sherlocking, Jawaad. On Mon, May 24, 2010 at 8:43 PM, Jawaad Mahmood jawaad.mahm...@gmail.comwrote: http://forums.redflagdeals.com/volunteer-part-time-tech-startup-583905/ Did a little searching and this popped up. Either they are a scam or their claims of

Re: [google-appengine] App Engine having issues again?

2010-05-24 Thread Wesley C (Google)
we've had high datastore latencies the past hour or so, but things seem to be getting back to normal now as i was able to get to the jacob-6 site, as well as other apps and dashboards. let us know if this isn't the case. -- wesley - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Core

Re: [google-appengine] Re: 500 errors

2010-05-24 Thread Wesley C (Google)
we've had high datastore latencies the past hour or so, but things seem to be getting back to normal now as i was able to apps and dashboards with no 500s. let us know if this isn't the case. -- wesley - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Core Python Programming, Prentice

  1   2   >