Re: [appengine-java] Domain Name Setup

2010-04-14 Thread yjun hu
http://hapeblog.appspot.com/blog.shtml?id=12002 you just need to forward fakedomain.com to www.fakedomain.com On Thu, Apr 15, 2010 at 4:21 AM, fletcher wrote: > Hello - > > I want to use http://fakedomain.com instead of http://fakeapp.appspot.com. > I went through the domain setup in the app eng

[appengine-java] Problems upgrading sdk from 1.3.0 to 1.3.2

2010-04-14 Thread dreamy
my app engine application use sdk 1.3.0, i have insert many data into local_db.bin. today ,i update sdk 1.3.2 , when i use "http:// localhost:/_ah/admin" ,find all data can't query out? but local_db.bin size is not changed .why? when i insert new data by environment of sdk 1.3.2 ,it can

[appengine-java] Re: Prerelease SDK 1.3.3 available for download

2010-04-14 Thread asianCoolz
nice ! -- 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.

[appengine-java] Re: what's the best way to upload lots of data into datastore?

2010-04-14 Thread Houston startup coder
No, the data will not be uploaded if you do that. You can use the Python tool: http://code.google.com/appengine/docs/python/tools/uploadingdata.html On Apr 14, 11:55 am, Derek wrote: > Hi, > > I have about half a million rows of static data. What's the best way > to upload them into datastore

[appengine-java] Re: Blob Store service createUploadUrl() and a Dispatcher Servlet

2010-04-14 Thread Rahul Ravikumar
On further investigation, the blobstore service actually gets called and the upload takes place. However the right success path does not seem to get called. When i log into the admin console on DevAppServer, i can see the Datastore entities of kind __BlobStore__. The same code works correctly on th

[appengine-java] Re: Blob Store service createUploadUrl() and a Dispatcher Servlet

