Is it possilbe to create module for a string, Say, I have the follwing
in module.xml file
<module name="someModule">
<InFlow>
<handler name="SomeHandler" class="test.SomeHandler">
<order phase="Transport"/>
</handler>
</InFlow>
</module>
My requirement is that I will get access of this xml file as a string
at runtime. Is there any way to build a module and egage it
dynamically. I see that DeploymentEngine.buildModule expects File as
parameter.
Is there any way to build Module from the string?
Shah