[appengine-java] Problem with Backend service development on local env

2012-01-04 Thread jhonghee
As I reported in my previous post: https://groups.google.com/group/google-appengine-java/browse_thread/thread/3486790b7f5fd061, I am having this PermGen issue consistently now. I think that it's really related to local dev environment support for Backend service. Please take a look at following st

[appengine-java] File content getting truncated while uploading the same in blob store

2012-01-04 Thread Nirzari Bhatt
Hi, I am using experimental version of blob store API, to upload the file retrieved as byte[] through a web service. Following is the code I am using to upload the byte[] to blob store. public BlobKey writeFileToBlobStore(String mimeType,byte[] fileContent) { // Get a file service File

[appengine-java] DataStoreFactory and KeyFactory

2012-01-04 Thread suresh ashok
Hi All, Is we need any additional lib to be included in the classpath to use the DataStoreFactory and KeyFactory in GAE? I am trying to use the both but it fires an exception like this java.lang.NoClassDefFoundError: com/google/appengine/api/datastore/ KeyFactory Regards, Suresh -- You rece

[appengine-java] Re: JDO second level cache getting in the way...

2012-01-04 Thread datanucleus
@Rick, JDO doesn't encourage you to do anything, nor impose it. Perhaps its just that some will, upon using it, think in a particular way because they used a similar API before, and they're used to their "good old" RDBMS handling things for them so assume the same is true ... and it isn't as you s

Re: [appengine-java] Anybody else unable to use com.google.api.services.plus? Suggestions please!

2012-01-04 Thread Ikai Lan (Google)
Is that file included in google-api-java-client-1.6.0-beta.zip? I see this: dependencies google-http-client-extensions-android2-1.6.0-beta.jar google-api-client-1.6.0-beta.jar google-http-client-extensions-android2-1.6.0-beta-sources.jar google-api-client-1.6.0-beta-sources.jar google-http-

Re: [appengine-java] Re: JDO second level cache getting in the way...

2012-01-04 Thread Péter Kovács
Many thanks, Andy, for the clarification. I am still not sure which of the following statements describes the best the behaviour I observe: it is (a) the intended behaviour, (b) not intended, just happens to be like this or (c) a bug. After regarding cache level: reading fleetingly through the JD

Re: [appengine-java] Re: JDO second level cache getting in the way...

2012-01-04 Thread Péter Kovács
Many thanks, Rick, for bringing to my attention these apparently useful alternatives! I hopefully will find time to try them. Thanks, Peter On Mon, Jan 2, 2012 at 9:00 PM, Rick Mangi wrote: > Do yourself a big favor and run away from JDO + GAE screaming as fast > as you can. You're much better

[appengine-java] Re: JDO second level cache getting in the way...

2012-01-04 Thread Rick Mangi
Perhaps I am thinking of JDO and JPA as being more similar than I should, but I've found that GAE doesn't really want you to think of your datastore in an OO manner either. It's a collection of documents and indexes. JDO (and JPA) encourage you to model your objects as you would in any sane system

[appengine-java] Re: JPA Manual Transaction Retry

2012-01-04 Thread Gebo
I'm having the same problem...anyone know how to manually retry a transaction when using JPA on GAE? On Dec 30 2011, 9:36 pm, SaddleEDH wrote: > Hi, > I have a case where I want to manually retry a transaction in the case of > failure...very similar to the example given on the java transaction pa

[appengine-java] Conversion API - Adding Assets Example Wrongly Documented

2012-01-04 Thread RAJ
Hi All, I am trying to produce pdf reports out of my html String as mentioned in below tutorial: http://code.google.com/appengine/docs/java/conversion/overview.html // Create a conversion request from HTML to PNG. Asset asset = new Asset( "text/html", "some data".getBytes(), "testfile.html

[appengine-java] java.lang.OutOfMemoryError: PermGen space

2012-01-04 Thread jhonghee
I am trying to start backend service using push task queue. Here's my backend configuration B1 true and here's my code for adding task queue. try{ Queue queue = Queu

Re: [appengine-java] Full Text Search Status?

2012-01-04 Thread Ikai Lan (Google)
In general we don't release ETAs on APIs, so I don't have anything new to announce at this time. Hope you've noticed that we've moved to monthly releases, so if everything goes to plan, likely in one of the next few releases (though probably not the next one). -- Ikai Lan Developer Programs Engine

Re: [appengine-java] Full Text Search Status?

2012-01-04 Thread Jaroslav Záruba
Any news/updates? :( -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/NcoX-BGLD2MJ. To post to this group, send email to google-appeng

[appengine-java] BackEnd Names cant able to retreive back

2012-01-04 Thread suresh ashok
Hi, This is the piece of code where i am trying to get the backend name, which i am using in GAE but its actually returning null. BackendService service = BackendServiceFactory.getBackendService(); String currentBackendName = service.getCurrentBack

Re: [appengine-java] Re: Use of com.google.appengine.repackaged

2012-01-04 Thread Vic Chen
Hello chiluveriramesh1 me too. i have to use com.google.appengine.repackaged.org.json.JSONObject. anyway, i just don't care and deploy it. it still work fine. 2012/1/4 ramesh : > Hi All, > > I need to use JSONObject in my project. > > When i import com.google.appengine.repackaged.org.json.JSONOb

[appengine-java] Re: Use of com.google.appengine.repackaged

2012-01-04 Thread ramesh
Hi All, I need to use JSONObject in my project. When i import com.google.appengine.repackaged.org.json.JSONObject; giving error as "Use of com.google.appengine.repackaged may result in your app breaking without warning" I got this error after i upgrade to appengine 1.6.1 sdk. 1.6.0 works fi

[appengine-java] BackEnd Names

2012-01-04 Thread suresh ashok
Hi, This is the piece of code where i am trying to get the backend name, which i am using in GAE but its actually returning null. BackendService service = BackendServiceFactory.getBackendService(); String currentBackendName = service.getCurrentBack