Hello,
I param a user-servlet.xml like this and it is working .

<bean id="userImpl" class="com.xxx.xxx.UserProxyImpl" scope="singleton" dependency-check="objects">
</bean>

<bean name="/UserService" class="org.springframework.remoting.httpinvoker.Ht tpInvokerServiceExporter">
<property name="service" ref="userImpl"/>
<property name="serviceInterface" value="com.xxx.xxx.UserProxy"/>
</bean>

The com.xxx.xxx.UserProxyImpl class is already specified in an other Spring xml file and i dont want declare again the bean in the -servlet.xml file.

How I can do it ?

Best Regards