README.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. Licensed Materials - Property of IBM
  2. IBM Cognos Products: DOCS
  3. (C) Copyright IBM Corp. 2005, 2008
  4. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
  5. IBM Corp.
  6. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  7. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  8. reportrunner - A Command-line Report Running Tool
  9. reportrunner is a simple application that runs a report and saves its output
  10. as HTML.
  11. This version is written in Java
  12. Requirements:
  13. - IBM Cognos
  14. - a running IBM Cognos BI server
  15. - the IBM Cognos amples databases and samples deployment archive must be
  16. installed and configured (if you don't specify a report name on the
  17. command-line)
  18. Usage:
  19. reportrunner [options]
  20. -host hostName Host name of server.
  21. Default: localhost
  22. -port portNumber Port number of the server 'host'.
  23. Default: 9300
  24. -report searchPath Search path in the content store to a report.
  25. Default: /content/folder[@name='Samples']/folder[@name='Models']/package[@name='GO Data Warehouse (query)']/folder[@name='SDK Report Samples']/report[@name='Product Introduction List']
  26. -output outputPath File name for the output HTML document.
  27. Default: reportrunner.html
  28. -user userName User to log on as. Must exist in 'userNamespace'.
  29. Default: none (requires Anonymous access or it will fail)
  30. -password userPassword Password for 'userName' in 'userNamespace'.
  31. Default: none
  32. -namespace userNamespace Security namespace to log on to.
  33. Default: none
  34. Compiling:
  35. To compile, you need to reference these JAR files:
  36. * axis.jar
  37. * axisCognosClient.jar
  38. * jaxrpc.jar
  39. * saaj.jar
  40. * xalan.jar
  41. * xml-apis.jar
  42. Running:
  43. To run, you need to reference these JAR files:
  44. * axis.jar
  45. * axisCognosClient.jar
  46. * commons-discovery.jar
  47. * commons-logging.jar
  48. * jaxrpc.jar
  49. * saaj.jar
  50. * xalan.jar
  51. * xercesImpl.jar
  52. * xml-apis.jar
  53. Please note that the samples are not intended to be treated as end-user
  54. applications. Refer to the sample code for examples of how to use the
  55. API when developing your own applications.