1 Reply Latest reply on Jan 5, 2013 12:00 PM by yunshi

    AS7 web SingleSignOn

    ran_inc

      Hi all,

      I am moving from as4 to as7.1.1.final.

       

      I have two web applications that share the same security domain, although they use different authentication methods.

      I need that when a user logs into one web applications, and then moves the the other, the server will not promt an authentication agian - i.e it will share the authentication.

       

      In AS4 I added <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> in server.xml and it worked.

       

      I tried to add this to the jboss-web.xml:

      <jboss-web>

         <security-domain>TestManagement</security-domain> 

          <valve>

              <class-name>org.apache.catalina.authenticator.SingleSignOn</class-name>

          </valve>

      </jboss-web>

       

       

      this doesn't seem to work.

       

      can someone help?