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

2010-07-15 Thread dilbert
This may be a new shiny valid alternative: http://googlewebtoolkit.blogspot.com/2010/07/gwtrpccommlayer-extending-gwt-rpc-to-do.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+blogspot/NWLT+(Google+Web+Toolkit+Blog)&utm_content=Google+Reader I wonder if it will work on Android. On J

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

2010-06-16 Thread dilbert
I posted a new bug report: http://bugs.caucho.com/view.php?id=4080 I would like to move further discussion about this issue to the proper place: http://groups.google.com/group/google-appengine-java/browse_thread/thread/c4fb4f414c425ca1 D. On Jun 16, 12:12 am, Jeff Schnitzer wrote: > I would close

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

2010-06-15 Thread Jeff Schnitzer
I would close the old issue and create a new one cut down to just the exception issue. *Are* there any serious RPC alternatives right now? Sounds like gwt-syncproxy isn't quite ready for prime time (and makes me nervous since it's not using a published protocol), the *-WS stuff is a trainwreck, a

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

2010-06-15 Thread dilbert
At the time I thought the issues were connected since they threw the same exception so I posted them together. So should I post the issue with exceptions again on the Caucho bug tracker? If this issue is solved I would recommend Hessian as the best RPC mechanism for GAE at this time. Apologies to o

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

2010-06-15 Thread Jeff Schnitzer
I think you did yourself a disservice by wrapping these two issues into a single message - it ends up being way too much text to read and otherwise eager volunteers just skip it. The first issue looks like you're not detaching your entities before serializing them. This is a JDO issue. I suggest

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

2010-06-15 Thread dilbert
Hi Jeff. I was hoping to hear from You since I saw that You solved some GAE issues on the hessian-interest list. I already posted the issue on the hessian-interest list here: http://maillist.caucho.com/pipermail/hessian-interest/2010-June/000908.html I also posted several forum questions: http://fo

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

2010-06-11 Thread dilbert
I tried that a few months ago but was not satisfied. I used the latest version(0.1.4). If I remember correctly it did not work well with arbitrary objects, also it did not work with ArrayLists. I think it needs *.gwt.rpc files in order to serialize those but I did not know how to configure them so

[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 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 { >   String echo(String mess

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

2010-06-10 Thread niraj
I have implemented a JSON based RPC framework - refer http://code.google.com/p/amazingapis/wiki/JsonServlet_JsonClient_mechanism So basically , This is cmd framework where you can send request string as Json streams on HTTP and your JSONServlet on the server will read client requests and pass inv