Jump to content
Changes to the Jaspersoft community edition download ×

rmeadows

Members
  • Posts

    46
  • Joined

  • Last visited

rmeadows's Achievements

  1. It would be better and more secure to configure the preauth sso for the product and use an encryption cipher class for it to accept encrypted tokens. You would then need to pass and encrypted token on the url in your scriptlet rather than the username and password in plain text. Thanks.
  2. rest is tied to a jsessionid or session id from the application server. So there is something like a. session...but probably not a persistent open connection to the services.
  3. You are hitting sql validation in the product. You have to either turn it off..or turn on and relax the regex for it. /WEB-INF/classes/esapi Thanks.
  4. This stack shows a report running on the scheduler and the error coming from a query in an input control. You need to have them investigate and find this query in the report. Error executing SQL statement for: db_name_query. as it is having a problem running for some reason against the db by the jdbc driver. From the stack it looks like it may be in an input control. Thanks.
  5. that is the wrong syntax for the parameter name. and type Please look chapter 5.5.2 Built-in Parameters for Query-based Input Controls here in the documentation for correct syntax and types on these parameter names. https://docs.tibco.com/pub/js-jrs/7.9.0/doc/pdf/TIB_js-jrs_7.9_Admin-Gui... The one your are specifying is a collection and meant for use with the $X syntax You want LoggedInUserAttribute_::atribute_name:: syntax and a string value if you want to use $P. Otherwise the string value of a collection may be injected with the [] on it for the collection type. Also make sure you are defining a parameter with these names in the report with the correct. matching type. (Collection, String, etc)
  6. you are probably using a key/cert for filezilla to do the https (or ssl portion). For jasper you will need to import those items into the java cacerts keystore so that you can successfully complete the ssl handshake required when you configure for ftps and the ftps port. Thanks.
  7. that is the wrong syntax for the parameter name. and type Please look chapter 5.5.2 Built-in Parameters for Query-based Input Controls here in the documentation for correct syntax and types on these parameter names. https://docs.tibco.com/pub/js-jrs/7.9.0/doc/pdf/TIB_js-jrs_7.9_Admin-Guide.pdf The one your are specifying is a collection and meant for use with the $X syntax You want LoggedInUserAttribute_::atribute_name:: syntax and a string value if you want to use $P. Otherwise the string value of a collection may be injected with the [] on it for the collection type. Also make sure you are defining a parameter with these names in the report with the correct. matching type. (Collection, String, etc)
  8. add a where statement to your query on the jiuser tables user name field. Where are you running this query and for what purpose (since you will need the current username to inject into the query.
  9. try turning off sql validation in /WEB-INF/esapi/secuirty-config.properties or log the EngineServiceImpl class to see if that is what is cuasing your issue. Thanks.
  10. studio repository explorer is using rest web services on the server. Thanks.
  11. You are running on way too little memory for JRS. For 7.2 from the supported platforms guide these are the requirements for JRS: Minimum system requirements: 2 Core processor, 8 GB RAM, 10GB free disk space Recommended system requirements: 2.5 Ghz multi Core processor, 12GB RAM, 40GB free disk space Please bump your memory to minimum or above. Thanks.
  12. your base context (/jasperserver-pro ..or for you / since it is at root) will redirect to the login page internally. Here is a standard nginx proxy config for jasper at the out of box context and path. Feel free to adjust accordingly. https://community.jaspersoft.com/wiki/nginx-proxy-tibco-jasperreports-server Thanks.
  13. No..you can compile the source and build the webapplication and install the product using buildomatic (WAR file installer that you ar building from source) but the .run file is a linus installer applicaiton. It is not part of the source. Thanks.
  14. Mayber your are using an older applicationContext file? pull the new one from 7.8 unders the samples folder and merge your configuration into it. for this error the constructor arg syntax here is wrong: <constructor-arg index="0" ref="ldapAuthenticationManager"/> and it should be a property as shown below: <property name="authenticationManager"> <ref bean="ldapAuthenticationManager"/> There may be other changes so I would recommend comparing against the 7.8 version under the samples folder and merging in your needed configuration into the newer file. This is a best practice for each new release to which you want to upgrade. Thanks.
  15. you should be able to download a ce version...or the commercial version as a trial on edelivery.tibco.com Please request or speak with a sales associate for further assitance if needed. Thanks.
×
×
  • Create New...