You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org> on 2009/01/06 15:16:05 UTC

[jira] Commented: (SM-1572) HttpSoapConsumerEndpoint ignores custom marshalers

    [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=48501#action_48501 ] 

Jean-Baptiste Onofré commented on SM-1572:
------------------------------------------

The HttpSoapConsumerEndpoint class already uses the marshaler property (in 2008.01 version of the component) in the validate() method :

        HttpSoapConsumerMarshaler marshaler;
        if (getMarshaler() instanceof HttpSoapConsumerMarshaler) {
            marshaler = (HttpSoapConsumerMarshaler)getMarshaler();
        } else if (getMarshaler() == null) {
            marshaler = new HttpSoapConsumerMarshaler();
        } else {
            throw new DeploymentException("The configured marshaler must inherit HttpSoapConsumerMarshaler");
        }

In the head (next 2008.02 of the component), I have added WSDL proxy (see the SM-1721).


> HttpSoapConsumerEndpoint ignores custom marshalers
> --------------------------------------------------
>
>                 Key: SM-1572
>                 URL: https://issues.apache.org/activemq/browse/SM-1572
>             Project: ServiceMix
>          Issue Type: Bug
>          Components: servicemix-http
>    Affects Versions: 3.2
>         Environment: Linux
>            Reporter: Mathias Bouvant
>            Priority: Trivial
>             Fix For: servicemix-http-2008.01
>
>         Attachments: MyHttpSoapConsumerMarshaler.java, SM-1572-patch.txt
>
>
> The HttpSoapConsumerEndpoint ignores the marshaler property and will only use the HttpSoapConsumerMarshaler class.
> Here is a suggestion of patch, and an example of a custom marshaler.
> similar bug : SM-1293 on the provider side.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.