Thx Jochen. Your answers helped me bu raised other.
I want to develop a client server app and i would like to try doing it with xml -rpc. (like this application is done ,but in python http://www.tryton.org/demo.html ) Now the architecture i was thinking is client with eclipse rcp but i am more interested in server side now. SO: 1) the java xml-rpc provide a server class ? is enough to start that and i do not have to care ablout number of users ? "The XmlRpcServer can be embedded into a servlet container, or another HTTP server (for example, the minimal web server, that comes with XML-RPC), but it doesn't need to" What do you recoomend here ? 2) after the server is possible to use for server side transcation spring ? so then the transactional issues are resolved so i do not need a app server ? 3) i just don't get a simple class like webserver can resolve communication prety much as a jee app server ? (something si missing from my judgement i am sure) it just can;t be :) Jochen Wiedmann wrote: > > On Mon, Jan 12, 2009 at 11:02 PM, csergiu77 <[email protected]> wrote: >> >> 1) is possible to do such comparsion ? > > Why not? However, a fair comparison would cover much more topics than > your questions below. > > >> 2) havin a client server architecture i am able to call methods on a >> remote >> server with xml rpc ? > > Yes. > > >> 3) what about transactions (concurency)? > > Not so easily done. Basically, you could open a transaction on the > server side and keep it in some kind of session, which is connected to > the client. However, user controlled transactions are obviously > something that you get relatively cheap with JEE. > > >> 4) what about if number of users is quite big (does it handle) > > You can bet that XML-RPC scales better. > > > Jochen > > > -- > I have always wished for my computer to be as easy to use as my > telephone; my wish has come true because I can no longer figure out > how to use my telephone. > > -- (Bjarne Stroustrup, > http://www.research.att.com/~bs/bs_faq.html#really-say-that > My guess: Nokia E50) > > -- View this message in context: http://www.nabble.com/xml-rpc-server-vs-jee-server-tp21424779p21430799.html Sent from the Apache Xml-RPC - User mailing list archive at Nabble.com.
