Hi,

I have configured CXF client using spring configuration as follows:

        <bean id="searchClient"
                class="com.client.service.SearchService"
                factory-bean="searchClientFactory" factory-method="create"
lazy-init="true" />

        <bean id="searchClientFactory"
                class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
                <property name="serviceClass"
                        value="com.client.service.SearchService" />
                <property name="address" 
value="${webservice.host.url}/${soapservice.url}"
/>
        </bean>

What is the configuration I  can add to send username and password with
basic authentication credentials?


Thanks,
Durga
-- 
View this message in context: 
http://www.nabble.com/Basic-authentication-with-Spring-configured-client-tp17500802p17500802.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to