Re: Thoughts on 2-way RPC
Adam Megacz <[email protected]> Wed, 28 Jan 2004 02:19:07 -0800
| Newsgroups | gmane.comp.java.xwt.widgets |
|---|---|
| Organization | XWT |
| Message-ID | <[email protected]> |
Tupshin Harper <[email protected]> writes: > http://lists.xwt.org/pipermail/dev/2002-March/000039.html Right, the main issue with this is that almost every app server architecture (zope, j2ee, mod_perl) forks a separate thread for every request. This means you have to introduce a ton of awkward inter-thread communication code which most "web programmers" are not capable of getting right. So, the choice we're stuck with is simple protocol or simple server-side implementation. - a