3 Replies Latest reply on Oct 9, 2011 1:24 AM by lightguard

    Security: Cannot resolve member in node security:authenticatorClass

    kwutzke

      Hello,


      I'm just starting out with Seam 3 Security. I have the following beans.xml:


      <?xml version="1.0"?>
      <beans xmlns="http://java.sun.com/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xmlns:s="urn:java:ee"
             xmlns:security="urn:java:org.jboss.seam.security"
             xmlns:plidm="urn:java:org.jboss.seam.security.management.picketlink"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://jboss.org/schema/cdi/beans_1_0.xsd">
        
        <security:Identity>
          <s:modifies />
          <security:authenticatorClass>org.jboss.seam.security.management.IdmAuthenticator</security:authenticatorClass>
        </security:Identity>
        
        <plidm:JpaIdentityStoreConfiguration>
          ...
        </plidm:JpaIdentityStoreConfiguration>
      
      </beans>



      In line


          <security:authenticatorClass>org.jboss.seam.security.management.IdmAuthenticator</security:authenticatorClass>



      Eclipse / JBoss Tools is showing me an error saying Cannot resolve member in node security:authenticatorClass. ... does anyone have an idea what this means? I setup Maven and dependencies correctly, I presume, but I have no idea what the error means as I just copied the respective code snippet from the Seam Security reference manual.


      Any help welcome.


      Karsten