You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Mathias Bouvant (JIRA)" <ji...@apache.org> on 2008/09/12 10:53:52 UTC

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

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


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.


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

Posted by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org>.
    [ 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.


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

Posted by "Mathias Bouvant (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mathias Bouvant updated SM-1572:
--------------------------------

    Attachment: SM-1572-patch.txt

> 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
>         Attachments: 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.


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

Posted by "Mathias Bouvant (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mathias Bouvant updated SM-1572:
--------------------------------

    Comment: was deleted

> 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
>         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.


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

Posted by "Mathias Bouvant (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mathias Bouvant updated SM-1572:
--------------------------------

    Attachment: MyHttpSoapConsumerMarshaler.java

a custom marshaler

> 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
>         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.


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

Posted by "Freeman Fang (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Freeman Fang updated SM-1572:
-----------------------------

    Fix Version/s: 3.3.1
                   3.4
                       (was: 3.3)

> 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: 3.3.1, 3.4
>
>         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.


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

Posted by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Baptiste Onofré resolved SM-1572.
--------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 3.4)
                       (was: 3.3.1)
                   servicemix-http-2008.01

> 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.


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

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-1572?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet updated SM-1572:
--------------------------------

    Fix Version/s: 3.3

> 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: 3.3
>
>         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.