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

128627

Members
  • Posts

    4
  • 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 128627

  1. Is there a maven repo serving the jar for this?
  2. Hello, I'm trying to generate a pdf from a .jasper file from a spring powered application. I've added to my classpath the same jar files I've added to jaspersoft studio ( [WS_DS_DIR]JSS ) hopping it would allow to use this datasource but I receive the following error No query executer factory registered for the "WebServiceQuery" language. At this point I found the executor in one of the embbeded jar in com.jaspersoft.studio.data.webservice.WebService_6.3.1.201706291619.jar which I also added to the classapth. I then proceeded to add the line jasperReport.setProperty(QueryExecuterFactory.QUERY_EXECUTER_FACTORY_PREFIX+"WebServiceQuery", "com.jaspersoft.webservice.data.query.WebServiceQueryExecuterFactory");[/code]in my code but the problem is still there. My IDE find the class so it is available through the class path. What was my mistake? Should I have installed the libs for that plugin differently?
  3. Hi, I'm trying to use the WebService plugin. I could set up the datasource without problems but when I edit the query I can't load the fields from the response. I can see that the request is going in my REST controller (spring) but the fields never show up for me to select. Trying the request in my web browser displays the json. I couldn't make a simpler test: public class TestJson { private final long testId; private final String testContent; public TestJson(long testId, String testContent) { this.testId = testId; this.testContent = testContent; } public long getTestId() { return testId; } public String getTestContent() { return testContent; }}[/code]@RequestMapping(value = "/test2", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) public TestJson testREST2(@RequestParam String test ) { return new TestJson(1, "Test"); }[/code]When I call the URL with my browser I get a normal resposne : EEDIT : This problem is related to this bug report : http://community.jaspersoft.com/jaspersoft-studio/issues/8791 Please fix or update the addon, it is impressively usefull when it works :)
  4. Hi, I would like to use your library with the Jasper Studio plugin I installed from the Eclipse marketplace but I can't find a way to enable it in this installation. I also installed the standalone JasperStudio on the side and it workd fine in it but it will force me to have two eclipse open at the same time to code my needs. Is it possible to use it with the eclipse's markeplace JasperStudio plugin? If yes how to? I tried to put it in the base eclipse plugin folder with no luck. My eclipse was installed through the windows installer so maybe there is a folder hidden somewhere I didn't think of.
×
×
  • Create New...