Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘HelloWorldService’ is not defined
I am following the example at http://github.com/jkp/soaplib by writing the following code:
from soaplib.client import make_service_client
client = make_service_client('http://localhost:7789/',HelloWorldService())
You’re neglecting the paragraph after that code snippet:
You need to add a stub to your project that simulates the structure of the HelloWorldService class on the server:
Add that snippet right after your import statement and give it a whirl.