Timothy Bennett wrote:
Stephen McConnell wrote:


The current candidate for release is 3.2.3. This includes the resolution and validation of the unix scripts together and a couple of bug fixes that came up during the evaluation period. Earlier this week Timothy Bennett reported a problem concerning improper handling of an UndeclaredThrowableException within a composite component.




Have just downloaded the 3.2.3 release candidate and tested it. Fixes my exception problem across composite components. Thanks for the quick turnaround, Steve!


Now... as soon as I can get an option to switch off component proxies, I'll be ready to take my commercial server up to merlin 3.2.x!

It's actually possible already (just not documented because it not what I would call a general production solution). If you take a copy of the generated .xinfo file for the component that needs to bypass proxy isolation, place it in a directory somewhere (such as src/etc), then ... add the following attributes declaration:


  <type>
    <info>
      :
      <attributes>
        <attribute key="urn:activation:proxy" value="false"/>
      </attributes>
      :
    </info>
    :
  </type>

Then update your project.xml to include the xinfo file in src\etc as a resource

  <build>
    :
    <resources>
      <resource>
        <directory>${basedir}/src/etc</directory>
        <includes>
          <include>**/*.xinfo</include>
        </includes>
      </resource>
    </resources>
  </build>

This is basically a workaround to the fact that the current avalon-meta tags implementation do not provide support for the declaration of arbitrary attributes.

Cheers, Steve.


Thanks for your hard work, Steve!


-- Timothy



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--

|------------------------------------------------|
| Magic by Merlin                                |
| Production by Avalon                           |
|                                                |
| http://avalon.apache.org/merlin                |
| http://dpml.net/merlin/distributions/latest    |
|------------------------------------------------|

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to