Tobiah wrote:
> Is there a way to call function in an imported
> module having only the name?
...
> I'm trying to set up a function dispatcher for a
> SOAP server.

    Bad idea.  This exposes all the functions of the
module to calls from the outside world.  Big security hole.

    In any case, SOAP servers should have a separate object for
each connection, or the thing will mess up if two requests
are made at the same time.

    See

        http://www.ibm.com/developerworks/library/ws-pyth5/

                                John Nagle
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to