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

swood

Members
  • Posts

    2,039
  • 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 swood

  1. How does the hyperlink look? Does the report only work with parameters? ie. if no parameters are entered, do it produce an empty report? Have you set up input controls for the report? Sherman Jaspersoft
  2. Folks have this working: see this thread http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=17149 Sherman Jaspersoft
  3. There are large objects held in the user sessions. If you are clustering user sessions across the servers, you are going to have ppoor performance. Can you use pinned sessions on the load balancer? This is not a HA approach, but it does perform. Sherman Jaspersoft
  4. Well, the RC is out there at the sourceforge link I sent - under the "JasperServer 3.7.0 RC" folder. What is not working with your CAS integration against the 3.7.0 release? Compilation, something else? Sherman Jaspersoft
  5. What you are doing should work :-( Do you have other Single Select lists that work showing multiple options in the browser? If you look at the source of the parameter page, can you see the missing options? If you can't, that looks like a server side bug. This should not be an issue, but what browser are you running? Firefox, IE? Sherman Jaspersoft
  6. I don't understand what you are trying to do. As Bob said, you need to have a custom data source defined in the server (code, configuration) that gives the data to the report. If you have data references in the URL, your custom data source would need to interpret the parameters in your custom data source to give the data to the report. Sherman Jaspersoft
  7. This is a bug we need to fix. The anonymoususer is a system level object. We had not tested trying to set permissions for it. The code in the accessContext bean was set up to manage it, but the config of the bean needed the userAuthorityService there in order to work. Sherman Jaspersoft
  8. The change that was introduced into JR JS 3.7.0 broke the Member option outlined in the Ultimate Guide. We need to fix this in JR :-( Sherman Jaspersoft
  9. The Spring version in JS 3.7.0 is only an incremental version past the one you used with 3.7 RC. Why can't you use JS 3.7.0? We are going to release an updated Authentication Cookbook which details CAS configuration for JS 3.7.0 in March. The release candidate is still out on SourceForge at http://sourceforge.net/projects/jasperserver/files/ Sherman Jaspersoft
  10. Sure. You can change the default one: WEB-INF/jsp/DefaultParametersForm.jsp to get the change everywhere. Or your can create a custom JSP and set the parameter form on individual report units. Do you know you can get the parameters displaying horizontally above a report by setting the "Controls Layout" on a report unit? Sherman Jaspersoft
  11. My apologies: that was the wrong bean to update. Try the one below. Sherman Jaspersoft Code: <bean id="accessContext" class="com.jaspersoft.jasperserver.api.logging.access.context.impl.AccessContextImpl"> <property name="clientClassFactory" ref="mappingResourceFactory"/> <property name="loggingContextProvider" ref="${bean.loggingContextProvider}"/> <property name="userAuthorityService" ref="${bean.userAuthorityService}"/> </bean>
  12. We haven't tested the repository against MySQL 5.5. Try putting the column name in quotes, like `maxValue`. Sherman Jaspersoft
  13. I am not a deep crosstab person :)), but... Does the query return the values in the correct order? The crosstab data set has the "Data is pre-sorted" = true Sherman Jaspersoft
  14. This is related to purely iReport, right? Not JasperServer? I think it is pretty clear. The bean you want to expose in iReport has to be a org.hibernate.SessionFactory, not a org.springframework.orm.hibernate3.LocaleSessionFactoryBean.You need to revise your Spring configuration. Here is a thread on a Spring loaded Hibernate connection in JasperServer: Sherman Jaspersoft
  15. The reason for showing the + is UI efficiency. You would have to look 2 levels down to see whether to display the +, and that would slow the screen a lot. You will have to change the server side code to do this level of search, and remove empty folders. I have no idea why you get "continous loading". That indicates a Javascript or Ajax problem. Have you been changing the code or configuration? Is there a Javascript error? Sherman Jaspersoft
  16. In JasperServer 3.7 Community Edition, there is a limited set of this type of logging done to support the new search function (last accessed etc). To change this, you would need to extend this code to capture more information. In JasperServer Enterprise Edition, there is full logging and reporting of this information. Sherman Jaspersoft
  17. What you need to do is called single sign on. Have a look at the wiki for an old outline of the process. You will need to configure for your environment. There is also the Authentication Cookbook jaspersoft.com/jaspersoft-authentication-cookbook-jasperserver Sherman Jaspersoft
  18. The full configuration for MS SQL Server is provided with JasperServer Professional. For the Community Edition, you can generate the schema from the source. Also, you could ask folks on the forum who have done this. I'd love it if someone put a patch for this on the tracker on on the wiki. Sherman Jaspersoft
  19. When you say: "when i run the report in ireports i can see all the values in the drop down list", do you mean that you have deployed the report onto the server and are running the report from the server in iReport via the JasperServer plugin? Can you show us what the input control definition is? Screenshots are fine. Sherman Jaspersoft
  20. I don't know why that user is not enabled. Did the password fail at some point? Can you enable them through the UI? I can't remember whether you can for external users. If not, the hack would be to update the jiuser table to enable them. Sherman Jaspersoft
  21. That is not part of the server today. Have a look at the options I outline here http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=71156 Sherman Jaspersoft
  22. There is a Web Services document that comes with the JasperServer installation that outlines what you need to do, and example JSP and PHP applications that show you how to connect. There is also this Talend connector that you can use to create a job that drives parameters into the runReport web service and allows you to deal with the output in whatever way you want. http://jasperforge.org/projects/tjasperserverexec Sherman Jaspersoft
  23. I think we missed the case where anonymoususer is accessing the repository. Try adding the line initializing the userAuthorityService into WEB-INF/applicationContext-evetns-lgging.xml: see below Sherman Jaspersoft Code: <bean id="accessServiceTarget" class="com.jaspersoft.jasperserver.api.logging.access.service.impl.AccessServiceImpl"> <property name="sessionFactory" ref="sessionFactory"/> <property name="hibernateRepositoryService" ref="repositoryService"/> <property name="userAuthorityService" ref="${bean.userAuthorityService}"/> <property name="persistentUserResolver" ref="${bean.userAuthorityService}"/> <property name="persistentClassFactory" ref="persistentMappings"/> <property name="clientClassFactory" ref="mappingResourceFactory"/> <property name="maxAccessEventAge" value="60"/> </bean>
  24. You could create a Query object in the repository, and have multiple reports refer to that query. Then when the query is changed, all reports access that Query will pick up the change. Sherman Jaspersoft
  25. How were the users created in the repository? Have you tried logging in as the superuser? Sherman Jaspersoft
×
×
  • Create New...