<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    JBossWS/CXF configuration / extensions
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/snazy0">Robert Stupp</a> in <i>JBoss AS 7 Development</i> - <a href="http://community.jboss.org/message/640779#640779">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I am currently working on a project, where we need to add custom CXF interceptors to the CXF bus for the current deployment.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The only practically working way to customize the deployment is to add a WEB-INF/jbossws-cxf.xml file to our deployment.</p><p>Generally it works, but there are some bad things using the combination AS7/JBossWS/CXF.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>We have a lot of web services which are bundled in one or more WAR files.</p><p>All of them have "standard" JAX-WS annotations (e.g. @WebService) and work fine (everything bundled in a WAR in an EAR ; deploy to AS7 ; fine).</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>But as I mentioned, we need custom interceptors.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>So I added the interceptors to a jbossws-cxf.xml file:</p><p>&#160;&#160;&#160; &lt;jaxws:endpoint</p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; address='</span><a class="jive-link-external-small" href="http://@jboss.bind.address@/demo/service/SuperService" target="_blank">http://@jboss.bind.address@/demo/service/SuperService</a><span>'</span></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; implementor='com.mycompany.demo.java.MySuperWebservice'&gt;</p><p> <span class="code-tag">&#160;&#160;&#160;&#160;&#160;&#160; &lt;jaxws:inInterceptors&gt;</span></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;ref bean="myGreatInterceptor"/&gt;</p><p><span class="code-tag">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;jaxws:inInterceptors&gt;</span></p><p>&#160;&#160;&#160; &lt;/jaxws:endpoint&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This works - but what I really want is a <span style="text-decoration: underline;">default</span> bus configuration for all webservices in the WAR file (deployment) - I do not want to configure all web services. So I tried the following approach in jbossws-cxf.xml:</p><p>&#160;&#160;&#160; &lt;bean class="com.mycompany.jboss7.cxf.BusInterceptorsInjector" init-method="injectInterceptors"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="bus" ref="cxf"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="inInterceptors"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;list&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;ref bean="FrameworkCxfPreInvokeInterceptor"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;ref bean="FrameworkCxfPostInvokeInterceptor"/&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/list&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/property&gt;</p><p>&#160;&#160;&#160; &lt;/bean&gt;</p><p>This works - but only if <strong>every</strong> webservice is mentioned like</p><p>&#160;&#160;&#160; &lt;jaxws:endpoint</p><p><span>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; address='</span><a class="jive-link-external-small" href="http://@jboss.bind.address@/demo/service/SuperService" target="_blank">http://@jboss.bind.address@/demo/service/SuperService</a><span>'</span></p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; implementor='com.mycompany.demo.java.MySuperWebservice'/&gt;</p><p>This is silly, because the jaxws:endpoint configuration specifies nothing meaningful.</p><p>Every invocation of a web service which is not mentioned in a jbossws-cxf.xml file, fails with a NullPointerException in org.jboss.wsf.stack.cxf.CXFInstanceProvider at line 57 - the CXFInstanceProvider is configured with a "null" ServerFactoryBean.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>What I would like to have in AS7/JBossWS/CXF is</p><ul><li style="text-align: start;">a mechanism, where I can configure the CXF bus for each deployment (specifying another bus definition in jbossws-cxf.xml does not work, because the "default" bus is created "inside the server code") and</li><li style="text-align: start;">no need to specify every web service in jbossws-cxf.xml and</li><li style="text-align: start;">no need to specify the fully qualified address attribute in jaxws:endpoint - developers do not know the exact address, port and context path ot a deployment. AS7/JBossWS should accept at least paths relative to the context root of the current deployment (specifying addresses like /service/SuperService does not work - it cannot find the destination of a web service call)</li><li style="text-align: start;">no need to specify the implementor in jaxws:endpoint, because it is already configured elsewhere (web.xml) - a functionaltity like a "servlet-link" would be great</li></ul><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="text-align: start;">Robert.</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/640779#640779">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss AS 7 Development at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2225">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>