Commit a35255b4 authored by mouadh's avatar mouadh

change linstining ip address

parent b18a4ebc
...@@ -254,8 +254,7 @@ def start_server(write_on_file=False): ...@@ -254,8 +254,7 @@ def start_server(write_on_file=False):
logging.getLogger('spyne.protocol.xml').setLevel(logging.DEBUG) logging.getLogger('spyne.protocol.xml').setLevel(logging.DEBUG)
logging.info("listening to http://127.0.0.1:8000/xmla") logging.info("listening to http://127.0.0.1:8000/xmla")
logging.info("wsdl is at: http://localhost:8000/xmla?wsdl") logging.info("wsdl is at: http://localhost:8000/xmla?wsdl")
server = make_server('127.0.0.1', 8000, wsgi_application) server = make_server('0.0.0.0', 8000, wsgi_application)
# server = make_server('192.168.101.139', 8000, wsgi_application)
server.serve_forever() server.serve_forever()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment