Le mardi 27 mars 2007 à 11:25 +0200, Frédéric Thise a écrit : > 192.168.3.34 is my local machine which is running both my test JBoss server > and my browser. > > i tried to patch the web.xml template file to put the marker FILTER-MAPPING > on top of the filter-mappings "hardcoded" in the file but nothing changed. You can easily check that by looking at the deployed web.xml, it will show you what filters are declared before yours.
> Before the NTMLHttpFilter gets the chance to do the work, Nuxeo performs > some work... Is it possible that this work is initiated by a listener or > something that takes precedence to > the filters? It depends on the filters that are before yours. Nuxeo webapp itself has no filter that access ejb. If you want, you can safely remove FancyURLFilter by editing org.nuxeo.ecm.platform.ui.web/src/org/nuxeo/ecm/platform/ui/web/rest/FancyURLConfig.java and setting all boolean values to false (there will be an EP very soon for that). But during session startup, there may be seam componnents that are automatically started. If you breakpoint inside your filter, you should be able to see : - if there is already an error when the filter is called - what code generated the error Tiry > > > > "Tiry" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > Le mardi 27 mars 2007 10:34 +0200, Frdric Thise a crit : > > Did anyone manage to integrate Nuxeo with NTLM ? > I guess that nobody tried before you. > > > 192.168.3.34 > What is 192.168.3.34, your local JBoss server ? > > Are you sure your filter is on top of the filter stack ? Otherwise, you > will have ejb (then JNDI) calls before beeing authenticated. > > > i have also tried the BASIC authentication method in web.xml but in > this case i always have the login dialog popping in my browser... Even > if i use IE on local intranet... > > Sounds perfectly normal to me, this is the standard Tomcat behavior. > > > > _______________________________________________ > ECM mailing list > [email protected] > http://lists.nuxeo.com/mailman/listinfo/ecm > _______________________________________________ ECM mailing list [email protected] http://lists.nuxeo.com/mailman/listinfo/ecm
