[ 
https://issues.apache.org/jira/browse/CXF-5332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Daniel Kulp resolved CXF-5332.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.6.11
                   2.7.8
         Assignee: Daniel Kulp

> Support spring expression language for jaxws:client address attribute
> ---------------------------------------------------------------------
>
>                 Key: CXF-5332
>                 URL: https://issues.apache.org/jira/browse/CXF-5332
>             Project: CXF
>          Issue Type: Improvement
>    Affects Versions: 2.6.2
>            Reporter: Mark Anderson
>            Assignee: Daniel Kulp
>             Fix For: 2.7.8, 2.6.11
>
>
> I am using a value from another spring bean as the address for my 
> jaxws:client.
> Ideally I would like to use Spring expression language in the address 
> attribute of the jaxws:client tag. e.g.
> {code:xml}
> <jaxws:client address="#{addresses.primaryAddress}" />
> {code}
> but currently CXF tries to lookup a bean with id \{addresses.primaryAddress\}.
> As a workaround I can use a MethodInvokingFactoryBean e.g.
> {code:xml}
> <bean id="primaryAddress" 
> class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
>   <property name="targetObject" ref="addresses" />
>   <property name="targetMethod"><value>getPrimaryAddress</value></property>
> </bean>
> <jaxws:client address="#primaryAddress" />
> {code}
> but being able to use Spring expression language would be cleaner.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to