Hi,
I want to have multiple spring web services defined in my xml file. I have a single service working fine, but I'm unsure how to define second service.
Code:<bean id="httpInvokerProxy" class="org.sprfr.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl">
<value>http://remotehost:8080/AccountService</value>
</property>
<property name="serviceInterface">
<value>example.AccountService</value>
</property>
</bean>
what do I put here for my 'user' service??? Is what I have correct?
<bean id="httpInvokerProxy" class="org.sprfr.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl">
<value>http://remotehost:8080/UserService</value>
</property>
<property name="serviceInterface">
<value>example.UserService</value>
</property>
</bean>
