Hi, i'm relatively new on python and i'd like to setup a webservice on an IIS server using soaplib and isapi_wsgi. I've written the soaplib web services that works fine as a wsgi server:
from wsgiref.simple_server import make_server
server = make_server('10.0.0.222', 8080, WebServices())
server.serve_forever()
how can i change my soaplib to works as a isapi dll from IIS?
i cannot find any examples to do that.
please help