[appengine-java] Re: How can i measure my apps performance in Appstats?

2010-08-17 Thread ingo
Hi Don, thank you so much for the input. It helped me alot to understand what appstats is for. Can anyone tell me how to setup DevAppServer for profiling with an external profiling tool? Normally i just run it from eclipse. I forgot to mention that my server code heavily relies on reflection

Re: [appengine-java] Bulk loader and JPQL query

2010-08-17 Thread Deepika M
I found where I went wrong, I should upload the list values (multi-valued attribute) within double quotes like 1,4 instead of [1,4]. Thanks, Deepika On Fri, Aug 13, 2010 at 6:21 PM, Deepika M drift2elys...@gmail.com wrote: Ok. Thank you. I'd like to know how to upload the list, in a way that

[appengine-java] Class XXX has collection field x and this has no mapping in the table for the element class YYY owner field y

2010-08-17 Thread cghersi
Hi to everybody, I'm new to JDO and Google App Engine, and I'm facing a show-stopper problem right now. I've got two classes, TPUser and TPContact, and TPUser has a list of TPContacts. Here there are the code snippets: @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable =

[appengine-java] connect to non trust server

2010-08-17 Thread Andrei
Can I connect to server from gae over ssl on port 8443, if server uses self signed certificate? 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-j...@googlegroups.com. To

[appengine-java] Caching feed

2010-08-17 Thread HIRAK
Hi, I am trying to implement a feed reader of my own using google app engine. Now, I dont want to parse the feed xml each time I get a request. So there should be some kind of caching of feeds. For caching, I am using the JDO persistencemanager. But I am facing problem, trying to refresh the

[appengine-java] Query on list properties not working within unit tests using mock LocalServiceTestHelper datastore.

2010-08-17 Thread Starman
Hello all and thank you for reading this. I am using JPA. I have implemented free text search using list properties (SetString). Using the same datastore content (local_db.bin), my free text search is working fine when I run the app, but returns nothing if I run the query in unit tests. I am

Re: [appengine-java] Caching feed

2010-08-17 Thread Ikai L (Google)
You want to use App Engine cron: http://code.google.com/appengine/docs/java/config/cron.html On Mon, Aug 16, 2010 at 6:57 PM, HIRAK hirak1...@gmail.com wrote: Hi, I am trying to implement a feed reader of my own using google app engine. Now, I dont want to parse the feed xml each time I

[appengine-java] SDK 1.3.6 released!

2010-08-17 Thread Ikai L (Google)
Hey guys, This is just a heads up that App Engine SDK version 1.3.6 is officially released! Read more about it here: http://googleappengine.blogspot.com/2010/08/multi-tenancy-support-high-performance_17.html Release notes for Java are below: Version 1.3.6 - August 17, 2010 - Multitenancy

[appengine-java] Persisting my pojo using appengine

