• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

[Crystal Reports] JRCAgent1 received a request that cannot be handled by the JRC

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all,

trying to use JRC to export to pdf from a resultset, it ran but return with this error.

ERROR - JRCAgent1 received a request that cannot be handled by the JRC
ERROR - JRCAgent1 detected an exception: Currently not implemented in the Java Reporting Component

ReportClientDocument reportClientDoc = new ReportClientDocument();

reportClientDoc.open(REPORT_NAME, 0);

reportClientDoc.getDatabaseController().setDataSource(rs, "rpt01", "abc");

// Did some debugging and the error is returned here

ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputControll er().export(ReportExportFormat.PDF);

reportClientDoc.close();

Any help is very much appreicated, thanks.
reply
    Bookmark Topic Watch Topic
  • New Topic