谁能指导我在使用 Spring WS 时如何添加基本 Http 身份验证,即用于编写 Web 服务客户端的 WebserviceTemplate 类?
谢谢
谁能指导我在使用 Spring WS 时如何添加基本 Http 身份验证,即用于编写 Web 服务客户端的 WebserviceTemplate 类?
谢谢
您需要将 messageSender 设置为使用 Commons HTTP。见这里http://static.springsource.org/spring-ws/site/reference/html/client.html
<bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate">
<constructor-arg ref="messageFactory"/>
<property name="messageSender">
<bean class="org.springframework.ws.transport.http.CommonsHttpMessageSender">
<property name="credentials">
<bean class="org.apache.commons.httpclient.UsernamePasswordCredentials">
<constructor-arg value="john"/>
<constructor-arg value="secret"/>
</bean>
</property>
</bean>
</property>
<property name="defaultUri" value="http://example.com/WebService"/>
</bean>