I was wondering if there was a way to have Multiple Web Service Endpoints (interface and implementation pairs) share one Java Process?
For example: I would have some Java Endpoint Interface called X (which implements the Remote Interface) and another Java Endpoint Interface called Y. If some client calls methods on X and Y, will those two method calls be processed in the same Process? Or will another Process be forked off?
Yes - you can have as many service endpoints running within your web server / app server as you like.
Remember, web services (over SOAP/HTTP at least) are just HTTP requests and responses, so being able to service multiple endpoints is just like running multiple Servlets or JSPs within your web container.
I'm not sure about the current version of Axis, but if I were you I'd go with Sun's Web Services developer pack instead, since Axis (at least in the recent past) wasn't compatible with the WS-I standards.
Does anyone know if Axis is WS-I compliant these days??
cheers,
Dave.
Dave Clark<br />Senior WebSphere Architect<br /><a href="http://www.versant.com" target="_blank" rel="nofollow">Versant Open Access - JDO2 & EJB3</a>
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: Multiple Web Service Endpoints sharing one Java Process