パッケージ org.springframework.security.remoting.httpinvoker

Spring の HttpInvoker 拡張ポイントの使用を有効にして、BASIC 認証を介して ContextHolder にある principal および credentials を提示します。

Bean は次のように接続されています。

 <bean id="test" class="org.springframework.remoting.httpinvoker.HttpInvokerProxyFactoryBean">
   <property name="serviceUrl"><value>http://localhost/Test</value></property>
   <property name="serviceInterface"><value>test.TargetInterface</value></property>
   <property name="httpInvokerRequestExecutor"><ref bean="httpInvokerRequestExecutor"/></property>
 </bean>

 <bean id="httpInvokerRequestExecutor"
     class="org.springframework.security.core.context.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor"/>