Invalid content was found starting with element 'span'. No child element is expected at this point.

Hi all,

      I'm configuring jasper report server with exsisting active derectory ldap.When I'm running jasper server there is a error in log related to userSearch bean.

Error :cvc-complex-type.2.4.d: Invalid content was found starting with element 'span'. No child element is expected at this point.

Error is occured red hilighted two lines.

My configurations are here:

<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="ldapContextSource"/></constructor-arg>
      <property name="userDnPatterns">
        <list>
          <value>CN={0},OU=IT Service Accounts</value>
 <value>uid={0},OU=LOITS</value>
        </list>
      </property>
  <property name="userSearch" ref="userSearch"/>   
    </bean>
  </constructor-arg>
  
</bean>
<bean id="ldapContextSource"
    class="com.jaspersoft.jasperserver.api.security.externalAuth.ldap.JSLdapContextSource">
  <constructor-arg value="ldap://192.100.151.204:389/DC=LOLC,DC=com?sAMAccountName?sub?(objectClass=*)" />
  <property name="userDn"><value>CN=FusionUsr,DC=LOLC,DC=com</value></property>
  <property name="password"><value>Fu$@1234</value></property>
  </bean>
  
 <bean id="userSearch"
      class="org.springframework.security.ldap.search.FilterBasedLdapUserSearch">
  <constructor-arg index="0"><value><span class="Forceful">OU=LOITS</span></value></constructor-arg>
  <constructor-arg index="1"><value><span class="Forceful">(sAMAccountName={0})</span></value></constructor-arg>
  <constructor-arg index="2"><ref local="ldapContextSource"/></constructor-arg>
  <property name="searchSubtree"><value>true</value></property>
</bean> 
 

 

popkorn's picture
Joined: Nov 12 2014 - 8:37pm
Last seen: 3 years 5 months ago

0 Answers:

No answers yet
Feedback
randomness