Hi,
yes of course.
You can use the JaxRPCProxyFactoryBean. In that you can pass the Service that is pulled out from the JNDI (instead of a normal bean).
Here is a small example
Code:
<bean id="accountWebService" class="org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean">
<property name="serviceInterface" value="example.RemoteAccountService"/>
<property name="jaxRpcService" ref="myService" />
<property name="portName" value="AccountPort"/>
</bean>
<jee:jndi-lookup id="myService" jndi-name="services/myService"/>
regards
agim