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

Ching Ice-creaming

Members
  • Posts

    76
  • 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 Ching Ice-creaming

  1. Peter, I meant that I studied from the sources of JRS, (JRS is equal to JasperReports Server ,isn't it ?): For more detail, I read their sources from: /jasperserver-rest/src/main/java/com/jaspersoft/jasperserver/rest/test/PUTTest.java /jasperserver/jasperserver-rest/src/main/java/com/jaspersoft/jasperserver/rest/test/resources Their official examples have already included creation, modification and deletion of ResourceDescriptors. Hope that they can help you. Ching PS: Actually I have programming skill problems too, I am asking how to make a good performance directory tree by RESTful APIs like their JRS and iReport. (Question 2: recursive folders of http://code.google.com/p/jasperclient/wiki/Problems#Problems). Post Edited by icecreaming at 2012-06-20 18:21
  2. Peter, Before I made my open source pet project https://code.google.com/p/jasperclient/ , I learned JasperServer RESTful APIs examples from its sources: /jasperserver/jasperserver-rest/src/main/java/com/jaspersoft/jasperserver/rest/test and its official guide, JasperReports-Server-Web-Services-Guide.pdfI study JSP to make my RESTful client, sorry I don't know Ruby language. Ching Post Edited by icecreaming at 2012-06-19 11:10
  3. At the first glance of your error messages, JasperServer parses your JRXML in error. 1. Characer encoding ? According to your log: at com.jaspersoft.jasperserver.war.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:67) Do you have any special character of your URL, JDBC connection and JRXML ? 'å', 'ä' or 'ö' ... whatever I have bad experience of incompatible locale between my Linux, Java and JasperServer. 2. Incompatible version of xerces.jar I have another bad experience of conflict in different version of XML parsers in my linux and Tomcat. 2.1 I uninstall libxerces-java at my linux in order to let another xerces.jar in Tomcat works 2.2 You may also check CLASSPATH of your environment, see if any double but different version jar files running together. Hope my bad experiences help you. Ching Post Edited by icecreaming at 2012-06-14 13:17
  4. http://help.jaspersoft.com/Content/JasperServer-Help-Book/Using_the_JasperReports.htm
  5. Hi there, Recently I have made an open source Tomcat web application called JasperClient to interact with JasperServer via RESTful services. https://jasperclient.googlecode.com So far I get 2 problems from JasperServer about input control and folders. See detail here: https://code.google.com/p/jasperclient/wiki/Problems#Problems I have just tried to ask Jaspersoft team for help here. However I don't expect any response at any public forum, because most of us is busy for working to live. Anyway, thank you for your attention. Ching Post Edited by icecreaming at 2012-06-17 15:49
  6. You can solve this problem by adding â€-Djava.awt.headless=true†to JVM parameters. http://aaxoy.wordpress.com/2011/08/17/jasper-reports-cant-connect-to-x11-window/
  7. Suggestion 1: Are you using DB2 9.7, see this bug: http://www-304.ibm.com/support/docview.wss?uid=swg1IC65322 Suggestion 2: Have you included db2jcc_license_??.jar at your classpath ?
  8. According to your log messages, your errors originated from your own PrintTicketFn.java, ActionPanel.java, GenericInputPanel.java Can you upload your java files ?
  9. http://docs.oracle.com/javase/6/docs/api/javax/swing/JOptionPane.html JOptionPane.showMessageDialog comes from Java Swing. It cannot run at serverside web applications unless you make it as Java applet.
  10. http://dev.mysql.com/doc/refman/4.1/en/connector-j-reference-charsets.html One of the possibilities is the issue of character encoding of your jdbc driver setting. Do you compare your MySQL data sources of development JasperServer with other normal machines ?
  11. http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=95352
  12. It depends on your SQL statements and JRXML files. Would you mind let us to take a look ?
  13. Read its examples: /jasperreports-4.5.1/demo/samples/webapp/
  14. http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=22361 Your statement: ... but now for some reason,... Pershaps your language coding of MySQL database for development have changed.
  15. http://help.jaspersoft.com/Content/JasperServer-Help-Book/Managing_Folders_and_Res.htm#repository_admin_1963075358_1066396 Are your using the same database source of iReport and JasperServer ? According to your jrxml, you may check your sql-statement by any mysql first. SELECT vtiger_vendor.`vendorname` AS vtiger_vendor_vendorname, vtiger_vendor.`vendor_no` AS vtiger_vendor_vendor_no FROM `vtiger_vendor` vtiger_vendor
  16. Your question is vague. Q1: two instances on the same server Two tomcat running on the same linux, windows or other OS server ? Or are you using one tomcat to run multiple instances ? http://kief.com/running-multiple-tomcat-instances-on-one-server.html Q2: Server is Ubuntu 5.7. I have never heard offcial version 5.7 before. https://wiki.ubuntu.com/Releases Is it a typing mistakes or it is a maintenance release ? Suggestion 1: you may try to setup production and developement server one by one first, see if development works. And then run both together to check if there is another ports of conflict. Suggestion 2: "java.lang.OutOfMemoryError: Java heap space Add parameter to tune your JVM. http://stackoverflow.com/questions/4827544/java-lang-outofmemoryerror-permgen-space
  17. If you are using Linux, you may type netstat to check which service is occupying port 5321.
  18. http://jasperreports.sourceforge.net/sample.reference/virtualizer/index.html Your issue is interesting. Your JasperServer turns on virtualizer as your chart height reaches 700. It is hard to trace your issue without more detail information (such as your JRXML, scriptlet, version of JasperServer). I am just an amateur and cannot spend too much time here. I wish some gurus read this message and help you. Sorry and good luck.
  19. It does not make sense. I check my temporary files of JFreeChart in Jasperserver under Tomcat ($TOMCAT_HOME/temp). Its pattern is prefix +~JF and suffix .tmp One chart generates one temporary file, no more no less. Does your temporary files like this pattern ? If not, you should change another direction to inspect. Perhaps a varible name "height" inside your report or scriptlet to multiple number of temporary files. -rw-r--r-- 1 ching ching 618684 Apr 21 01:47 +~JF1245335344806269714.tmp -rw-r--r-- 1 ching ching 321524 Apr 21 01:47 +~JF168364353035951610.tmp -rw-r--r-- 1 ching ching 273880 Apr 21 01:47 +~JF45161811737487026.tmp -rw-r--r-- 1 ching ching 301928 Apr 21 01:47 +~JF4665377539683550412.tmp -rw-r--r-- 1 ching ching 569432 Apr 21 01:47 +~JF5742884643620477956.tmp -rw-r--r-- 1 ching ching 229284 Apr 21 01:47 +~JF6007943346201021532.tmp -rw-r--r-- 1 ching ching 519616 Apr 21 01:47 +~JF6160979376033550317.tmp -rw-r--r-- 1 ching ching 312444 Apr 21 01:47 +~JF6257977833937133895.tmp -rw-r--r-- 1 ching ching 287060 Apr 21 01:47 +~JF6878799466727175191.tmp -rw-r--r-- 1 ching ching 282964 Apr 21 01:47 +~JF6983911173365298858.tmp -rw-r--r-- 1 ching ching 519792 Apr 21 01:47 +~JF7878149224144341742.tmp -rw-r--r-- 1 ching ching 223408 Apr 21 01:47 +~JF7946876278362987962.tmp Reference: http://www.jfree.org/forum/viewtopic.php?f=3&t=23407
  20. http://www.howtoforge.com/forums/showthread.php?t=8597 A change of chart height will change your number of files in a directory, isn't it ? Although I do not understand your question, an error of "Disk quota exceeded" should be related to your OS setting.
  21. http://help.jaspersoft.com/Content/JasperServer-Help-Book/Scheduling_Reports.htm#running_reports_1099037648_1041637
  22. Before I run "mvn install", I need to download jasperreports-server-cp-4.5.0-maven-repository.zip and unzip it to $HOME/.m2/repository I am using it at linux and I have no idea of making it work at Windows.
×
×
  • Create New...