[appengine-java] Re: Use Array as a query filter - possible?

2011-05-09 Thread Nichole
You can use contains in JDO instead of SQL's IN(), but the implementation is a separate query for each item in the list. (http://code.google.com/appengine/docs/java/datastore/jdo/ queries.html). There's also a limit of 30 to the number of items in the array. This from appengine tests is expected

[appengine-java] Re: 1MB URL Fetch limit

2011-05-09 Thread Brandon Donnelson
I haven't used this api yet, although, the java api is a wrapping up the parameters into a post to the docs service in xml. In this case, what I might do is sniff the http post out and get the config. Usually I can figure out the api's intentions and get it to work for me. In this case I can

[appengine-java] Re: Use Array as a query filter - possible?

2011-05-09 Thread Nischal
I would suggest you use ListInteger ints; as a filed in your class Then this would work flawlessly : select from class where ints = 10 ints = 20 -- 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

[appengine-java] Re: Use Array as a query filter - possible?

2011-05-09 Thread mscwd01
Thanks for the reply. I'm actually using JDO so I create a Query and apply .setFilter() to it. The property I have is an int[] array, not a List, but I could change this if it means I can query the contents of the List. Importantly, I need the query to be as efficient as possible as I'm currently

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-09 Thread July
thanks for your reply. yes i'm using eclipse GPE to debug in Windows XP as admin. My eclipse proxy works fine and i can update plugin. GAE can detect updation, everything works fine. I think the key is to setup proxy in Gdata, when i use a swing desktop application with Gdata, set proxy before

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-09 Thread Brandon Donnelson
How is Winxp proxy setup for you? Do you just setup proxy in each app, or do you have a OS global setting? I do know there is an OS global proxy setup, but I can't remember that at the moment. Brandon -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Re: bug with cron job?

2011-05-09 Thread Vik
someone kindly advise on this plz.. i fail to understand why job is getting executed every day instead of once a month Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Thu, May 5, 2011 at 7:44 AM, Vik vik@gmail.com wrote: Hi A cron job in our system is

[appengine-java] Re: API Channel

2011-05-09 Thread Jorrit Posthuma
You know you need to give every connection its own id? The channel part in new ChannelMessage(channel, string)? -- 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

[appengine-java] Re: Can only reference properties of a sub-object if the sub-object is embedded

2011-05-09 Thread blue
You are serializing AnnotationType in your Annotation class rather than embedding it. You cannot query against a serialized object because it's stored in bytes rather than a queryable type. In order to query against this, you should change to: @Embedded private AnnotationType annotationType;

[appengine-java] Re: Can only reference properties of a sub-object if the sub-object is embedded

2011-05-09 Thread blue
Oops, my answer was assuming you are using Objectify, which you are not so my answer is probably not valid. However, I do believe your problem is due to the serialization. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post

[appengine-java] Vs: Re: Stripes + UrlBinding + Google App Engine

2011-05-09 Thread Pauli Savolainen
Hello again I tried what you suggested, but to no avail. I still get the same effect: works on my dev environment, but not when I deploy my app to app engine. I will keep on trying. I am using; Stripes 1.5.6 App Engine 1.4.3 Pauli Savolainen -- You received this message because you are

[appengine-java] Glimpse into GWT RPC Chunking Base64 and Decoding into a blob

2011-05-09 Thread Brandon Donnelson
I thought I share my experimenting of GWT RPC chunking of a base64 file from client to blobstore. My Steps: 1. FileUpload then triggers a File API read of the file to base64 2. Chunk requests to blobstore of 24900 (divisible by 4) 3. Server I divide it by 900 chars per record stored into

[appengine-java] Re: GAE+GDate+Dev mode+Proxy: can not access internet

2011-05-09 Thread July
Yes i config my application's proxy one by one, there is a proxy software called proxyCap through which we can config global proxy, unfortunately when i use it everything stops work(it can not connect to internet at all) -- You received this message because you are subscribed to the Google

[appengine-java] Re: startup errors while using RemoteApiInstaller

2011-05-09 Thread Aswath Satrasala
Anyone has setup remote_api web client? Appreciate if you can share the details of the setup. -Aswath On Sun, May 8, 2011 at 5:43 PM, Aswath Satrasala aswath.satras...@gmail.com wrote: Hi, I am trying1.4.3 SDK and looking into Remote API. In the ServletContextListener, I was installing the

[appengine-java] Re: bug with cron job?

2011-05-09 Thread Didier Durand
Hi, You syntax seems correct: so you're right, probably a bug. But, at least, you may check the date in your job and if not 1st of month then you can just exit. So, it still get scheduled every day but at least works only on the 1st. regards didier On May 9, 7:52 pm, Vik vik@gmail.com

