tags:

views:

69

answers:

1

Hi.. I have a django application... I am accessing the web service using the SOAP suds client... I need to create a user object from the entries entered in the GUI... This user object is to be passed to a method... But i get the following error:

PicklingError: Can't pickle suds.sudsobject.User: attribute lookup suds.sudsobject.User failed

What is the cause for this error to occur???

A: 

You are perhaps trying to pickle an object that cannot be pickled. See here: http://docs.python.org/library/pickle.html#what-can-be-pickled-and-unpickled

Raz