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

akshathajcta

Members
  • Posts

    4
  • Joined

  • Last visited

akshathajcta's Achievements

  1. Hi, I've drill down report which shows bar graph of orders soled in last 4 years. when clicked on any bar, it will redirect to monthly orders of particular year. I'm scheduling job for that drill down report with Output Format as html. After report got generated, graph will have hyperlink as 'http://localhost:8080/jasperserver/... " instead of "http://mywebsite.com:8080/myPortal/.." When i executed seperately it works fine, but when i scheduled it, its not working. Please help Thanks in Advance, Akshatha
  2. I found answer. Created my own password validation function,placed it inside WEB-INF/lib/customized.jar file, and called that function from applicationContext-externalAuth-db.xml as below. <bean id="passwordValidator" class="org.springframework.security.providers.encoding.CustomizedMd5PasswordEncoder"> <property name="encodeHashAsBase64"><value>false</value></property> </bean> Pasting my customized java function, package org.springframework.security.providers.encoding; import org.springframework.security.providers.encoding.Md5PasswordEncoder; public class CustomizedMd5PasswordEncoder extends Md5PasswordEncoder { public boolean isPasswordValid(String encPass, String rawPass, Object salt) { String[] pass1 = encPass.split(":"); if(pass1.length != 2) return false; String encResult= encodePassword(pass1[1]+rawPass, salt); if(encResult.equals(pass1[0])) return true; else return false; /* Above function is for my requirement, please make appropriate changes as you need*/ } } Refer below url for detail steps, http://community.jaspersoft.com/questions/817932/passwordvalidator-smd5 Thanks
  3. HI, M performing external login authentication for my requirement. It works fine with MD5/SHA encryption. My external database encrypts and stores password as below, md5(password + key):key where key-> randomly generated during pwd encryption. How i can validate encrypted password as above with jasperserver ? Please help. Thanks, Akshatha
  4. BUILD FAILED C:Jaspersoftjasperreports-server-cp-5.2.0-binbuildomaticbinapp-server.xml:1337: Failed to copy C:Jaspersoftjasperreports-server-cp-5.2.0-binbuildomaticconf_sourcedbapp-srv-jdbc-driversdb2jcc-9.7.jar to C:Program FilesApache Software FoundationTomcat 7.0libdb2jcc-9.7.jar due to java.io.FileNotFoundException C:Program FilesApache Software FoundationTomcat 7.0libdb2jcc-9.7.jar (Access is denied) Above is the error I'm getting while installing jasperserver in windows machine. Build is Successfull when i run test command as below, ' js-install-ce.ba test' Please find attached log file for more info. It would ve helpful if u help me ASAP. Thanks
×
×
  • Create New...