I created a server using pysimplesoap it implements
It uses the following code to start.
        log.info("Starting wsgi server...")
        from wsgiref.simple_server import make_server
        application = WSGISOAPHandler(dispatcher)
        wsgid = make_server('', 8008, application)
        wsgid.serve_forever()
How do I get that working with apache/modwsgi.
What would be my wsgi file?
Just the
from myserver import dispatcher
        from wsgiref.simple_server import make_server
        application = WSGISOAPHandler(dispatcher)
        wsgid = make_server('', 8008, application)
        wsgid.serve_forever()


I am running
Server version: Apache/2.4.10 (Debian)
Python Version: 3.4.2
libapache2-mod-wsgi-py3 version 4.3.0-1


--

Thanks,
Brian Herman
IT
O: (773)299-7557
F: (773)299-7505

--
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to