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

Daniel Kulp updated CXF-5273:
-----------------------------

    Fix Version/s:     (was: 2.6.10)
                       (was: 2.7.7)
                       (was: 3.0.0)
    
> Filter the interceptor according to Phase instead of class name in 
> WSDLGetInterceptor
> -------------------------------------------------------------------------------------
>
>                 Key: CXF-5273
>                 URL: https://issues.apache.org/jira/browse/CXF-5273
>             Project: CXF
>          Issue Type: Improvement
>          Components: Core
>            Reporter: Willem Jiang
>            Assignee: Willem Jiang
>
> Current WSDLGetInterceptor build up the out message interceptor chain like 
> this
> {code}
> Iterator<Interceptor<? extends Message>> iterator = 
> mout.getInterceptorChain().iterator();
>             while (iterator.hasNext()) {
>                 Interceptor<? extends Message> inInterceptor = 
> iterator.next();
>                 if (!inInterceptor.getClass().equals(StaxOutInterceptor.class)
>                     && 
> !inInterceptor.getClass().equals(GZIPOutInterceptor.class)
>                     && 
> !inInterceptor.getClass().equals(MessageSenderInterceptor.class)) {
>                     mout.getInterceptorChain().remove(inInterceptor);
>                 }
>             }
> {code}
> It causes some troubles when users use some customer interceptors.
>  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to