On 12/05/11 17:55, azurIt wrote:
>
> Any hints ? :)
patch rpclib code to instrument the out_object attribute. have the
instrumentation spit tracebacks on assignments. that way you'll be able
to track where that strange value comes from.
off the top of my head, add these to the MethodContext class:
def get_out_object(self):
return self.__out_object
def set_out_object(self, what):
import traceback
traceback.print_stack()
self.__out_object = what
out_object = property(get_out_object, set_out_object)
every _second_ request? heh, that's fun :)
good luck,
burak
> azur
> _______________________________________________
> Soap mailing list
> [email protected]
> http://mail.python.org/mailman/listinfo/soap
_______________________________________________
Soap mailing list
[email protected]
http://mail.python.org/mailman/listinfo/soap