[
https://issues.apache.org/jira/browse/CXF-2819?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
jimma resolved CXF-2819.
------------------------
Resolution: Fixed
> <protocl-bindings>##SOAP12_Binding <protocl-bindings> in handler chain is not
> correctly matched
> -------------------------------------------------------------------------------------------------
>
> Key: CXF-2819
> URL: https://issues.apache.org/jira/browse/CXF-2819
> Project: CXF
> Issue Type: Bug
> Components: JAX-WS Runtime
> Affects Versions: 2.2.8
> Reporter: jimma
> Assignee: jimma
> Fix For: 2.2.9
>
>
> When the service class is annotated with SOAP12 binding type :
> @BindingType(value = SOAPBinding.SOAP12HTTP_BINDING)
> public interface SOAPEndpoint
> {
> @WebMethod
> public String echo(String msg);
> }
> The handler defined with SOAP12 Binding protocol pattern can not be attached
> to this endpoint, it wrongly attache the soap11 protocol binding handler :
> <handler-chain>
> <protocol-bindings>##SOAP11_HTTP</protocol-bindings>
> <handler>
> <handler-name> SOAP11ClientHandler </handler-name>
> <handler-class> org.apache.cxf.SOAP11ClientHandler
> </handler-class>
> </handler>
> </handler-chain>
>
> <handler-chain>
> <protocol-bindings>##SOAP12_HTTP</protocol-bindings>
> <handler>
> <handler-name> SOAP12ClientHandler </handler-name>
> <handler-class> org.apache.cxf.SOAP12ClientHandler
> </handler-class>
> </handler>
> </handler-chain>
>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.