[google-appengine] Re: You do not have permission to modify this app (app_id=u'XXX').

2011-05-09 Thread RRRaney
Hello, I Updatedf the Google Plugin last week and started having the same problem. Do you use more that one app-engine account? As my good friend Inspector Jacques Clouseau would say “The problem is solved”. I had no problems logging into my app-engine account to check and add

[google-appengine] Re: Unable to update

2011-05-09 Thread RRRaney
Hello, Just did some more checking of the Google Plug-in for Eclipse documentation. Deploying your Web Application To deploy your web application, you will need to create an application from the App Engine Administration Console, at the following URL: https://appengine.google.com/. If

[google-appengine] Re: You do not have permission to modify this app (app_id=u'XXX').

2011-05-09 Thread RRRaney
Hello, Just did some more checking of the Google Plug-in for Eclipse documentation. Deploying your Web Application To deploy your web application, you will need to create an application from the App Engine Administration Console, at the following URL: https://appengine.google.com/. If

[google-appengine] maximum number of values in all indexes for an entity -what is it?

2011-05-09 Thread lp
hi guys i am attempting to understand the limits below. see http://code.google.com/appengine/docs/java/datastore/overview.html Limit maximum entity size 1 megabyte maximum number of values in all indexes for an entity (1) 5,000 values 1. An entity uses one value in an

[google-appengine] Re: Unable to update

2011-05-09 Thread RRRaney
I have found some entries in the registry that seem to correspond to the Google Plug-in Login. HKEY_CURRENT_USER\Software\JavaSoft\Prefs\com\google\gdt\eclipse\login\... Raney -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Kayode Odeyemi
Hello all, Garage48 code sprint just ended in Lagos, Nigeria. I was part of a team on the idea MyCash. The implementation is GWT, hosted on GAE. Here is the link: http://mycashg48.appspot.com/. The application is currently using Activity and Place MVP, Federated API, ClientBundle and an

Re: [google-appengine] Multitenant Design and Indexes

2011-05-09 Thread andreas schmid
does that mean that if i use namespaces i cant query over the whole datastore? like if i want to do operations on all entities of a specific kind over all namespaces i can't do it? On May 8, 2011, at 11:36 PM, Robert Kluin wrote: Hi Prateek, Your app gets 200 indexes. You can use as many

Re: [google-appengine] Multitenant Design and Indexes

2011-05-09 Thread Robert Kluin
Correct. You'll have to run one query for every namespace. Robert On Mon, May 9, 2011 at 09:24, andreas schmid a.schmi...@gmail.com wrote: does that mean that if i use namespaces i cant query over the whole datastore? like if i want to do operations on all entities of a specific kind

Re: [google-appengine] Multitenant Design and Indexes

2011-05-09 Thread andreas schmid
do i need to keep track of all the namespaces is there a way to check which namepaces are used in my datastore? On May 9, 2011, at 9:25 AM, Robert Kluin wrote: Correct. You'll have to run one query for every namespace. Robert On Mon, May 9, 2011 at 09:24, andreas schmid

[google-appengine] Re: Best JavaScript library for JSON, grids and GAE?

2011-05-09 Thread Tim
I use ExtJS 3 for client side of a one-page-webapp , which has an extensive Grid control, lots of docs etc. Many of their controls use the same DataStore class underneath, which can be driven manually, but most usefully can use what they call Ext.Direct

[google-appengine] Re: Multitenant Design and Indexes

2011-05-09 Thread JH
It's up to you. You can keep track, or query for the information: http://code.google.com/appengine/docs/python/datastore/metadataqueries.html#Namespace_Queries On May 9, 8:35 am, andreas schmid a.schmi...@gmail.com wrote: do i need to keep track of all the namespaces is there a way to check

[google-appengine] Re: Prerelease SDK 1.5.0 available for download

2011-05-09 Thread Ronoaldo José de Lana Pereira
+1 Please add SSL support! -- 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.

Re: [google-appengine] Re: Prerelease SDK 1.5.0 available for download

2011-05-09 Thread Prashant
+1 for SSL 2011/5/9 Ronoaldo José de Lana Pereira rpere...@beneficiofacil.com.br +1 Please add SSL support! -- 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

[google-appengine] Deadline Exceeded Errors

2011-05-09 Thread Dan
Anyone else start experiencing Deadline Exceeded Errors around 2011-05-09 08:12:00? My application mind-well started around that time and is still failing around 08:30:00. Dan -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this

Re: [google-appengine] Re: Prerelease SDK 1.5.0 available for download

