[appengine-java] outofMemoryerror

2010-10-08 Thread Deepika M
Hi, I retrieve the nodes of the two graphs using two queries. And then I use nested loop to iterate through the two result list. This results in out of memory error (which was displayed in the logs) and looks like this: java.lang.OutOfMemoryError: Java heap space at

Re: [appengine-java] Catching HardDeadlineExceededError

2010-10-08 Thread h-e-n-r-y
I'm also trying to catch the DeadlineExceededException in order to display a custom error page. Announcing the error-Page in web.xml for 500 status does not work for too long running requests. So I opend a try-catch-block like this in my jsp-Page: %@ page session=false %% try { // do sth long

[appengine-java] Re: failure in simple JDO query

2010-10-08 Thread x_maras
hmm... I did through eclipse... On Oct 8, 3:11 am, Arnold arnold.mi...@gmail.com wrote: May be try restarting the development mode server. On Oct 7, 8:42 pm, x_maras dinost...@gmail.com wrote: Hi, I was trying to do some simple JDO queries in order to find my way in java google app

[appengine-java] Provider org.apache.xalan.processor.TransformerFactoryImpl not found

2010-10-08 Thread aswath satrasala
I create a new GWT-Appengine project using eclipse using Google Plugin. When I try to introduce the mapper jars (appengine-mapper.jar, charts4j.jar, json.jar, hadoop..core.jar) and mapreduce.xml file in a default gwt-appengine project, I get the following Error --

[appengine-java] Re: Provider org.apache.xalan.processor.TransformerFactoryImpl not found

2010-10-08 Thread aswath satrasala
Sorry, I was not specific to mention when I get the errors. I get the errors when I go to the following URL http://localhost:/mapreduce/status -Aswath On Fri, Oct 8, 2010 at 4:41 PM, aswath satrasala aswath.satras...@gmail.com wrote: I create a new GWT-Appengine project using eclipse

[appengine-java] Does anyone use vosaocms, I got a language problem

2010-10-08 Thread akandfxs
I add a chinese property file. and add zh in simplified chinese.(I skip the zh-cn,for the bug of vosaocms) It works fine on local dev server. But it is not ok on appengine. Do you have any suggestion about the localization problem? or do you have some other suggestions on other gae java cms

[appengine-java] Re: Datastore, Java, JSP, JSON, AJAX, Web Page. Is it going to work?

2010-10-08 Thread x_maras
Dear Stevko, First of all, thank you for your answer. Could you help me a little bit with fundamentals of this? I am using eclipse to create my google app engine structure. I know html, javascript, ajax. I have also learned google datastore and I m not that bad in java... I have read JSON But I'm

Re: [appengine-java] outofMemoryerror

2010-10-08 Thread Ikai Lan (Google)
Can you post the code? You might be allocating too many objects. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Fri, Oct 8, 2010 at 12:11 AM, Deepika M

[appengine-java] Re: Spring MVC on GAE: Slow Load Time

2010-10-08 Thread hector
I had the same experience with my Spring MVC webapp. I found that the problem was affected directly by the type of controllers I was using. Controllers that use annotations (org.springframework.stereotype.Controller) take longer to startup. On the other hand, controllers that extend from

[appengine-java] Re: Stranger behaviour with query using AND

2010-10-08 Thread roberto_sc
It doesn't accept nor ==, but Query jquery = em.createQuery(SELECT FROM Player WHERE (age = ?2) AND (name = ?1)); jquery.setParameter(1, Zarolho); jquery.setParameter(2, 33); works, while: Query jquery = em.createQuery(SELECT FROM Player WHERE (name = ?1) AND (age = ?2));

[appengine-java] Re: Stranger behaviour with query using AND

2010-10-08 Thread roberto_sc
It seems like if there was a bug related to the first element in the clause being the ?1 because: Query jquery = em.createQuery(SELECT FROM Player WHERE (age = ?2) AND (name = ?3)); or Query jquery = em.createQuery(SELECT FROM Player WHERE (name = ?2) AND (age = ?3)); or Query jquery =

Re: [google-appengine] Using get_serving_url and =sxx surfix

2010-10-08 Thread Fredrik Bonander
Oh snap, I like that you can specify the size. Since the 2 sizes I need is 750 and 180. I would guess that there's some technical reason for this, would be glad to know why? Would a feature request that it stays this way and not change be unnecessary? ..fredrik On Oct 8, 2010, at 3:46 AM,

[google-appengine] Re: Using get_serving_url and =sxx surfix

2010-10-08 Thread Peter Ondruska
I would say that the reason to limit sizes is that those are created automatically (not on demand) and therefore providing every possible size (up-to original) is not viable. On Oct 8, 9:41 am, Fredrik Bonander carl.fredrik.bonan...@gmail.com wrote: Oh snap, I like that you can specify the size.

[google-appengine] Re: How to get some value from JavaScript to Python?

2010-10-08 Thread LA_
all, would appreciate your help ;) On Oct 8, 12:50 am, LA_ and...@gmail.com wrote: My GAE-application (let's say example.appspot.com) works in iframe of one site (let's say example.com and hence my application url is example.com/id12345). I need to pass some data from (another) local

Re: [google-appengine] Re: How to get some value from JavaScript to Python?

2010-10-08 Thread Jeff Schwartz
Use ajax with the jsonp data type which is specific to cross site scripting. On Fri, Oct 8, 2010 at 5:44 AM, LA_ and...@gmail.com wrote: all, would appreciate your help ;) On Oct 8, 12:50 am, LA_ and...@gmail.com wrote: My GAE-application (let's say example.appspot.com) works in iframe of

[google-appengine] Appengine - Upload to Google Spreadsheet datastore values

2010-10-08 Thread xerife
Hello, I´d like to know how to upload to a Google Spreadsheet, values stored in the database of my application. Objective: Connecting to Google Spreadsheet and automatically fill in a chart in the admin area with values that were passed by the upload. I've been giving a look in the docs and it

[google-appengine] Cron not parsing, need to run From 10AM to 4PM every 15 mins

2010-10-08 Thread ursus
Hi, I need a cron to run my app every monday to friday from 10AM to 4PM, 4 times per hour. Can someone point me out how do it? I am having parsing issues. This schedule does not parse in Eclipse when submitting: scheduleevery monday,tuesday,wednesday,thursday,friday 10:00,11:00/schedule It

Re: [google-appengine] Appengine - Upload to Google Spreadsheet datastore values

2010-10-08 Thread Robert Kluin
Step 1: Google. http://code.google.com/p/gdata-python-client/ On Fri, Oct 8, 2010 at 07:50, xerife martinhoaran...@gmail.com wrote: Hello, I´d like to know how to upload to a Google Spreadsheet, values stored in the database of my application. Objective: Connecting to Google

[google-appengine] Unable to verify account via SMS

2010-10-08 Thread C3PO
I had problem getting SMS verification messages. By the time I resolved a misconfiguration on my phone account, I had already exceeded my verification limit. I now get this error when I try to send verification SMS. You have sent too many SMS verification messages. How can this be fixed? Will

[google-appengine] Re: How to get some value from JavaScript to Python?

2010-10-08 Thread John McLaughlin
I'm not completely clear on what you are trying to do and the specifics of the interactions. My best understanding is that you have a user initiated POST operation that is happening from a window whose domain is different from that of an iframe that it contains. You want to communicate the

[google-appengine] Re: P3P header

2010-10-08 Thread Jason C
I think it's as simple as setting the header on the response, e.g.: self.response.headers['P3P'] = 'CP=OUR PSA CAO' Of course, you need to choose appropriate values for the header contents. See: http://www.w3.org/TR/P3P/#compact_policy_vocabulary j On Oct 7, 6:18 pm, Joshua

[google-appengine] Re: Detect Mobile Phone

2010-10-08 Thread Filippo De Luca
Unfortunately You don't miss only 0.01% but around 30%. (Blackberry does not contain blackberry at all, Same for Nokia). An iPhone is really different from Nokia N95 or a BlackBerry or Motorola v3xx So you need more detail about phone to supply a good user experience. The screen size is a first

Re: [google-appengine] Re: Better support for linux

2010-10-08 Thread wei zhou
An App Engine application in sandbox cannot write to the filesystem. If I use log4j for my application, It will write log data into local files. Is the log file distributed in the server? Dose the server side replaces the original log4j jar with your own ones ? Dose Google has some limitation on

[google-appengine] Checking if new version is ready to serve only after 8 seconds

2010-10-08 Thread Peter Ondruska
Whenever I deploy new version/update to my GAE applications (be it Java or Python--it does not matter) it never happened to me that new version was ready earlier than 8 seconds (mostly 32, 64 or even later). I do not believe it is just me. Can I somehow configure on my side when to check for

Re: [google-appengine] Unable to verify account via SMS

2010-10-08 Thread Robert Kluin
Fill out: https://appengine.google.com/waitlist/sms_issues Source: the page where you subscribed to this list. An excerpt: If you are unable to verify your account using SMS, please fill out the this form. (This is also listed in our Frequently Asked Questions.) On Fri, Oct 8, 2010 at

[google-appengine] Indexes Error

2010-10-08 Thread sahid
Hello, I need help, by a error i have removed all of my indexes, i need to regenerate it but the deletion is too long and now i have a Workflow Backend Index Task Count LIMITED and now i have a lot of indexes error APPID: devel-inchallah

Re: [google-appengine] Checking if new version is ready to serve only after 8 seconds

2010-10-08 Thread Ikai Lan (Google)
That's the thing about exponential backoffs: it grows so quickly. It goes from 1-2-4-8-16-32 seconds. That's only 6 HTTP requests, and if you set it to 8 seconds, it'd be only 3 HTTP requests worth of savings. I certainly hope you're not deploying via 3G, as the overhead of 3-6 HTTP requests is

Re: [google-appengine] Re: issue on apps permission

2010-10-08 Thread Sandeep Koduri
Hello dose any idea about my above query?? waiting for some response On Thu, Sep 30, 2010 at 6:36 PM, $ÂÑЀ€P sandeep.kod...@gmail.com wrote: also another point regarding permissions. when i invite a...@mycompany.com as developer, the mail sent to a...@mycompany.com is forwarded to

[google-appengine] Task Having Access To User's Session

2010-10-08 Thread Jeff Schwartz
I need to develop a task that can access a user's session to obtain a list of objects. Is this possible within a task meaning do tasks know about Session state and are they tied to the session of the user from which they are called? If not, can I somehow pass the user's session via the payload or

Re: [google-appengine] Indexes Error

2010-10-08 Thread Ikai Lan (Google)
Did you run vacuum_indexes on your indexes? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Fri, Oct 8, 2010 at 10:43 AM, sahid sahid.ferdja...@gmail.com

Re: [google-appengine] Indexes Error

2010-10-08 Thread patricio...@gmail.com
spanish ? -Original Message- Date: Friday, October 08, 2010 2:52:35 pm To: google-appengine@googlegroups.com From: Ikai Lan (Google) ikai.l+gro...@google.com Subject: Re: [google-appengine] Indexes Error Did you run vacuum_indexes on your indexes? -- Ikai Lan Developer Programs

[google-appengine] Re: Indexes Error

2010-10-08 Thread sahid
Yes now my indexes is RE in deletion, my application is down, please you have the opportunity to expedite things I have billing enable and i use about 60$ per days. On 8 oct, 20:46, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Did you run vacuum_indexes  on your indexes? -- Ikai Lan

[google-appengine] Re: issue on apps permission

2010-10-08 Thread nickmilon
No much help I can give you on this except that this mechanism makes possible the transfer of application ownership. On Oct 8, 9:23 pm, Sandeep Koduri sandeep.kod...@gmail.com wrote: Hello dose any idea about my above query?? waiting for some response On Thu, Sep 30, 2010 at 6:36 PM,

[google-appengine] Re: Indexes Error

2010-10-08 Thread sahid
UP my indexes are always in deletion: Queued: 130 Running: 0 Completed: 47 Total: 177 Never way to get a better time?, because i need also to make all new indexes. Cordialy, Sahid On Oct 8, 9:15 pm, sahid sahid.ferdja...@gmail.com wrote: Yes now my indexes is RE in deletion, my application is

Re: [google-appengine] Re: Indexes Error

2010-10-08 Thread Sahid Orentino Ferdjaoui
My indexes are always in errors! i have vaccum indexes, after indexes are deleted i have RE update my indexes, but i have always indexes error! That is terrible, my application is down, who is the support? i use about 60$ per days... --   .  ..: On Fri, Oct 8, 2010 at 11:00 PM, sahid

[google-appengine] Re: Task Having Access To User's Session

2010-10-08 Thread Tim Hoffman
If you task is in memcache or datastore or both then either way you will have a key. When launching the task make the key one of the items in the payload. If you are using cookie only based session objects then you are going to have to include the contents of the session cookie(s) in the payload

Re: [google-appengine] Re: Still getting errors sending mail

2010-10-08 Thread Ikai Lan (Google)
The fix has been rolled out. Please let us know if you continue to see issues. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Wed, Oct 6, 2010 at 3:54

Re: [google-appengine] Re: issue on apps permission

2010-10-08 Thread Robert Kluin
Perhaps if you file an issue people will star it. Let us know the issue id. On Fri, Oct 8, 2010 at 14:23, Sandeep Koduri sandeep.kod...@gmail.com wrote: Hello dose any idea about my above query?? waiting for some response On Thu, Sep 30, 2010 at 6:36 PM, $ÂÑЀ€P

Re: [google-appengine] Re: Indexes Error

2010-10-08 Thread Robert Kluin
Try filing a production issue. http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue Robert On Fri, Oct 8, 2010 at 19:29, Sahid Orentino Ferdjaoui sahid.ferdja...@gmail.com wrote: My indexes are always in errors! i have vaccum indexes, after indexes are