Hi, Could you try placeholder-prefix / placeholder-suffix syntax:
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0" xmlns:jaas="http://karaf.apache.org/xmlns/jaas/v1.0.0" xmlns:ext="http://aries.apache.org/blueprint/xmlns/blueprint-ext/v1.0.0"> <cm:property-placeholder persistent-id="xxxx" activation="eager" placeholder-prefix="$[" placeholder-suffix="]"> <cm:default-properties> <cm:property name="kerberos.user.debug" value="true" /> <cm:property name="kerberos.user.useTicketCache" value="false" /> </cm:default-properties> </cm:property-placeholder> <jaas:config name="test"> <jaas:module className="com.sun.security.auth.module.Krb5LoginModule" flags="required"> debug = $[kerberos.user.debug] useTicketCache = $[kerberos.user.useTicketCache] </jaas:module> </jaas:config> </blueprint> Regards, Andrei. > -----Original Message----- > From: carma.robot [mailto:[email protected]] > Sent: Dienstag, 11. März 2014 06:38 > To: [email protected] > Subject: Re: Blueprint property placeholder does not work with HTTP conduit > configuration > > Freeman, > > I have created a JIRA ticket. Please see: > https://issues.apache.org/jira/browse/CXF-5601 > > In the meanwhile, can you suggest a workaround for this problem? > > Thanks, > > C.R. > > > > -- > View this message in context: http://cxf.547215.n5.nabble.com/Blueprint- > property-placeholder-does-not-work-with-HTTP-conduit-configuration- > tp5740946p5741064.html > Sent from the cxf-user mailing list archive at Nabble.com.
