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

Justin_6

Members
  • Posts

    5
  • 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 Justin_6

  1. Since the Read Only access is given to Repository->Root, all sub-directories are given Read Only access as inherited permission. (It shows like 'Read Only*' in the dropdown.) I found another thread posted earlier, and looks like we can't remove ROLE_USER for any newly created user. It's a MUST HAVE role.
  2. JasperReport Server 5.5 Pro I created a new role and named it role_specific. Then I created a new user and assigned this role_specific to him. (By default, this user got ROLE_USER role as well.) At this point, this user can see and run a report stored in ROOT/reports/dev/ folder. Then I removed his ROLE_USER role. (only role_specific is left) I went to repository -> root and gave Read Only access to role_specific. Then I tried to run the report a.) switched my super user account to this user, I can see NOTHING. b.) tried to run the report from my php application (embedded in iframe), I got permission denied error. What else do I need to do to manage users with roles ? My report is created in this way: DataSource (mysql) -> Domain -> Ad Hoc View -> Report. Is there anything generated and stored outside of Repository->root ? Thanks
  3. I'm using JasperServer Pro on Amazon MarketPlace and have 2 chart reports designed with Jasper Studio (and published to server.). In my PHP application, I'm using REST API php wrapper to call RunReport. My code is something like: $data = $rs->runReport($sample_report, 'html', NULL, NULL, $controls); I got an image back in the $data whose path is something like: /jasperserver-pro/rest_v2/reportExecutions/72034391_1395407813827_65/exports/html/attachments/img_0_0_0. Even after I added the host name to this URL, there is no image at that path. My question is how can I find the proper path for the image that needs to be accessible in my PHP application. P.S. When I ran the report from Jasper Server, it ran properly and the path for the chart image is something like. '/jasperserver-pro/reportimage?jrprint=1665740205_1395408153483_15&image=img_0_0_0', can I use path like this to access the chart image? how can I get those numbers in the URI? Thanks,
  4. //Parameter1 is the Input Control ID (Singlue Value Item as Text) $controls = array( "Parameter1" => "Laravel" ); $data = $rs->runReport($sample_report, 'html', NULL, $controls); Or, $controls = array( "Parameter1" => array("Laravel") ); $data = $rs->runReport($sample_report, 'html', NULL, $controls); None of the above work.
  5. My JasperReport BI server was hosted on Amazon AWS. I successfully added a Neo4j data source with the Neo4j JDBC driver I downloaded from here: http://www.neo4j.org/develop/tools/jdbc Now I'm creating a domain with that neo4j data source. Can someone give some example with queries for Neo4j. (I attached some screenshots of method I tried.)
×
×
  • Create New...