Hello fellow programmers!
I managed to make spnego work correctly on unix with IBM JDK1.6 and Tomcat7. Everything went well until I have not tried to use it on different context path than root.
I have two context for two different environment on the same server machine, ker and jzb.
So hello_spnego works wonderfully if I test it on
http://sasdev:8080/hello_spnego.jsp
but fails if I try it on the two context I mentoned below.
http://sasdev:8080/ker/hello_spnego.jsp
I copied the root's web.xml's server filter settings to each context's web.xml but when I request them I got this message in catalina log.
Oct 5, 2016 2:12:57 PM net.sourceforge.spnego.SpnegoAuthenticator doSpnegoAuth
FINE: context not established

What did I miss? How should I make it work? Any advice appreciated.