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

yassinswag50

Members
  • Posts

    23
  • Joined

  • Last visited

yassinswag50's Achievements

Explorer

Explorer (4/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. look for these files .jrsks and .jrsksp.if you are using windows check the properties of these files and verify if the service local exists.if not you should add it and give read and write access. you should do this for both files and after that all left is to restart the server.
  2. Hi, i can't seem to see the paramaeter in your sql query ? you should add it in order to be able to filter the data
  3. Hello everyone, this is my cors configuration i added to web.xml file: <filter> <filter-name>CorsFilter</filter-name> <filter-class>com.jaspersoft.jasperserver.api.security.csrf.CorsFilter</filter-class> <init-param> <param-name>cors.allowed.origins</param-name> <param-value>http://localhost:port</param-value> </init-param> <init-param> <param-name>cors.allowed.methods</param-name> <param-value>GET,POST</param-value> </init-param> <init-param> <param-name>cors.exposed.headers</param-name> <param-value> Access-Control-Allow-Origin,Access-Control-Allow-Credentials </param-value> </init-param> <init-param> <param-name>cors.support.credentials</param-name> <param-value>true</param-value> </init-param> <init-param> <param-name>cors.preflight.maxage</param-name> <param-value>1800</param-value> </init-param></filter><filter-mapping> <filter-name>CorsFilter</filter-name> <url-pattern>/*</url-pattern></filter-mapping>[/code]i resolved the cors issue but now i'm getting 403 error whe i try to navigate in jasperserver: can anyone help me with this thank you
  4. Hello everyone, i have configured cors filter in the web.xml file . the probleme is i'm getting the error : failed to retrieve csrf token. i'm suspecting that the cors is the reason so i commeneted the configuration and the error disappeared. i want to what are that the cors is blocking and what is causing the error can anyone please help me with this thank you
  5. you downloaded the community version of jasperReport server. you can't create a report directly on the server but you can use either jaspersoft studio or ireport designer to create the report and then upload it to the server
  6. what the relation between main dataset varuables and subdataset variables ? the last row of data that you got belongs to which dataset ? can you share a capture of the result that you got
  7. it is possible, try using $V{REPORT_COUNT} and a condition to print when $V{REPORT_COUNT} <= 12.you don't need to use a table or a list just text_field
  8. does the report works correctly on jaspersoft studio ?
  9. Hello everyone, i configured token based authentication on jasperReports server and it's working fine.what i want to do is to set a password for the user i created because when i list the users in my server i can view the ones i creates through encrypted token authentication but there isn't a way to set a password. is it possible to set the password while i create the token and how can i do that ? thank you
  10. hello everyone, i have configured and tested the ecryption mechanisme through the url : http://[jasperserver-url]/encrypt.html and everything is working fine. i want to reproduce the encryption myself without always going to the url above. does anyone know the necessary files and how to implement the encryption thank you
  11. i want to reproduce the encryption mechanisme , where can i find the files needed to do that ?
×
×
  • Create New...