blob: 1f792d057e7dcb0608514434513c7cf0d0631a9e [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<!--
- Application context for JSecurity WebStart sample application
-->
<beans>
<bean id="webStartView"
class="org.jsecurity.samples.spring.ui.WebStartView">
<property name="sampleManager" ref="sampleManager"/>
</bean>
<bean id="sampleManager"
class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
<property name="serviceUrl" value="http://localhost:8080/jsecurity-spring/remoting/sampleManager"/>
<property name="serviceInterface" value="org.jsecurity.samples.spring.SampleManager"/>
<property name="remoteInvocationFactory" ref="secureRemoteInvocationFactory"/>
</bean>
<bean id="secureRemoteInvocationFactory"
class="org.jsecurity.spring.remoting.SecureRemoteInvocationFactory"/>
</beans>