<!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="https://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;">
    org.apache.xml excluded from precompilation?
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/tcunning">Tom Cunningham</a> in <i>JBoss AOP</i> - <a href="https://community.jboss.org/message/760248#760248">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>I'm trying to patch over a bug in XMLBeans ( <a class="jive-link-external-small" href="https://issues.apache.org/jira/browse/XMLBEANS-328">https://issues.apache.org/jira/browse/XMLBEANS-328</a> ) using pointcuts.&#160;&#160;&#160;&#160;&#160;&#160; I've been struggling over the past couple of days to try to get aopc working on my class, even building a stub class that models the class structure of the class I'm trying to advise, which worked fine, but I still get a "no comp needed" when trying to aopc org.apache.xmlbeans.impl.store.Xobj.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Today I set some breakpoints and discovered that it is being rejected because of the package name of the class :</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>(from AspectManager.class)</p><p style="font-size: 11px; font-family: Monaco;"><span style="color: #931a68;">public</span> <span style="color: #931a68;">boolean</span> isNonAdvisableClassName(String classname)</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160; {</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160; <span style="color: #931a68;">if</span> (ignoreClass(classname)) <span style="color: #931a68;">return</span> <span style="color: #931a68;">true</span>;</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160; <span style="color: #931a68;">if</span> (includeClass(classname)) <span style="color: #931a68;">return</span> <span style="color: #931a68;">false</span>;</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160; <span style="color: #931a68;">if</span> (excludeClass(classname)) <span style="color: #931a68;">return</span> <span style="color: #931a68;">true</span>;</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160; <span style="color: #931a68;">return</span> (classname.startsWith(<span style="color: #3933ff;">"org.jboss.aop."</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.endsWith(<span style="color: #3933ff;">"$aop"</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"javassist"</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"org.jboss.util."</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"gnu.trove."</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"EDU.oswego.cs.dl.util.concurrent."</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.contains(<span style="color: #3933ff;">'.'</span> + JoinPointGenerator.<span style="color: #0326cc;">JOINPOINT_CLASS_PREFIX</span>) ||</p><p style="font-size: 11px; font-family: Monaco; color: #4e9072;"><span style="color: #000000;">&#160;&#160;&#160;&#160;&#160; </span>// System classes</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"org.apache.tools.ant"</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"org.apache.crimson"</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"org.apache.xalan"</span>) ||</p><p style="font-size: 11px; font-family: Monaco;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; classname.startsWith(<span style="color: #3933ff;">"org.apache.xml"</span>) ||</p><p>....</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Everything starting with org.apache.xml seems to be filtered out - which org.apache.xmlbeans.impl.store would fall under.&#160;&#160;&#160;&#160; Is there a reason why "org.apache.xmlbeans" should be blocked, and not just "org.apache.xml."?&#160;&#160;&#160;&#160;&#160;&#160; Is there a way I can short circuit this by getting includeClass(classname) to return true?&#160;&#160;&#160;&#160; I'm calling aopc through the ant task :</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-xml">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;aopc compilerclasspathref="build.classpath" verbose="true"&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;classpath path="${aopc.xbean.classes.dir}"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;src path="${aopc.xbean.classes.dir}"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="Foo.class"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="org/apache/xmlbeans/impl/store/Xobj$SoapBodyXobj.class"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;include name="org/apache/xmlbeans/impl/store/Xobj.class"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;aoppath path="${aop.resources.dir}/META-INF/jboss-aop.xml"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;aopclasspath path="${aop.classes.dir}"/&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/aopc&gt;</span>
</code></pre></div>

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


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

</div>

</body>
</html>