You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Shah Asrani <sh...@gmail.com> on 2008/12/30 21:14:05 UTC

Dynamic creation of AxisModule

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