1

I wrote a simple server-side web service using spyne on python, and this is my client-side code:

from suds.client import Client
hello_client = Client('http://localhost:8000/?wsdl')
print(hello_client)

but when I add another service or changing the name of the service function in the server-side, and then run the client side again. I still get the last web service name.

from this link, i understand that my client service keeps the copy of old service as a cache and using that so. my question is how could I clear the cache of the service? does python program keeps the cache? or it is from somewhere else?

0 Answers0