*reposted from B4a (error)*
Hi.
I want all incoming requests to my server to pass through a verification filter *except* the "/login" path. So can I specify the order the handlers/filters are run in? So for example if I have this :
srvr.AddHandler("/login","LoginUser",False)
srvr.AddFilter("/*","VerifyUser",False)
srvr.AddHandler("/clients","Clients",False)
and set VerifyUser to return false, then call in with
http://blah.com/login, the VerifyUser always gets called first.
Is there a way to ensure the order that handlers/filters are called? Or am I approaching this wrong?