diff --git a/examples/helloworld.py b/examples/helloworld.py index 8b5fe381d..5b7cd4c3f 100755 --- a/examples/helloworld.py +++ b/examples/helloworld.py @@ -24,7 +24,7 @@ from soaplib.core.service import DefinitionBase from soaplib.core.model.primitive import String, Integer -from soaplib.server import wsgi +from soaplib.core.server import wsgi from soaplib.core.model.clazz import Array ''' @@ -52,7 +52,7 @@ def say_hello(self, name, times): if __name__=='__main__': try: from wsgiref.simple_server import make_server - soap_application = soaplib.Application([HelloWorldService], 'tns') + soap_application = soaplib.core.Application([HelloWorldService], 'tns') wsgi_application = wsgi.Application(soap_application) print "listening to http://0.0.0.0:7789"