Does anyone performancewise which one is better either a StatelessSessionBean or a webservice? My Client and the service which I am going to expose will be implemented only on java. So which one would be faster? One thing about webservice is that it has to convert the xml object to java and vice versa which I think is unnesscary if you are sure that the client which gonna call this service would be in java. So i think a statelessssessionbean would be faster that a webservice. Also I'll get instance pooling with Beans.
Reza Rahman
author
Ranch Hand
Joined: Feb 01, 2005
Posts: 559
posted
0
Nandkishor,
RMI would be a lot more efficient performance wise than either SOAP or REST web services.
Regards, Reza
Independent Consultant — Author, EJB 3 in Action — Expert Group Member, Java EE 6 and EJB 3.1
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Either SessionBean or WebService(Performance)