Quote Originally Posted by Harm Wibier View Post
Don't use the OnLoad event, it is triggered when a user loads the webapp, not web the webapp process starts. You want to register all your paths when the webapp starts. You could just do this in the global execution flow or End_Construct_Object if you are doing it in a class.

Other than that your solution makes sense, bottom line is that all possible paths need to be registered for each webapp.exe process on startup..
Ok, Thanks Harm!
Moved it to the global execution flow.