2010-04-14 Thread Rahul Ravikumar
I have verified that this does not happen on the Google App Engine environment. Blobstore service works as expected. The problem only seems to occur in the DevAppServer. Is there a servlet that i can map to _ah/upload/* as a workaround on the DevAppServer ? Any other suggestions? On Apr 13, 6:05 

[appengine-java] Prerelease SDK 1.3.3 available for download

2010-04-14 Thread Ikai L (Google)
Hey guys! We're getting ready to release 1.3.3 soon. I've just posted the prerelease SDKs for anyone that wants to see what's coming out. You can check them out here: http://code.google.com/p/googleappengine/downloads/list Note that the backends have not been pushed yet, so these are only for us

[appengine-java] ImagesService misunderstands an uploaded file's size the first time

2010-04-14 Thread Esteban Ignacio Masoero
Hi there: I'm having the strangest problem. The first time I use the ImagesService (i.e. after it was recently deployed) to transform an image, I get an "ApiProxy$RequestTooLargeException: The request to API call images.Transform() was too large." exception and if I look at the com.google.appengi

[appengine-java] Sending email via Installed Applications

2010-04-14 Thread kghate
Is it possible to use GAE to send an email from an Installed Application; where users login to the installed application with their Google Account using OAuth? What needs to be done so set up Transport and Session when authenticating via OAuth to get this working? -- You received this message be

[appengine-java] Domain Name Setup

2010-04-14 Thread fletcher
Hello - I want to use http://fakedomain.com instead of http://fakeapp.appspot.com. I went through the domain setup in the app engine dashboard and added www.fakedomain.com. I also added the www CNAME record to point to ghs.google.com in my registrars (GoDaddy) administrator panel. Now I can access

[appengine-java] Re: Is the any limitation on entity group size?

2010-04-14 Thread AJ
On Apr 12, 4:18 pm, "Ikai L (Google)" wrote: > No, it should be fine UNLESS you want to load all these child objects in a > single request. As a rule of thumb, load as little data as possible. You may > need to denormalize (the datastore isn't relational anyway) for additional > read performance

Re: [appengine-java] Re: Is the any limitation on entity group size?

2010-04-14 Thread Ikai L (Google)
John's suggestion to store a count is the way to go. Counting objects is "expensive" even in a relational database relative to storing a denormalized counter cache. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this gr

Re: [appengine-java] LocalServiceTestHelper is not supported

2010-04-14 Thread Ikai L (Google)
Did you add these to your build path? - JUnit - ${App Engine SDK directory}/lib/testing/appengine-testing.jar - ${App Engine SDK directory}/lib/impl/appengine-api-labs.jar - ${App Engine SDK directory}/lib/impl/appengine-api-stubs.jar - ${App Engine SDK directory}/lib/impl/appengin

[appengine-java] what's the best way to upload lots of data into datastore?

2010-04-14 Thread Derek
Hi, I have about half a million rows of static data. What's the best way to upload them into datastore? If I load them into my local datastore first, then upload my app through eclipse. Will the data be uploaded as well? Thanks, Derek -- You received this message because you are subscribed to t

[appengine-java] How to create query with 4 arguments?

2010-04-14 Thread Renars
Hello, I want to create JDO query with 4 arguments, but in Eclipse I got error, that only 3 arguments are allowed. Atm my code looks like this: Query q = PMF.get().getPersistenceManager().newQuery(User.class); q.setFilter("companyKey == companyKeyParam && accountant == accountantParam && registre

[appengine-java] Обсуждение на will-it-p lay-in-app-engine

2010-04-14 Thread Anton Kuznetsov
Supports JavaFX? If not it will support in the future? -- 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 goog

[appengine-java] Re: Object hierarchy and GAE datastore

2010-04-14 Thread korey_sed
Thanks for the reply. I turned the relationship around and it managed to work, but I still liked your idea of embedding the user class better since there will be no user without a person object. I am still not sure i want to get tied down to GAE, so trying to use it for now, but stay generic enou

Re: [appengine-java] Strange characters showing in incoming emails

2010-04-14 Thread david ruescas
Hi, The truth is I cant remember how/if I solved this, I havent played around with email for a long time. I'll get back to you if I find out what the problem is.. Regards, David On Tue, Apr 13, 2010 at 11:18 PM, Esteban Ignacio Masoero < emaso...@getsense.com.ar> wrote: > Hi: > > I think I'm e

Re: [appengine-java] Re: How to exclude the optional jars for deployment?

2010-04-14 Thread Rajeev Dayal
Hey Jake, I just took a look at the thread that you mentioned. Could you describe the problems that you were running into (on the original thread)? I can try and help you out. Rajeev On Tue, Apr 13, 2010 at 10:21 AM, John Patterson wrote: > > On 13 Apr 2010, at 19:56, Jake wrote: > > > I mean,

Re: [appengine-java] Object hierarchy and GAE datastore

2010-04-14 Thread John Patterson
You might find it easier to use one of the datastore specific persistence interfaces like ObjectDatastore You could then define a much cleaner data model like: class Company { Collection employees; } class Person { @Child User user; // could use @Embed instead } I've left ou

[appengine-java] Owned one-to-one relationships: cannot attach a new child to a parent which has already been saved

2010-04-14 Thread ckitop
Hi, Configuration: - Appengine sdk 1.3.1 - 2 Entities: Indicator, Graph /* * INDICATOR.java */ @PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true") @FetchGroup(name="graph", members = { @Persistent(name = "graph")}) public class Indicator { @PrimaryKey

[appengine-java] Jetty servlet invoker

2010-04-14 Thread gurbieta
Hi everybody, y added this lines into my web.xml invoker org.mortbay.jetty.servlet.Invoker invoker /servlet/* And it works on my local version of app-engine (automatically with the eclipse plugin)

[appengine-java] Re: java.awt.Color is a restricted class

2010-04-14 Thread seleronm
Hi, The following link is not a solution I think it answers the same question. http://groups.google.com/group/google-appengine-java/browse_thread/thread/8017df29f14ed98e/ thanks. > Hi, > > I am using JSF2.0 on AppEngine. I get the error below when I try to > use a colorpicker utility. > Is ther