2010-08-17 Thread HIRAK
Hi all, Need a little help in using the persistence of appengine. First of all the code: Feed.java = @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Feed { @Persistent final String title; @Persistent final String

Re: [appengine-java] Re: Google Web Application problem in Eclipse Helios

2010-08-17 Thread Dave Watts
Hi Rahul, The fix described above did not seem to work. I also tried deleting the eclipse directory then followed your directions, Dave, how did you manage to bypass this problem? did you just keep on creating servlets manually and adding them to your web.xml? I didn't bypass the problem.

[appengine-java] Re: Google Tech Talk + appengine ja night #10のお知らせ

2010-08-17 Thread kazunori_279
Hi all, Sorry for mis-posting! This should only be posted to Japanese GAE ML. Thanks, Kaz On 8月18日, 午後12:57, kazunori_279 kazunori...@gmail.com wrote: スティルハウス佐藤です。 Google Tech Talk + appengine ja night #10のお知らせです。 今回は、GoogleのJohn Woodelさんの呼びかけにより、Google App Engineの最新動向をテーマとしたTech

Re: [google-appengine] Multiple AppEngine Apps on Multiple Domains require Multiple Google Apps accounts?

2010-08-17 Thread Nick Johnson (Google)
Hi Jessi, When you want to add a domain that is an alias domain to your app, you need to enter the name of the main domain in the App Engine control panel. You'll then be given the opportunity to choose which aliased domain you want to associate it with. -Nick On Mon, Aug 16, 2010 at 1:21 AM,

[google-appengine] SAP-JCO connection from Google app engine -- SAP System not working

2010-08-17 Thread aptest1 actiprocess
We are successfully configured the SAP-JCO in java, we tested using the normal java programmming using main method. if i configures same thing in google app engine we are getting the following exception please any body help us to solve this problem Initializing AppEngine server Aug 17, 2010

[google-appengine] Re: Problem Registering New App

2010-08-17 Thread Cameron
Ok...so it works on my Google Apps account, but my Google Account is still broken. Cameron On Aug 16, 9:48 pm, Cameron came...@socialware.com wrote: Albert, Thanks for the help. I did it with a regular Google Account, however I have a Google Apps account so I will try that if I can find

[google-appengine] Re: need help with a python error

2010-08-17 Thread Coding Social
Thanks. I wasn't able to simply change the property because of the existing table and the way requests are handled. Instead I split any urls bigger than 498 characters for storage... On Aug 16, 5:55 pm, Nickolas Daskalou n...@daskalou.com wrote: It looks like you might be trying to store more

[google-appengine] Reported CPU usage mismatch between API and App Engine Logs

2010-08-17 Thread famzah
Hi all, I've been working on an App Engine Profiler (http://code.google.com/p/ appengine-profiler/) and noticed a discrepancy between the reported CPU usage by the Quota API and the App Engine Logs. I expected it that due to internal processes, the App Engine may report more CPU usage than we

[google-appengine] AppStats missing for some urls

2010-08-17 Thread j...@unusuallycool.com
I have AppStats set up on my app. It seems to be working correctly, except that the stats for some of my urls are missing. I am using /* for the url-pattern. Also in the admin console I am seeing the Appstats available... log entry for these urls. But when I go to the appstats viewer, they aren't

[google-appengine] Question regarding Query with Sort

2010-08-17 Thread jdwx
Hello, I have a TeamAllocation table that has the following - sStudentID sCourseID nTeamNumber However, I cannot seem to sort the data with my queries. String sQuery = select from + TeamAllocation.class.getName() + where sCourseID == ' + sCourseID + ' order by nTeamNumber desc; and Query

[google-appengine] What is datastore_v3?

2010-08-17 Thread IvyTang
now i'm studying the data transfer in the source code. In the demo guestbook , the request from the user goes: google.appengine.ext.db.Model.get()--- google.appengine.api.datastore.get()--- google.appengine.datastore.datastore_pb.getResponse()---

[google-appengine] The relation between megacycles and cpu used

2010-08-17 Thread MyElasticEye
Hi, I have been trying to optimize the App Engine application my team is working on. As I read on Google's documentation, 1 megacycles = 1/1200 cpu seconds And if I a check how many megacycles it takes to load an empty sinlge page without any templates using webapp.py, it takes 0 megacycles.

[google-appengine] Chart/Finance software for purchase/develpment

2010-08-17 Thread Ady Spencer
Apols if this is totally the wrong place to post, but my query as below, placed in various development forums. Can anyone help or advise? Hi all, Apols in advance for any blatant ignorance in my posting, but I'm not overtly tech savvy. I work in the world of commodities/chemicals manufacture

Re: [google-appengine] The relation between megacycles and cpu used

2010-08-17 Thread 'Αλκης Ευλογημένος
The cpu in the equation is a 1ghz equivalent cpu which is not necessarily the same as the cpu you request ran on. - alkis (mobile) On Aug 17, 2010 7:41 PM, MyElasticEye sarp.er...@gmail.com wrote: Hi, I have been trying to optimize the App Engine application my team is working on. As I read

[google-appengine] number of indexes for billing enabled app is 200 or 300?

2010-08-17 Thread Eric Ka Ka Ng
a quick question. Sometimes before the number of indexes for billing enabled our app is 300. Now it goes back to 200. Could anyone advise if the cut back is temp.? or is there any ways we could request to extend to 300 or beyond 200? Regards, Eric -- You received this message because you are

[google-appengine] Re: The relation between megacycles and cpu used

2010-08-17 Thread MyElasticEye
so this means that the cpu which my request ran on is a much less powerful one. Since the request takes much more cpu secs that it should according to that equation. Right? On Aug 17, 9:05 pm, Alkis Evlogimenos ('Αλκης Ευλογημένος) al...@evlogimenos.com wrote: The cpu in the equation is a 1ghz

[google-appengine] Re: Total Data Stored number on Dashboard is fluctuating inexplicably

2010-08-17 Thread dcmorton
Lots of writes. Not so many deletes. The Total Stored Data has been more consistent over the last couple days. I still don't know why it spiked up to 178GB and then back down to 20GB. On Aug 16, 5:25 pm, Jeff Schwartz jefftschwa...@gmail.com wrote: Are you doing a lot of writes and deletes?

[google-appengine] Logging Console in Mac Launcher

2010-08-17 Thread Jason C
OMG! There is a clear button on the logging console for the Mac Launcher for 1.3.6. Best. Feature. Ever. -- 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

[google-appengine] Re: Does ReplyTo email address need to be a developer?

2010-08-17 Thread PK
I am very interested in hearing about this too. I am about to roll out a feature on GAE-Python that assumes that ReplyTo can be any e-mail address. It seems to be working fine in my testing. PK www.gae123.com -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] How to write a C# client to access google app engine?

2010-08-17 Thread Vassili
I have deployed the default demo google app engine project, the one described at http://www.ibm.com/developerworks/java/library/j-gaej1/ - the link contains all the project code. It can be accessed, e.g. via web browser at http://gaejarticleforrick.appspot.com But how do I write a custom

[google-appengine] Does GAE cache code compiled with builtin compile() function?

2010-08-17 Thread HGF
Hi, Does GAE cache compiled code with compile() function? If yes, how it works? thanks! -- 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,

[google-appengine] Re: Multiple AppEngine Apps on Multiple Domains require Multiple Google Apps accounts?

2010-08-17 Thread Jessi
Nick solved the problem by pointing out that I used the root/original Apps domain when adding it to the app engine app, rather than the alias. Thanks Nick! I believe I could have a single app serve more than one domain, because the domains are all CNAMED to ghs.google.com and the Google Apps

[google-appengine] Re: Logging Console in Mac Launcher

2010-08-17 Thread Matt H
Yup. I 3 this. On Aug 17, 11:37 pm, Jason C jason.a.coll...@gmail.com wrote: OMG! There is a clear button on the logging console for the Mac Launcher for 1.3.6. Best. Feature. Ever. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Re: GWT + GAE Crawlable WebSite

2010-08-17 Thread Matt H
Apparently the latest version of HtmlUnit supports GAE. On Aug 6, 9:11 pm, Matt H matt2...@gmail.com wrote: I know. =( On Aug 6, 8:35 pm, Carlos Toro rukaham...@gmail.com wrote: That's really sad... My decision to made a GWT+GAE Website could be wrong just for this :( If your website

[google-appengine] Re: AppStats missing for some urls

2010-08-17 Thread j...@unusuallycool.com
More info on this problem... With my latest update I modified the servlet that wasn't getting logged to use the memcache. Now, it only does its real work once every 10 minutes, and any calls in between it just sends the cached results. The calls where it only uses the cache are showing up in

[google-appengine] How do I deauthenticate myself from the command prompt deployment script?

2010-08-17 Thread mclovin
I have an App, but I need to upload it to our projects page, which uses a different google account. Since I signed in to upload my own app to my own appspot using my google account, it wont let me upload it to theirs even if I have the login info. In fact it doesn't even prompt for the login info

[google-appengine] Having trouble deploying new version - Error The request is invalid for an unspecified reason.

2010-08-17 Thread Tim Hoffman
Hi Just trying to deploy a new version of my code base, and was able to successfully deploy into a test instance I have. When trying to deploy to my production instance I am repeatedly getting the following error. Deploying new version. Rolling back the update. Error 400: --- begin server

[google-appengine] Re: How to write a C# client to access google app engine?

2010-08-17 Thread Greg
You need to understand how browsers work - in a nutshell, they send a request for a URL, and the server returns data. In most cases this data is HTML code to be rendered by your browser, but you can in fact make it anything you want - XML, JSON or a custom data format. Your C# application needs

[google-appengine] Re: Having trouble deploying new version - Error The request is invalid for an unspecified reason.

2010-08-17 Thread Tim Hoffman
Hi Looks like the problem was with the error_handlers directive (new in 1.3.6) I had used error_handlers: - file: static/default_error.html Which also overlapped with a static file handler I had configured - url: /static static_dir: static expiration: 30d Moving the static default