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

jsloubet

Members
  • Posts

    13
  • 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 jsloubet

  1. Hi, My "ireport report" got an image. The image path is given by parameter to the report. This report was launch by a java prog which sent parameters. The parameter for the image was a string and was declared as a string in iReport. Now I want use this report with jasperServer. The image path could change, so I need to conserve it as a parameter. I can't let the parameter as a string because it seems impossible to define default values to the parameters declared with jasperserver (I don't want my users have to enter a path for the image, I should be transparent for them). So I tried to define my image as a ressource and use it as a parameter of my report. But I don't know how to make iReport (I modify the report with iReport) recognise it. I'm not sure I'm clear, let me know if so. Thanks, Julien
  2. Hi, Thanks for your response. Is it not possible to linked the image to the report if this image is defined as a jasperserver ressource ? If not, indeed, I will indeed edit the jrxml to put the image path, hard coded. Julien
  3. Hi, I'm trying to create a jasperserver report in uploading a jrxml generated by iReport. I have to add input control to my report but I don't find the way for defining a default value. I need it because my ireport report has an image whose path is given by a parameter. Is it possible ? (i'm using the 3.5 pro version) Thank you in advance, Julien
  4. Thanks you Angus, I'm talking about labels for rows and columns, in the ad-hoc designer of jasperserver. What do you mean by the dimension member name ? Please let me know if I'm not clear enough. Bests regards, Julien
  5. Hi, Is it possible with JasperServer pro 3.5 to name crosstab column's of an ad-hoc report. ? Thanks in advance, Julien
  6. Thanks, it works !! Then, according to my jasperserver-servlet-pro.xml, for a user belongs to the ROLE_USER, it lands to the listReportsFlow page. But my "jscro" user belonging to my role "ROLE_REPORTS_VIEWER" has a denied access message when he logs in. I modify applicationContext-security.xml to give him permissions. Is there other file to modify ? Julien
  7. When users click the Home menu item or when they log in, they land here : http://localhost:8091/jasperserver-pro/flow.html?_flowId=homeFlow I guess this page differs by user according to the files located here (homeForXXX.jsp) : C:\Program Files\jasperserver-pro-3.5\apache-tomcat\webapps\jasperserver-pro\WEB-INF\jsp\home Julien
  8. Hi, I already tried this and it didn't work for me. It's seems my modifications in the jasperserver-servlet.xml has no effect. See below my modifications. As a test, I wanted that all my users land on the same home page : listReportsFlow But no result, each user conserve his own home page ... Could please someone explain to me the hidden process of login ? What are the involved files names and in which order ? Thank you in advance, Regards, Julien Code: <property name="homePageByRole"> <list> <!-- <value>ROLE_ADMINISTRATOR|redirect:/flow.html?_flowId=repositoryExplorerFlow</value> --> <!-- <value>ROLE_USER|redirect:/flow.html?_flowId=repositoryExplorerFlow</value> --> <value>ROLE_ADMINISTRATOR|redirect:/flow.html?_flowId=listReportsFlow</value> <value>ROLE_USER|redirect:/flow.html?_flowId=listReportsFlow</value> <value>RAPPORTS_VIEWER|redirect:/flow.html?_flowId=listReportsFlow</value> </list> </property> <property name="defaultHomePage"> <value>redirect:/home.html</value> </property>
  9. Thank you for your response. What do you mean by "making frame of reports" ? At this time when my user "jscro", with ROLE_USER as role, logs in, he lands here : http://localhost:8091/jasperserver-pro/flow.html?_flowId=homeFlow I would like he lands here : http://localhost:8091/jasperserver-pro/flow.html?_flowId=listReportsFlow So I modified jasperservlet-servlet.xml as below. Do you see the problem ? Thank you in advance, Julien Code: <property name="homePageByRole"> <list> <!-- <value>ROLE_ADMINISTRATOR|redirect:/flow.html?_flowId=repositoryExplorerFlow</value> --> <!-- <value>ROLE_USER|redirect:/flow.html?_flowId=repositoryExplorerFlow</value> --> <value>ROLE_ADMINISTRATOR|redirect:/flow.html?_flowId=listReportsFlow</value> <value>ROLE_USER|redirect:/flow.html?_flowId=listReportsFlow</value> <value>RAPPORTS_VIEWER|redirect:/flow.html?_flowId=listReportsFlow</value> </list> </property>
  10. I tried the solution given here : http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=15545 but it doesn't work. Does someone meet the same problem ? Thanks, Julien
  11. Hi, I would like a given user to be directed on the rapports list page when he logs in. I created a homeForMyRole.jsp file as below but I don't have the wanted behaviour. If I suppress the "viewAsDashboardFrame=true" part, I have the menu bar and logo twice and If i let it, it is worse. What do I do wrong ? How to display a page, that one normally goes to through the menu, when one logs in ? Thank you very much ! Julien Code:<% request.setAttribute("homePage","true"); %> <%request.setAttribute("homePage","true"); %><table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td valign="top"> <table valign="top" align="center" cellpadding="0" cellspacing="0" border="0" width="920" height="450"> <tr> <td valign="top" align="center" width="100%"><%@ page import="com.jaspersoft.ji.license.LicenseManager" %> <iframe id="outerFrame" name="Dashboard" allowtransparency="true" align="center" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" height="100%" width="100%" scrolling="no" src="${pageContext.request.contextPath}/flow.html?_flowId=listReportsFlow&curlnk=2&viewAsDashboardFrame=true"> </iframe> </td> </tr> </table> </td> </tr></table>
×
×
  • Create New...