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

fidelity

Members
  • Posts

    8
  • Joined

  • Last visited

fidelity'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. Hi Sherman, I'm using jasperserver 2.1. From the ResourceDescriptor I can access uristring, wstype, label etc with actual values, it is only creationdate that is null. Thanks Dipak
  2. Hi Mike, Pls could you explain how you implemented this, I was planning on writing a java program that would access the Creation Date of the report and then delete depending on how old it was however when I tried to extract the date it comes out as null. thks Di
  3. Hi, I'm writing a Java application that will purge the reports in the respository that are older than a set number of days. I'm using the web services to extract the report details however when I get back a list of ResourceDescriptor's for the reports in a folder, the creationDate is always null for each report. I have also tried using TYPE_REPORTUNIT on each of ResourceDescriptor's from the folder list. ResourceDescriptor rd = new ResourceDescriptor (); rd.setWsType(ResourceDescriptor. rd.setUriString( rd.setIsNew( TYPE_FOLDER);"/reports/Output");false);// Get a list of ResourceDescriptor for the folder List rdList = jserver.getWSClient().list(rd); ResourceDescriptor rd1 = (ResourceDescriptor)it.next(); for (Iterator it = rdList.iterator(); it.hasNext(); ) {. reportCreationDate= rd1.getCreationDate(); -- ALWAYS NULL? } is this the correct code ? is there an alternative way of automatically removing older reports ? thks
  4. Hi, We are running JS 2.1 under WAS 6 by recompiling 2.1 under java 1.4.2 Experiencing poor response or some of the reports hang when running the actual report. In the system error log noticed the error "SocketException: A system call received a parameter that is not valid." Anybody came across similiar issues and a posible solution ? Thanks
  5. Hi Lucian, In the topic '2nd page not showing': http://www.jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=39777 you mention that this is a bug and a fix is available here: url=http://www.jasperforge.org/index.php?option=com_joomlaboard&Itemid=&func=view&catid=10&id=34551#34551 I could not open this link, could you pls confirm the correct link thks Dipak
  6. Hello, I'm been trying to resolve for some time how to handle multiple selection criteria from JasperServer within a Oracle Stored Procedure. I know that if I call the SQL directly in the report, you can use X$ to convert a collection into a delimited string like (1,2,3). How can the same thing be achieved when dealing with Oracle Stored Procedures ? is it possible to pass the collection into oracle SP or does it need to be converted into a string? Even if it is converted into a string can the IN statement in the SP be used with the string. Thanks Dipak
  7. Hi, Passing two datetime values into the report and wish to use this as a date range from which to select XML records where an XML element falls within the datetime range. Within the XML file below, attempting to select XML records that have a creationDate between the given parameters. [file name=InstrumentExtract.xml size=14095] The examples I have come across are fairly simple using Xpath 1.0 with element/attributes selections. Can you pls explain how this can be done ? do you have any examples using xpath2 with ireports? thks
×
×
  • Create New...