Python Forum

Full Version: Access Flask Web App from External Browser - IIS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI,

I have moved over to Python Web Development from aspx and VB. I have create a simple flask web app using vs2019 that runs perfectly in LocalHost on IIS. I have previously been able to create a simple vb webapp and access it after I have updated the bindings for a web application in IIS.

I have tried to do the same with the Python web app. Although when I access the IP address of the server, I get a blank page (with no error)... Can anyone help or offer any advice on access the web app from an external browser please?

Many thanks,

FioranoSnake
What is the status code of the response? Is the server actually receiving the request and processing it?
Hi, I get a blank screen.. How can I check if the server is receiving the request?
I know you get a blank screen. Check the status code of the request in the browser, or use a tool like curl to make the request on the command line. Remember that it's returned in the request headers, not the body.

As for checking that the server is receiving the request, are you logging anything when you process the request? If not, do so.