<beans>

    <bean id="plainWebservice" class="org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean">
        <property name="serviceInterface" value="com.example.service.IService"/>
        <property name="namespaceUri" value="..."/>
        <property name="portName" value="..."/>
        <property name="wsdlDocumentUrl" value="..."/>
    </bean>

    <bean id="myBusinessComponent" class="com.example.Component">
        <property name="bizService" ref="plainWebservice"/>
    </bean>

</beans>
