|
From: Steven D. <ste...@gm...> - 2004-12-30 01:52:45
|
Hi, Would it be possible to change the HttpInvokerProxyFactoryBean so that it behaves as it does now when a service interface is specifed and otherwise use: serviceObject = new ProxyFactory(this).getProxy(); This way the interfaces implemented by the object are looked up so they don't to be declared. If I understand correctly it is currently not possible to expose more than one interface anyway. Otherwise, I'm a bit lost by the implementation of the getObjectType() method. If the above change is made it should look something like this: return (getServiceInterface() != null) ? getServiceInterface() : this.serviceProxy.getClass(); Steven |