Hi All,
I have a network appliance I am developing which has CLI written in python (cmd).
I want to add a web interface.
I plan to use ajax only, which means that the browser will get static pages and use ajax (via RESTful web service over SSL) to retrieve data to populate the pages.
But not only users will use the web service, I expect any other application to use it to retrieve data using RESTful web services over SSL.
Here is my question:
Since _very_ few users will be using the web UI, I don't expect much load. Do I need to bother to use a real web server or can I just use the built in web server which is used for development?
Thanks, Dan