Nipun try your sso.cfg.xml to be look something like this from provisioning tag perspective:
| <?xml version='1.0' encoding='ISO-8859-1'?> | | <jboss-sso> | <!-- | identity management related configuration, this is the LDAP based module | Technically, this can be a provider that can integrate with thirdparty identity systems like SiteMinder etc | --> | <identity-management> | <login> | <provider id="si:jboss-sso:ldap:login" class="org.jboss.security.idm.ldap.LDAPIdentityProvider"> | <property name="connectionURL"> | jdbc:ldap://localhost:389/dc=jboss,dc=com?SEARCH_SCOPE:=subTreeScope&secure:=false&concat_atts:=true&size_limit:=10000000 | </property> | <property name="username">cn=Admin,dc=jboss,dc=com</property> | <property name="password">jbossrocks</property> | <property name="identityOu">jbosssso</property> | <property name="roleOu">role</property> | </provider> | </login> | <provisioning> | </provisioning> | </identity-management> | | | <!-- sso processor for SingleSignOn, the default JBossSingleSignOn processor uses OpenSAML-1.0, | the next version of this processor will use the latest SAML specification | --> | <sso-processor> | <processor class="org.jboss.security.saml.JBossSingleSignOn"> | <property name="trustServer">http://node1.jboss.com:8080/federate/trust</property> | </processor> | </sso-processor> | </jboss-sso> | Thanks Sohil View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982495#3982495 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982495 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
