-
Posts
48 -
Joined
-
Last visited
Swapnil Pawar's Achievements
-
Swapnil Pawar started following Download JasperReports 8.2.0 for windows
-
Hi, Jaspersoft is no longer providing the jasperserver community edition, if can move to enterprise edition. Please reach out to our sales team or if you need help to connect with the sales team. please do let us know about it. I hope this will help you, thanks!
-
Unable to login with the jasperadmin without adding the organization in the jasperserver login page.
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
Issue -Customer is not able to login with the jasperadmin without adding the organization in the jasperserver login page. Solution: 1. This issue is becasue of the jasperadmin user is not present in the root organization. 2.Go to manage -> Organizations then, click on the root organization, finally add the jasperadmin user in the root organization. 3. Now you can login with the jasperadmin user without adding an organization in the login form. -
Unable to start the jasperserver on the aws.
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
Solution: -If you are using the aws cloud make sure in security group inbound traffic is allowed for the tomcat port. -If you are using the firewall then make sure your tomcat port is not blocked. -In such cases you can ping to server as below from the ssh: curl -v http://localhost:8080/jasperserver-pro/ then you can check if the server is responding or not. If it is responding on the ssh and not on the chrome then port is blocked from the firewall or from the security group. -
Query for parameter/ input controls not getting the most recent values.
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
We introduced the cache for Input Controls, So IC values now are cached. To make Report IC visible immediately after changing in database, kindly turn off the below property from file: ...\webapps\jasperserver-pro\WEB-INF\applicationContext-cascade.xml Currently, property value is by default set to "true" as below ------------------- <bean id="inputControlsCachingEnabled" class="java.lang.Boolean"> <constructor-arg value="true"/> </bean> ------------------- Kindly turn it off and set it to "false" ------------------- <bean id="inputControlsCachingEnabled" class="java.lang.Boolean"> <constructor-arg value="false"/> </bean> ------------------- -
How to kill the process in the jasperserver running on tomcat for the windows OS.
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
Solution: If you know the startup port of the tomcat for example it is 9091. Then the command as below in the command prompt: netstat -ano | findstr :9091 Then, you will receive a Process ID that you can use to kill the process by looking up the PID, or run: For example you will receive PID as: 2083 taskkill /PID <PID> /F then run the command as: taskkill /PID 2083 /F -
PDF export for the Jasperserver barcode getting changed.
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
Solution: -Design the barcode in the jasperserver such that one barcode get showed one after vertically, increase the size of the barcode in the JSS. -Increase the resolution of the pdf export of the report if you still facing same issue. -
Getting ERROR: cannot execute nextval()
Swapnil Pawar posted an entry in Troubleshooting
Swapnil Pawar posted an entry in Troubleshooting
ERROR: cannot execute nextval() error code [0]; could not extract ResultSet Caused by: org.hibernate.exception.GenericJDBCException: could not extract ResultSet Solution: Please follow the below workaround here: 1.Stop jrs service 2.Edit webapps/jasperserver-pro/META-INF/context.xml 3.Delete defaultReadOnly="true" in <Resource name="jdbc/jasperserverAudit".... and from <Resource name="jdbc/foodmart"... also delete same from the other resource in the context.xml file. 4.Start the jrs service. -
Jaspersoft Community Edition Login and Connection time out Error
Swapnil Pawar replied to purub's topic in Products
Hi You already followed the suggestion given for this issue: https://community.jaspersoft.com/forums/topic/68153-connection-to-the-jaspersoft-studio-community-edition/ It looks like we need to investigate this issue more thoroughly. Please open a support ticket so our team of experts can help with the larger scope of your concerns. Thanks!- 1 reply
-
- Jaspersoft Studio
- authentication
-
(and 2 more)
Tagged with:
-
Swapnil Pawar started following lucianc
-
Swapnil Pawar started following JavaMelody Monitoring Tool - Updated
-
JavaMelody Monitoring Tool - Updated
Swapnil Pawar commented on joe.golden's entry in Troubleshooting
Please find the web.xml file for your reference and use the suggested versions of jars other version not worked for me for the JRS 9 web.xml javamelody-core-1.92.0.jar jrobin-1.5.9.jar -
Swapnil Pawar changed their profile photo
-
Hello, Hope you are doing well! 1)please ensure that you have the necessary permissions to create and save configurations in Jaspersoft Studio. Running the application as an administrator may help with this issue. 2)The connections are typically stored in a configuration file. Check if this file is being saved properly: Navigate to your Jaspersoft Studio workspace directory. Look for configuration files that might be storing the server connection details. Ensure these files are not set to read-only and that they are being updated when you create a new connection. 3)Sometimes, the workspace can get corrupted. Try creating a new workspace: Open Jaspersoft Studio. Select File > Switch Workspace > Other. Choose a new directory for your workspace and restart Jaspersoft Studio. Create a new server connection and see if it persists after restarting the application. I hope this will help you, thanks!
-
Regarding JasperReports Server on the Azure Marketplace
Swapnil Pawar replied to DanielVelkov's topic in Products
Hi, Subscription and license both needed for the cloud service. For more information please feel free to our sales team. thanks! -
Jaspersoft Studio Login connection failed
Swapnil Pawar replied to ezequielrodrigueztorralba's topic in Products
Hello, Seems the issue is due to the proxy, you can try by increasing the timeout period of the proxy, also you may need to check with the network admin team about this issue. -
Whenever I am creating a report of this error
Swapnil Pawar replied to fdsmello's topic in Developers and API
Hello, The error you're encountering, java.lang.NoClassDefFoundError, suggests that the Java Virtual Machine (JVM) cannot find the specified class at runtime. In your case, it's mentioning a class with a name like file_name_04599e37895ab4e3069d40b1076b40920ae51f24fac5f79d7b591336514ea071. The message "wrong name: file_name" indicates that there might be an issue with the naming conventions for the class or file. Java expects the filename to match the class name (including case sensitivity), and it seems there's a mismatch. here are some ways to troubleshoot this issue: Make sure that the class name in your code matches the file name (excluding the file extension). Check for typos or case mismatches. If your class is part of a package, make sure that the folder structure matches the package structure. The file should be in the correct directory according to its package declaration. Sometimes, the issue can be due to a corrupted build. Try cleaning your project and then rebuilding it. In many IDEs, you can find options like "Clean" or "Build" to perform these actions. Ensure that there are no duplicate class files or conflicting versions in your project. If there are multiple versions of the same class in the classpath, it can lead to such errors. Verify that all the required libraries and dependencies are correctly included in your classpath. Missing dependencies can result in NoClassDefFoundError. Ensure that your libraries and dependencies are up to date. Outdated libraries might have compatibility issues. You can go for the new installation of the Japsersoft studio and then switch to the old workspace. you can also refer this webpage for more idea: https://community.jaspersoft.com/forums/topic/19239-noclassdeffounderror/ I hope this will help you. -
Jasper Report calling PL/SQL Function with Parameters Issue
Swapnil Pawar replied to MariaF's topic in Developers and API
Hello, Glad to know the issue is resolved. Yes, we need to manually refresh once we make a change in the parameter as you understood. thanks!- 5 replies
-
- parameters
- query
-
(and 1 more)
Tagged with: