[Q] SOAP Server in Python

E

Eric

What is the best, well supported, way to write a SOAP Server in
Python? Where can a good example be found?
I do have a WSDL file.

In PHP5, it is rather trivial to write a SOAP server once one has a
WSDL file. For example, a simple SOAP Server written using PHP5 might
look like:

<?PHP
class MySoapServer {
function ASoapFunction( $inParameter )
{
return 1;
}
}

$ini = ini_set( "soap.wsdl_cache_enabled", "0" );
$server = new SoapServer( "MySoapServer.wsdl" );
$server->setClass( "MySoapServer" );
$server->handle();
?>

I am basically looking to do the same thing in Python as easily.

Any help or pointers would be appreciated.

thank you.
 
D

dave_mikesell

I am basically looking to do the same thing in Python as easily.

Any help or pointers would be appreciated.

Googling for "python soap" turned up a few hits that may help you.
 
E

Eric

Googling for "python soap" turned up a few hits that may help you.

Yes, but I don't have the knowledge to accurately or effectively
evaluate the information. I was hoping someone here had some
experience writing a SOAP Server using Python and would be willing to
share what they know.
 
E

Eric

Googling for "python soap" turned up a few hits that may help you.

Yes, but I don't have the knowledge to accurately or effectively
evaluate the information. I was hoping someone here had some
experience writing a SOAP Server using Python and would be willing to
share what they know.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,734
Messages
2,569,441
Members
44,832
Latest member
GlennSmall

Latest Threads

Top