Sven Zethelius wrote
> I've done the below using spring placeholders to swap out the server name
> just fine.  You may need to debug into the CXF code that is actually
> building the HttpConduit from the spring to double check the actual URL
> you need to put into there because when I did it I remember it being
> sensitive in what it expected there.

Can you show the snippet ?

The following does work only for the properties, bean names are not resolved
...

        <jaxrs:client id="client1"
                                  
address="http://${server1.name}:${server1.port}/services/service"/>

        <context:property-placeholder/>

        
        <bean
class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
                <property name="order" value="1"/>
                <property name="ignoreUnresolvablePlaceholders" value="false"/>
        </bean>




--
View this message in context: 
http://cxf.547215.n5.nabble.com/cxf-http-conduit-with-parameterizable-name-tp5722488p5722531.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to