[appengine-java] May I use AppEngine SDK internally without deploy to Google AppEngine?

2010-12-20 Thread Trung
For some reasons, I would like to run our GAE apps internally (with some custom hooks instead of re-writing the app). May I do that? 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

[appengine-java] Re: May I use AppEngine SDK internally without deploy to Google AppEngine?

2010-12-20 Thread Trung
Appscale is promising. On Dec 21, 3:09 am, A. Stevko andy.ste...@gmail.com wrote: Trung, The dev server is not the only way to run app engine locally. Take a look at these projects to see if they can meet your needs...http://code.google.com/p/appscale/ http://code.google.com/p/appscale

[appengine-java] Re: What is the best option for RPC (web services) on App engine?

2010-06-11 Thread Trung
http://code.google.com/p/gwt-syncproxy/ may be suitable for your needs. On Jun 10, 11:13 pm, dilbert dilbert.elbo...@gmail.com wrote: First I'd like to explain what I mean by RPC. I'd like to be able to write interfaces like this (simple Java interface): public interface EchoService {  

[appengine-java] Simple Put, get operations in transaction

2010-06-06 Thread Trung
I have a simple test as below public class TestDS extends TestCase{ private final LocalServiceTestHelper helper = new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig()); @Before public void setUp() { helper.setUp(); } @After public void tearDown() throws

[appengine-java] Appstats make request to API call memcache.Set() was too large

2010-04-09 Thread Trung
I tried to use Appstats. However, Appstats uses and shows a lot of raw (low level) data. Sometime memcache API throws exception as below: com.google.appengine.api.memcache.LogAndContinueErrorHandler handleServiceError: Service error in memcache

[appengine-java] Re: ANN: Firefox add-on for tracking GAE estimated cost

2010-04-07 Thread Trung
Great!!! On Apr 7, 5:00 pm, radomir radomi...@gmail.com wrote: Hi, I made a Firefox extension that collects estimated cost from App Engine response headers and shows the total in the Firefox status bar. If anyone's interested, the add-on can be downloaded

[appengine-java] Re: Discussion on will-it-play-in-app-engine

2010-04-01 Thread Trung
I tried myfaces 2.0.0 beta 3 successfully. All you need is myfaces jars, EL implementation jars (I used EL jars from Tomcat) and a context parameter context-param param- nameorg.apache.myfaces.config.annotation.LifecycleProvider/param- name param-

[appengine-java] Re: Class XXX has multiple relationship fields of type YYYY

2010-03-28 Thread Trung
Hi GAE team, Any workarounds for this issue? Thanks On Feb 14, 8:55 am, Payam pmoghad...@gmail.com wrote: The problem is still not solved. Although you can persist an object with multiple relations of the same type. When you actually query the object, the retrieved object has duplicates

[appengine-java] Is there any lib (UI front-end and servlet backend) for editing datastore?

2010-03-24 Thread Trung
Hi, Is there any lib for editing datastore? Similar to Datastore Viewer with some additional features. Editing means: + New entity: create a empty entity + Delete existing entity + Add a property to entity + Remove a property from entity + Change a property's value Thanks, -- You received

[appengine-java] How to list all entity kinds programmatically?

2010-03-24 Thread Trung
Hi, I'd like to know whether a Java program can know the list of entity KIND currently in the datastore. Thanks in advance. -- 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: How to best run GWTTestCase tests that involve persistence?

2010-03-14 Thread Trung
Hi, 1. I think the proper way is separating the test from QuestionServiceImpl. 2. For testing QuestionServiceImpl, you should run two separate parts: server side and client side. a) In your case, there are no special in the server side. b) In the client side, you can use GWTTestcase. Your test

[appengine-java] New blog post: Invoke GWT RPC services deployed on Google App Engine

2010-03-13 Thread Trung
A new post http://www.gdevelop.com/w/blog/2010/03/13/invoke-gwt-rpc-services-deployed-on-google-app-engine/ shows how to invoke GWT RPC services deployed on Google App Engine from Java client. Shorten url http://goo.gl/fb/n99D Any feedback can be left on my blog, thanks. Trung -- You

[appengine-java] Re: JDO - GWT - JUNIT testing examples

2010-01-31 Thread Trung
The SyncProxy can be used for this purpose. See http://www.gdevelop.com/w/blog/2010/01/10/testing-gwt-rpc-services/ for details Hope this help, Trung http://www.gdevelop.com/ On Jan 26, 10:19 pm, aswath satrasala aswath.satras...@gmail.com wrote: Hi, I am using GWT and JDO to write a simple

[appengine-java] What Java MVC framework do you use on AppEngine?

2009-12-22 Thread Trung Pham
Coming from Ruby on Rails background, I have tried to run Rails on Jruby on AppEngine. While it works, but it has ridiculous startup time. Well over 20 seconds to spin up an instance, and sometimes it even hits the 30 seconds limit. Anyway, out of curiosity, what is the equivalent MVC

[appengine-java] Re: Error 500 - Loading data to memory during startup

2009-10-23 Thread trung
Yeah, AppEngine drops your request after 30 seconds. My app takes 20 seconds to initialize in development, and half of the times it will finish loading within 30 seconds. Other times it goes pass 30 seconds and gets the same 500 error like yours. Google needs to make an exception for the