[jbossws-issues] [JBoss JIRA] (JBWS-3607) Missing import/export of CXF schemas in AS modules

Alessio Soldano (JIRA) jira-events at lists.jboss.org
Thu Mar 14 03:21:41 EDT 2013


    [ https://issues.jboss.org/browse/JBWS-3607?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12761077#comment-12761077 ] 

Alessio Soldano commented on JBWS-3607:
---------------------------------------

See https://community.jboss.org/message/802557#802557 ; basically the user was able to build his spring based cxf bus for an in-container client with a jboss-deployment-structure.xml as follows:
{code}
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.1">
    <deployment>
        <dependencies>
            <module name="com.oracle" export="true" />
            <module name="com.logibec.parameters" export="true" /> <!-- parameters -->
            <module name="org.apache.cxf.impl" export="true">
             <imports>
                <include path="META-INF"/>
                <include path="META-INF/cxf"/>
              </imports>
              <exports>
                <include path="META-INF"/>
                <include path="META-INF/cxf"/>
              </exports>
            </module>         
            <module name="org.apache.cxf" export="true">
              <imports>
                <include path="META-INF"/>
                <include path="META-INF/cxf"/>
              </imports>
              <exports>
                <include path="META-INF"/>
                <include path="META-INF/cxf"/>
              </exports>
            </module>           
            <module name="org.springframework.spring" export="true">
              <imports>
                <include path="META-INF"/>
              </imports>
              <exports>
                <include path="META-INF"/>
               </exports>
            </module>           
           
        </dependencies>
    </deployment>
</jboss-deployment-structure>
{code}

We should figure out how to allow achieving the same by simply setting a dependency on org.jboss.ws.cxf.jbossws-cxf-client module (by properly modifying it and/or its dependencies) and eventually better document this process / scenario.
                
> Missing import/export of CXF schemas in AS modules
> --------------------------------------------------
>
>                 Key: JBWS-3607
>                 URL: https://issues.jboss.org/browse/JBWS-3607
>             Project: JBoss Web Services
>          Issue Type: Feature Request
>      Security Level: Public(Everyone can see) 
>          Components: jbossws-cxf
>            Reporter: Alessio Soldano
>             Fix For: jbossws-cxf-4.2
>
>
> The AS modules that currently set dependencies on cxf module (and on jbossws-cxf-transports-httpserver) are using explicit imports elements for including META-INF and META-INF/cxf. We might need to also include schemas/** too (to be verified if that's already covered by default or not)

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


More information about the jbossws-issues mailing list