3 Replies Latest reply on Aug 22, 2005 2:53 PM by adrian.brock

    problems with multiple pluggable schema's

    bill.burke

      I have the following XML:

      <aop xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="urn:jboss:aop-deployer aop-deployer_1_1.xsd"
       xmlns="urn:jboss:aop-deployer">
      
       <interceptor name="SimpleInterceptor">
       <bean xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
       xmlns="urn:jboss:bean-deployer" class="org.jboss.test.kernel.SimpleInterceptor">
       <constructor>
       <parameter>Hello</parameter>
       </constructor>
       <property name="second">World</property>
       </bean>
       </interceptor>
      </aop>
      


      How can I get at the child bean element in the interceptor's ElementHandler? I want to generically obtain this information. AM I making sense?

      Thanks