I'm trying to using the
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:config.properties</value>
</list>
</property>
</bean>
.......
<sec:trustManagers>
<sec:keyStore type="JKS" password="password" file="${filename}"/>
</sec:trustManagers>
But it is not working.
Read som other posts having similar problems but not 100% sure if
A) Does this work under any circumstances in cxf.xml ?
B) Are there other ways to use properties in cxf.xml ?
Thanks in advance
Jan Vasternas