Jump to content
We've recently updated our Privacy Statement, available here ×

seke

Members
  • Posts

    10
  • Joined

  • Last visited

seke's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Hello, now it works. I have modified the applicationContext-security.xml as you wrote it. The second thing i had forgotten was to copy the spring-ldap-1.3.0.RELEASE-all.jar into the 'lib' folder. Thank you for your help. Post Edited by seke at 04/15/2010 12:57
  2. Hi, thank you. I will try it tomorrow and give a feedback.
  3. Hello, i did not resolve the problem. I had only removed the comments from the original "applicationContent-security.xml" and changed the LDAP Server, user and password.
  4. Hello all, i try to activate the LDAP Auth in Jasperserver 3.7.0 CE. When i uncomment to following lines in the applicationContent-security.xml the Jasperserver will not start. <bean id="authenticationManager" class="org.springframework.security.providers.ProviderManager"> <property name="providers"> <list> <ref local="ldapAuthenticationProvider"/> <ref bean="${bean.daoAuthenticationProvider}"/> <ref local="anonymousAuthenticationProvider"/> <!--ref local="jaasAuthenticationProvider"/--> </list> </property> </bean> <bean id="initialDirContextFactory" class="org.springframework.security.ldap.DefaultInitialDirContextFactory"> <constructor-arg value="ldap://mydomaincontroller/dc=mydomain,dc=net"/> <property name="managerDn"><value>myuser@domainnet</value></property> <property name="managerPassword"><value>mypassword</value></property> </bean> <bean id="userSearch" class="org.springframework.security.ldap.search.FilterBasedLdapUserSearch"> <constructor-arg index="0"> <value></value> </constructor-arg> <constructor-arg index="1"> <value>(uid={0})</value> </constructor-arg> <constructor-arg index="2"> <ref local="initialDirContextFactory" /> </constructor-arg> <property name="searchSubtree"> <value>true</value> </property> </bean> <bean id="ldapAuthenticationProvider" class="org.springframework.security.providers.ldap.LdapAuthenticationProvider"> <constructor-arg> <bean class="org.springframework.security.providers.ldap.authenticator.BindAuthenticator"> <constructor-arg><ref local="initialDirContextFactory"/></constructor-arg> <property name="userDnPatterns"><list><value>uid={0}</value></list></property> <property name="userSearch" ref="userSearch"/> </bean> </constructor-arg> <constructor-arg> <bean class="org.springframework.security.providers.ldap.populator.DefaultLdapAuthoritiesPopulator"> <constructor-arg index="0"><ref local="initialDirContextFactory"/></constructor-arg> <constructor-arg index="1"><value></value></constructor-arg> <property name="groupRoleAttribute"><value>cn</value></property> <property name="groupSearchFilter"><value>(&(uniqueMember={0})(objectclass=groupofuniquenames))</value></property> <property name="searchSubtree"><value>true</value></property> </bean> </constructor-arg> </bean> The XML has been checked and is valid. catalina.log says: SEVERE: Context [/jasperserver] startup failed due to previous errors does someone have an idea? Best Regards Sebastian Post Edited by seke at 02/08/2010 15:02
  5. Hello, i find out that the users are automatically added after the first login.
  6. Hello, i try to implementate authenticating using LDAP. Can anybody tell me how to add an external user? When i add a new user i can not define that the user is external. Did i forget to edit a config file? Thank You
  7. Hello, i want to print the Report Unit Name (Collumn "Display Name") on the Report header. best regards Sebastian
  8. Is there no specialist who can tell me how it works? best regards Sebastian
  9. Hello, can anybody tell me how to print the report unit name on my report? Is there a standard parameter which contains the actually report unit name? best regards Sebastian
×
×
  • Create New...