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

hallodrischulze

Members
  • Posts

    4
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by hallodrischulze

  1. Hello Forum, i need to design a report in a single page with multiple column and also each column containing varying number of records. What is the best way to do that with ireport or jasperreports generally? The report has a certain amount of fields. If one field is blank, it should be removed in the column and the empty space should be removed (as in Column 2 and Column 4). Thank You. It should look something like this: Column 1 Column 2 label: Textfield label: Textfield label: Textfield label: Textfield label: Textfield label: Textfield --------------------------------------------------------- Column 3 Column 4 label: Textfield label: Textfield label: Textfield label: Textfield
  2. Hello Forum, I'm writing on my master thesis on JasperReports and I have a small question: If I use static text in my report and outsource this to language files. In which phase of the report generation are they generated into the report? Is the JRCompiler of the JasperFillManager responsible for that? As i know, parameters are passed to the JasperFillManager during the filling process. Is it the same with $R {text} , $V{variables} and $F{fields}? Thank You Post Edited by hallodrischulze at 08/26/2010 09:38
  3. hi everybody, i have implemented a single sing on solution for the jasperserver. I just want to use spring-security for authorization purpose only not for authentication and it works well, but i don't understand why. I wrote a custom UserDetailsService which just returns an User Object. Heres my code: public class UserRepository implements UserDetailsService { public User loadUserByUsername(String userName) throws UsernameNotFoundException, DataAccessException { User user = new User(userName, "noPass", true, true, true, true, new GrantedAuthority[]{new GrantedAuthorityImpl("ROLE_USER")}); return user; } } When a user is logged in for the first time, he is automatically created in the database and can be managed by the administrator. Can someone tell me wehre this exactly happens? Which class creates a new user in the database and where the authorization happens? So the role that i assign to the user in the UserDetailsService cannot be changed anymore, is that right? Thank You
  4. Hi Everybody, i would like to implement a SSO solution for my Jasperserver Professional and it should work something like this: The user logs into a Web Portal using a Web Access Management - Service. When the user is logged in successfully, the Service stores the user authentication information in the "iv_user" variable in the HTTP-Header. Now when the request reaches the Jasperserver, the Spring Security should get the login information out of the "iv_user" variable in the HTTP header. If the username is valid, the system should skip the Jasperserver login. I'm completely new to Jasperserver and to Spring Security. How could i get this done? I have read the External Authentication Cookbook and searched the internet for information but found nothing about retrieving authentication information out of the HTTP- Header using Spring Security. Thank You
×
×
  • Create New...