Using Suds for SOAP in python, are suds.client.Client objects thread safe?

Posted by kdt on Stack Overflow See other posts from Stack Overflow or by kdt
Published on 2010-06-07T17:49:10Z Indexed on 2010/06/07 17:52 UTC
Read the original article Hit count: 201

Filed under:
|
|
|

I'm using Suds to access a SOAP web service from python. If I have multiple threading.Thread threads of execution, can each of them safely access the same suds.client.Client instance concurrently, or must I create separate Client objects for each thread?

© Stack Overflow or respective owner

Related posts about python

Related posts about soap