2011-05-09 Thread Iván Rodríguez
+6.022×1023 We understand complexity of ssl support in the cloud but we need ssl for now because all of us have very cool apps that will rent to Google. Or maybe Google don´t want this success? 2011/5/9 Prashant antsh...@gmail.com +1 for SSL 2011/5/9 Ronoaldo José de Lana Pereira

[google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Jay Young
You might want to explain what the app actually does to help draw people's interest. What's it do for me? -- 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

Re: [google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Kayode Odeyemi
Simply, you have a budget and you want to track what you used that money for. It's got other features such as the ability to share what you bought from a particular store with some of your friends who will like to buy the same stuff. So in general it gives you an opportunity to know which store

[google-appengine] Re: maximum number of values in all indexes for an entity -what is it?

2011-05-09 Thread PandaSuit
My understanding is that the limit is as you described so a 5002 entry list property will require 5002 entries in the index. If you have multiple list properties then the number of index entries may be a cross product if the index contains more than one list property (try to avoid this). I am

RE: [google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Brandon Wirtz
To get adoption you will have to move to a different country. There is no way I'm giving any financial information to someone in Nigeria. In the US the only thing the general population knows about Nigeria we learned from having a Nigerian Prince empty our bank account after an email scam.

[google-appengine] Re: You do not have permission to modify this app (app_id=u'XXX').

2011-05-09 Thread Markus
I found the problem. After update the Eclipse Plugin forget my account data. In Eclipse und the bottom statusbar on the left border.. there is the account you've signed in. So I just clicked, updates my account data and could update my apps. Thanks for help guys! -- You received this message

[google-appengine] Re: i deleted my app , but still its working

2011-05-09 Thread Matthew Blain
This should not happen--when you disable an app, it should stop working within seconds. (Or in certain unusual cases, within minutes.) When you request deletion, it takes a few days, but you can only do that after the app is disabled. As Brandon notes, there are a variety of caches which may cache

[google-appengine] Re: Deadline Exceeded Errors

2011-05-09 Thread Dan
The problem cleared up at 08:45:00 then started recurring at 11:00:00 and is continuing now at 11:48:00. Anyone else seeing this problem? Dan On May 9, 11:31 am, Dan dan.c.hoo...@gmail.com wrote: Anyone else start experiencing Deadline Exceeded Errors around 2011-05-09 08:12:00?  My

Re: [google-appengine] Re: Prerelease SDK 1.5.0 available for download

2011-05-09 Thread Gregory D'alesandre
Well, as long as you asked, we are indeed still working on SSL as fast as possible, its one of our top priorities, unfortunately as you noted its pretty complex :) We know this is a huge need but unfortunately is not done yet and we don't have a date we are ready to announce. As soon as there is

[google-appengine] Google App Engine OAuth endpoints throwing 400 in production.

2011-05-09 Thread Will Merydith
(posted in OAuth group as well) I implemented the experimental OAuth support for Google App Engine using Pythonhttp://code.google.com/appengine/docs/python/oauth/overview.html#OAuth_Endpoints, and have it working locally, but the endpoints are throwing a 400 when I deploy to appspot. For

[google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Kaan Soral
The famous, someone died come take his money scam? On May 9, 8:53 pm, Brandon Wirtz drak...@digerat.com wrote: To get adoption you will have to move to a different country.  There is no way I'm giving any financial information to someone in Nigeria.  In the US the only thing the general

[google-appengine] Re: Deadline Exceeded Errors

2011-05-09 Thread Francois Masurel
I'm getting quite a lot of 500 errors on traffic increase since the last update. Check this : https://groups.google.com/d/topic/google-appengine/2PuwNpACBus/discussion It might be related. Francois -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Cannot log in. Not authorized to access this application

2011-05-09 Thread daodao
I receive the message as follows when trying to log into my google apps appengine account. Unauthorized You are not authorized to access this application. I'm using custom domain. I have tried both appengine.google.com/a/ mydomain and appengine.google.com. Any help? -- You received this

RE: [google-appengine] Re: The aftermath of Garage48 Lagos. GWT and GAE rules

2011-05-09 Thread Brandon Wirtz
http://www.newyork.bbb.org/SitePage.aspx?site=24id=1d517d18-4687-4acc-8b30- e6944a978f19 There's so many to choose from... My personal favorite Hot girl flirts you up on Eharmony or Chemistry, mentions she is going to Nigeria for 2 weeks as a volunteer, sends pictures of her there, then

RE: [google-appengine] Cannot log in. Not authorized to access this application

2011-05-09 Thread Brandon Wirtz
Works better if you include the name of the app you need help with. Also make sure you are signed out of Google when you go to appengine.google.com . Try using an Incognito window. From the error you are getting it doesn't sound like you are trying to log in to the dash board. If you are

[google-appengine] Parent, childs and ancestor is

2011-05-09 Thread Pau
Hi, I create a hirarchy data in datastore using parents. For example: A ... childs : B, C B ... childs : D, E C ... childs : F, G Now, I would like select childs of A using ANCESTOR IS, but the query return all descendants (B, C, D, E, F and G). Do you know how I can retrieve only the direct

[google-appengine] javax.el.PropertyNotFoundException: Could not find property typeDO in class xxx.xxx.ImageDO

2011-05-09 Thread Markus
I have a nice error. I developed a simple JDO Class: public class ImageDO extends CommonData { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) @Unique protected Key id; @Persistent protected String key; @Persistent

[google-appengine] Frequently is Relative Right? Help with FAQ

2011-05-09 Thread Brandon Wirtz
I'm compiling an FAQ and since I haven't talked to 100s of people I need some more questions. http://www.cdninabox.com/faq/ Any thoughts, would be appreciated, we're going to do a press release for tomorrow so that we can piggy back on Google IO news (not that we are going to be there).

Re: [google-appengine] javax.el.PropertyNotFoundException: Could not find property typeDO in class xxx.xxx.ImageDO

2011-05-09 Thread Stephen Johnson
Looks like you have a typo in a register jsp page, did you mean typeData instead of typeDO??? On Mon, May 9, 2011 at 3:29 PM, Markus ad...@thandaro.com wrote: I have a nice error. I developed a simple JDO Class: public class ImageDO extends CommonData { @PrimaryKey

[google-appengine] Re: Frequently is Relative Right? Help with FAQ

2011-05-09 Thread Tim
Quote: How do I know I need a CDN? You made it here, you must think you need a CDN. What about those who follow tweet like Make your site load much faster with ... ?? You will get some who need it (or could do with it) explaining - at least the acronym... Quote: You seem expensive. Are

RE: [google-appengine] Re: Frequently is Relative Right? Help with FAQ

2011-05-09 Thread Brandon Wirtz
Good catch on the what is a CDN question. I was trying to decide if I want the customer that thinks I'm cheap :-) . It's like Cars or Hookers, the kind of person looking for a cheap one is likely not a good client :-). I have been thinking about the if you are running on GAE would we

[google-appengine] Re: modify the mailed-by header

2011-05-09 Thread Andrew Steinborn
Doesn't seem like it. On May 6, 1:46 am, Joseph Wroblewski j...@stretchcom.com wrote: Can a Java app in GAE change the mailed-by email header for outgoing emails. I'm having issues with SMS to email gateways that use the mailed-by header instead of the from email address. Joe -- You

[google-appengine] Re: Open Source Gamification Platform

2011-05-09 Thread Albert
Looks very promising. I think this is something I could use. I signed up. Could you possibly get me into the private beta? Thanks! Albert On May 7, 5:31 am, Navraj S. Chohan nlak...@gmail.com wrote: Sorry,https://cloudcaptive-userinfuser.appspot.com This time I tested it =) Thanks for

[google-appengine] Re: Multitenant Design and Indexes

2011-05-09 Thread someone1
Thanks for the reply, however, how are the indexes handled in the backend? Is it just one index shared across the namespaces or does each namespace get its own index for the custom indexes I define? I understand as far as billing is concerned, it'll appear as a single index and I also understand I

[google-appengine] Re: Cannot log in. Not authorized to access this application

2011-05-09 Thread daodao
Here're my steps: 1. I logout all of my google accounts and restart browser 2. open page of http://appengine.google.com/a/awfullychocolate-bj.com 3. I was redirected to a google login page. I login with admin account of my custom domain awfullychocoate-bj.com 4. The message prompted:

[google-appengine] RE: Cannot log in. Not authorized to access this application

2011-05-09 Thread Brandon Wirtz
Appengine.google.com Log in. Don't go to the url you are. Select the domain. Administer it. -Original Message- From: daodao [mailto:daoda...@gmail.com] Sent: Monday, May 09, 2011 10:08 PM To: Brandon Wirtz Subject: Re: Cannot log in. Not authorized to access this application Here're

[google-appengine] Re: javax.el.PropertyNotFoundException: Could not find property typeDO in class xxx.xxx.ImageDO

2011-05-09 Thread Markus
Omg... a realy realy stupid error. Thanks for help... -- 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] Re: Cannot log in. Not authorized to access this application

2011-05-09 Thread Gordon Teresa
The same:( 1. open http://appengine.google.com 2. log in as gor...@awfullychocolate-bj.com (the domain admin account) 3. unauthorized message again:-( (top-right corner display gor...@awfullychocolate-bj.com, seems login successfully) 2011/5/9 Brandon Wirtz drak...@digerat.com