jayaramuds
Programmer
I have succesfully installed trial version of Business Objects 11.
I am using custom code for generating report.
I have a JSP, in which I use Crystal API to generate report.
After logging into Crystal Enterprise, there are two ways we can create the report source (I found these options after going through lot of example files).
1. using Report Application Server (RASReportService) ----
IReportAppFactory reportFactory = (IReportAppFactory)enterprisesession.getService("", "RASReportService");
2. using Page Server (PSReportFactory) ----
IReportSourceFactory2 reportFactory = (IReportSourceFactory2) enterprisesession.getService ("", "PSReportFactory");
MY QUESTION IS WHICH IS BETTER APPROACH/OPTION AMONG THESE TWO.
I am using custom code for generating report.
I have a JSP, in which I use Crystal API to generate report.
After logging into Crystal Enterprise, there are two ways we can create the report source (I found these options after going through lot of example files).
1. using Report Application Server (RASReportService) ----
IReportAppFactory reportFactory = (IReportAppFactory)enterprisesession.getService("", "RASReportService");
2. using Page Server (PSReportFactory) ----
IReportSourceFactory2 reportFactory = (IReportSourceFactory2) enterprisesession.getService ("", "PSReportFactory");
MY QUESTION IS WHICH IS BETTER APPROACH/OPTION AMONG THESE TWO.