As far as I can tell, in the case of a service being a JavaBean, the classname of this bean is defined in the bindings. The code uses this classname directly to instantiate an instance of this object, using Class.newInstance(). Is there any chance (or plan) to support a level of indirection for this? Assume I want to retrieve this instance from another place before invoking a service request on it. Or I want to let a factory instantiate it. For EJBs, the fact that they are retrieved through naming gives me additional flexibility, for JavaBeans it seems pretty hardcoded. Andre Tost
