You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2008/06/19 22:09:45 UTC

[jira] Created: (CXF-1660) Nested namespace defined spring beans aren't properly unique

Nested namespace defined spring beans aren't properly unique
------------------------------------------------------------

                 Key: CXF-1660
                 URL: https://issues.apache.org/jira/browse/CXF-1660
             Project: CXF
          Issue Type: Bug
          Components: Configuration
    Affects Versions: 2.1.1, 2.0.7
            Reporter: Daniel Kulp
            Assignee: Daniel Kulp
             Fix For: 2.1.2, 2.0.8



With a spring config like:
  <jaxws:server id="inlineSoapBinding12" 
    serviceClass="org.apache.cxf.jaxws.service.Hello"
    address="http://localhost:8080/test">
    <jaxws:binding>
      <soap:soapBinding mtomEnabled="true" version="1.2"/>
    </jaxws:binding>
  </jaxws:server>
  
  <jaxws:server id="inlineSoapBinding11" 
    serviceClass="org.apache.cxf.jaxws.service.Hello"
    address="http://localhost:8080/testrpc">
    <jaxws:binding>
      <soap:soapBinding mtomEnabled="false" version="1.1"/>
    </jaxws:binding>
  </jaxws:server>

Only a single "SoapBindingConfiguration" object is created.   Thus, the properties for the second one aren't honored.





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


[jira] Resolved: (CXF-1660) Nested namespace defined spring beans aren't properly unique

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-1660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-1660.
------------------------------

    Resolution: Fixed

> Nested namespace defined spring beans aren't properly unique
> ------------------------------------------------------------
>
>                 Key: CXF-1660
>                 URL: https://issues.apache.org/jira/browse/CXF-1660
>             Project: CXF
>          Issue Type: Bug
>          Components: Configuration
>    Affects Versions: 2.1.1, 2.0.7
>            Reporter: Daniel Kulp
>            Assignee: Daniel Kulp
>             Fix For: 2.1.2, 2.0.8
>
>
> With a spring config like:
>   <jaxws:server id="inlineSoapBinding12" 
>     serviceClass="org.apache.cxf.jaxws.service.Hello"
>     address="http://localhost:8080/test">
>     <jaxws:binding>
>       <soap:soapBinding mtomEnabled="true" version="1.2"/>
>     </jaxws:binding>
>   </jaxws:server>
>   
>   <jaxws:server id="inlineSoapBinding11" 
>     serviceClass="org.apache.cxf.jaxws.service.Hello"
>     address="http://localhost:8080/testrpc">
>     <jaxws:binding>
>       <soap:soapBinding mtomEnabled="false" version="1.1"/>
>     </jaxws:binding>
>   </jaxws:server>
> Only a single "SoapBindingConfiguration" object is created.   Thus, the properties for the second one aren't honored.

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