Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed helloworld example #12

Merged
1 commit merged into from Jan 20, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/helloworld.py
Expand Up @@ -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

'''
Expand Down Expand Up @@ -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"
Expand Down