I've created a simple Java class which implements
flex.messaging.FlexConfigurable. This works nicely and the initialize
methid gets invoked as expected.
However, if I place additional properties inside the remoting-config.xml
for this RemoteObject the instantiation fails and I end up with Flex
errors about "Unused tags in <properties> found?". Is this not
supported?
eg. my destination looks like this
<destination id="roTest">
<properties>
<source>TestService</source>
<scope>application</scope>
<custom>
<test>Hello!</test>
</custom>
</properties>
</destination>
and inside the initialize() method I want to query the ConfigMap passed
in for the /custom/test property.
Dirk.