Jump to content

kkelleher

Members
  • Posts

    109
  • Joined

  • Last visited

 Content Type 

Forum

Downloads

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Security Advisories

Events

Profiles

Posts posted by kkelleher

  1. Perhaps I'm missing something, but it sounds like your session is simply timing out. By default, a session expires after 20 minutes. You can change this by editing the web.xml file in WEB-INF. Look for the <session-timeout> property.

    Thanks,

    Kristen

  2. If you can access your data via JDBC, then JasperServer won't have any problems accessing it.

    For most purposes, your developers probably only need iReport to develop your reports. They would only need JasperServer if they needed to customize the server's UI or functionality. To push reports to the server, you can use iReport's JasperServer plugin.

    If you plan to use Ad Hoc, you'll need a Pro license.

    Thanks,

    Kristen

  3. If you can access your data via JDBC, then JasperServer won't have any problems accessing it.

    For most purposes, your developers probably only need iReport to develop your reports. They would only need JasperServer if they needed to customize the server's UI or functionality. To push reports to the server, you can use iReport's JasperServer plugin.

    If you plan to use Ad Hoc, you'll need a Pro license.

    Thanks,

    Kristen

  4. > - does the recource-name must be the same as the filename ? (wood.jpg instead of wood?)

    Yes, you need to specify the exact file name, including the file extension.

    > - Is this a real Upload of the JPG ?

    I'm not sure how you mean "real" but I think the answer is "yes."

    > - Where do I find the uploaded files in Unix-Filesystem ?
    >      or is it imported in the SQL-database

    The file is stored in the RDBMS that you specified during installation.

    Thanks,

    Kristen

  5. sup03: the issue you report has been reported by other users and is currently targeted to be fixed in a future release. A possible workaround is to  to create an alternate sitemesh decorator, but we're getting way out of my area of knowledge.

    I repost something I found that may be helpful to you (though I fear I don't have the skills to help you with it further than that...).

    Thanks,

    Kristen

    This is basically how sitemesh decorator works:

    Code:

    \jasperserver-pro\WEB-INF\decorators.xml
                              |
                              points to
                              |
                              |--->\WEB-INF\decorators\main.jsp
                                                        |
                                                        points to
                                                        |
                                                        |--->\WEB-INF\decorators\decorator.jsp

    To create a parallel sitemesh decorator:
    1. in \WEB-INF\decorators\main.jsp, add a switch like below
    Code:

    <c:choose>
    <c:when test="${param['ANY_KEYWORD'] == 'true'}">
        <%@ include file="alternate_decorator.jsp" %>
    </c:when>
    <c:otherwise>
        <%@ include file="decorator.jsp" %>
    </c:otherwise>
    </c:choose>

    2. make a copy of decorator.jsp and rename it like "alternate_decorator.jsp" or any other name.
    3. with a text editor open "alternate_decorator.jsp" and delete what you don't want to be displayed.
    4. add also <jsp:include page="/cal/calendar.jsp" flush="true"/> between <head></head> tags.

    The advantages of this workaround are:
    - JasperServer's decorator stays clean and you can modify as much as you like your alternate_decorator.jsp
    - Whenever you need alternate_decorator.jsp, just add &ANY_KEYWORD=true to your URL (don’t use &decorate=no at the same time). It will use your alternate decorator
  6. Have you made any customizations to the JS interface? A change to WEB-INF/calendar.properties might cause the date picker to fail.

    Also, can you explain what you mean by "gives trouble"? Is it returning an exception, having a problem redrawing the page, or some other issue?

    Thanks,

    Kristen

  7. Does this problem happen only for specific reports? Can you reproduce it with one of the sample reports? For example, look for the Customers Report; it's got two date-based input controls (I set them to 1990-06-09 and 2010-06-03 to get results in the report).

    I also wonder if it might be a problem with localization; what language is the UI presented in?

    Thanks,

    Kristen

  8. In my browser, the Euro symbol you show in your resource bundle isn't rendering properly, so I wonder whether it's encoded for ISO-8859-1 (Latin-1).

    By the way, I can't say that your problem is caused by version compatibility issues, but JasperServer doesn't necessarily work with versions of iReport with high version numbers. JasperServer 3.7.0 was tested with iReport 3.7.0, so there may be compatibility issues.

    Thanks,

    Kristen



    Post Edited by kkelleher at 06/01/2010 17:49
  9. Dashboards are editale after creation, so long as you have the right permissions for the dashboard. In the repository, right-click the dashboard and choose Open in Designer.

    As for input controls, they are automatically added to the Special Content > Single Report Controls or Special Content > Multiple Report Controls. As taras points out, you need to define the input controls in your report (they should map to paarameters defined in the report), and then they are available when the report is added to the dashboard.

    Of course, all this applies to the Pro/Enterprise editions of JasperServer. You can find more detail in the JS User Guide and JS Ultimate Guide.

    Thanks,

    Kristen

  10. I can't speak to how you would customize JS Community to handle this case, but I will take the opportunity to plug the new auditing functionality in JS Pro 3.7. Essentially, JS Pro can collect this kind of information; it includes a Domain (metadata about the database tables that store the audit info), which you can create reports against. JS also includes some "canned" reports that run against the audit Domain, which may address your needs; if not, you can use them as a basis of your own work.

    The Pro eval is available here:

    http://jaspersoft.com/jaspersoft-business-intelligence-software-trial

    Thanks,

    Kristen

  11. uridium wrote:

    JasperAnalysis the tool I need for managing cubes, dimensions etc.

    Jaspe Analysis is exactly what you need!

    You'll want the JA workbench you also asked about for defining your cubes (&etc); you can then upload the schema to JasperAnalysis (including associating it with e data source) and create an analysis view that points to your schema and includes an MDX query.

    The steps are in the JasperAnalysis user guide -- see chapter 3. Good luck!

    Thanks,

    Kristen

  12. It's odd. I'm able to load the schema into JasperServer and create views against it with no problem, but I'm getting an error from the workbench (v3.5.4) when I try to load the schema there. I'm not sure if it's a bad schema or a problem with the workbench's validation mechanism. I fiddled with the schema a bit, but I wasn't able to find a quick fix to the schema. 

    I've logged a defect for this in our internal system. Note that you can use the full foodmart schema, which is available in your JS install under samples/schemas.

    Thanks for pointing this out, and sorry for the long delay in replying,

    Kristen

  13. The latest JasperServer and JasperAnalysis ultimate guides are now available on the Support Portal and eShop. They cover version 3.7 and include:

    • A new chapter on application security that uses Tomcat as an example application server.
    • For securing data accessed from a Domain, a new method for checking user profile attributes in DomEL (requires the JasperServer Professional 3.7.0.1 Domain Security Hotfix).
    • Detailed instructions for adding custom report exporters.
    • Information about built-in parameters for cascading input control.
    • Aligned Chapter 9 with the Public API set out in the Javadoc.
    • Improved icons for notes, cautions, and product editions.


    Thanks,

    Kristen

×
×
  • Create New...