Dynamically add/remove servlet filters at session start -


my jsf application uses active directory authentication module jcifs. jcifs filter prevents icepush related things ie8. thought remove jcifs filter (if possible) after authentication. it's session based. can apply filter when session stats , after authentication finished can remove current session ? won't filter request after current session.

thanks.

you cannot add or remove filters dynamically, write new filter extends jcifs 1 and, if session authenticated, skips special processing (i.e. calls chain.dofilter immediately).


Comments