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

vkm

Members
  • Posts

    3
  • Joined

  • Last visited

vkm's Achievements

Rookie

Rookie (2/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. I have a data set as below: Students / Subjects Sub0 Sub1 Sub2 Sub3 Sub4 Sub5 TOTAL Student1 0 181 0 0 0 0 181 Student2 112 121 127 138 132 120 750 Student3 0 4 0 0 0 4 Student4 0 30 2 0 0 0 32 I am using the stacked bar chart to display this in graph: (as attached in StackedBarChart.GIF) i want the Graphs to be in sorted order of Total . The first stacked bar should be the highest total and last stacked bar should be the least total. I tried to write some customixed hava classes for this, but not successful. Can u tell me is there any property or expression i have to set to display in assending order?
  2. I am using the trial Version of Jasper Server, installed in Linux env. I want to use Jasper Server web services and get the list of reports existing in jasper server. For this I am using the SOAP UI (2.0.2 version), i created a project with the wsdl URL "http://localhost:8080/jasperserver-pro/services/repository?wsdl" I get list of methods : Copy , delete, list etc .. when i am using the list request as below which is already generated by SOAP UI application (I Just added the reports in the request xml string to get the list of all tyes under reports folder): <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:axis="http://axis2.ws.jasperserver.jaspersoft.com" > <soapenv:Header/> <soapenv:Body> <axis:list soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <requestXmlString xsi:type="xsd:string">reports</requestXmlString> </axis:list> </soapenv:Body> </soapenv:Envelope> after running this i get below error: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <ns1:listResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://axis2.ws.jasperserver.jaspersoft.com"> <listReturn xsi:type="xsd:string"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> <operationResult version="2.0.1"> <returnCode><![CDATA[1]]]]>><![CDATA[</returnCode> <returnMessage><![CDATA[Content is not allowed in prolog.]]]]>><![CDATA[</returnMessage> </operationResult>]]></listReturn> </ns1:listResponse> </soapenv:Body> </soapenv:Envelope>
  3. i am looking for a API / classes which allow me to use GUI of jasper server I have jasper server installed in linux env. In jasper server when we want to add a report we have to fallow 6 steps , namely - Naming, JRXML, Controls & Resources, Data source, Query, Customization. At each step we get a screen to input the data it require. I want to iintegrating my application with Jasper Server and intend to use the same UI / Screens of jasper server in my project (My project is in Java). How to get the same UI integrated with my Application insted of creating the GUI again. Can any one help me how to achieve this
×
×
  • Create New...