I have made a lot of progress with development of FTN95 / classicASP web applications. These require all I/O to be done via files, and I have set the standard input and output streams to read from and write to files. However, still a problem with run-time error messages which still expect to open a window and await user response via mouse/keyboard. These are clearly unavailable on a web server, and the program just hangs, requiring a server restart.
I can get around this by using the TRAP_EXCEPTION@ method, but am not confident that I am trapping all errors - and it's very fiddly to program it to give me even an approximate error location. The traceback that is given in the normal runtime error window would be very useful.
It would be helpful if there were some better way of handling this without having to use TRAP_EXCEPTION@ - like redirecting the normal fatal error message to the standard output stream, and then simply terminating the program without waiting for a response. Couldn't find anything in the manuals, but is there perhaps something undocumented (or documented but I just haven't found yet!) to do this ?