How is it that when a web app is run in debug the /Special/ is not recognized ?
http://127.0.0.1:8080/special
generates a 404 error.
and a query string like http://127.0.0.1:8080/?toto=tata
shuts down the app
Is there no way to test either special or query string or both in debug ?
Special requires more URL. Try
http://127.0.0.1:8080/special/test
To test these, open a second browser to keep the app running.
[quote=110152:@Greg O’Lone]Special requires more URL. Try
http://127.0.0.1:8080/special/test
To test these, open a second browser to keep the app running.[/quote]
Just tried exactly what you said :
404: File Not Found
The requested URL "/special/test" could not be found. Please check your request and try again.
Remote Address: 127.0.0.1

Do you have anything in the App.HandleSpecialURL event handler?
You need to at least return True.