There are several issues with EmbeddedTomcatService at this time: 1. The JNDI integration does not work (this may only mess you up if you use JSPs and have to include your classes in your war). 2. The JDK12 interceptor does not work for me, but I believe it works for Sebastian. We both use JDK 1.3. I've never needed the 12 interceptor, and don't know what behavior it provides. I just know that things work better for me if it's not there. 3. The security stuff does work to some extent, but, as is said below, you have to do the work in the EmbeddedTomcatService class (the server.xml is not read). For #3, you can just extend that class and change the behavior (what interceptors are loaded). I use it with form-based authentication, and it works for me. Basically, you just need to use the JbossRealm after your preferred security realm (JDBCRealm, SimpleRealm, etc). I've become very busy this last week, and have not had time to try to fix the current integration issues. It may be a little while before I am able to pick it up again. The problem has to do with class loaders, servlet loaders, and other fun stuff. I think the fix will be fairly involved. Hope this helps. > -----Original Message----- > From: marc fleury [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 13, 2000 11:26 AM > To: jBoss > Subject: RE: [jBoss-User] Web-Authentication in embedded Tomcat > doesn'twork ? > > > Hello, > > Kevin lewis is doing this and afaik there is still a bug in the 12 > interceptor and he is aware of it and working on it > > marc > > > |-----Original Message----- > |From: [EMAIL PROTECTED] > |[mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] > |Sent: Monday, November 13, 2000 7:35 AM > |To: jBoss > |Subject: [jBoss-User] Web-Authentication in embedded Tomcat > doesn't work > |? > | > | > |Hello ! > | > |We have a problem here, that seems a bit strange to us: > | > |We are using jboss-Beta-PROD 4 and tomcat-3.2-b7. > |Our Web-Application uses BASIC-Authentication with > |tomcat (according to servlet-2.2 spec). It works > |fine when Tomcat runs standalone and with > |the "org.jboss.tomcat.TomcatService". > |When using "org.jboss.tomcat.EmbeddedTomcatService" > |there is no authentication anymore, i mean > |Tomcat doesn't ask for authentication anymore, > |it offers the protected area for free. > | > |Are we missing a configuration detail in jBoss > |(maybe in auth.conf or something like that ?) > |Is this a bug or a feature ? > | > |-- > |greetings > |markus blaurock > | > | > | > | > |-- > |-------------------------------------------------------------- > |To subscribe: [EMAIL PROTECTED] > |To unsubscribe: [EMAIL PROTECTED] > |Problems?: [EMAIL PROTECTED] > | > | > > > > -- > -------------------------------------------------------------- > To subscribe: [EMAIL PROTECTED] > To unsubscribe: [EMAIL PROTECTED] > Problems?: [EMAIL PROTECTED] > > -- -------------------------------------------------------------- To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Problems?: [EMAIL PROTECTED]
