using synchronized rpc method?

2009-04-27 Thread jn93
hi. i understand how to do asynchronous rpc calls from the client- side. is it also possible to use *synchronous* rpc calls? we have interface for it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: using synchronized rpc method?

2009-04-27 Thread Jim
No. We can not use syn rpc. Jim http://www.gwtorm.com http://code.google.com/p/dreamsource-orm/downloads/list On Apr 27, 12:33 pm, jn93 j...@cornell.edu wrote: hi. i understand how to do asynchronous rpc calls from the client- side. is it also possible to use *synchronous* rpc calls? we

Re: using synchronized rpc method?

2009-04-27 Thread Vitali Lovich
Kind of remove the A out of AJAX. You can change any synchronous function call into an asynchronous RPC call. Remember, RPC calls might fail - you need to handle that case properly. You don't have that same problem with regular function calls. regular logic is // code preceding function call //