| API | public string[] GetFileSystems() |
| sample | ERSClient ersclient = new ERSClient( ..... ); string[] values = ersclient.GetFileSystems(); ersclient.Close(); |
| API | public string[] GetReports(string fs) fs is the name of the file system you to list the report available |
| sample | ERSClient ersclient = new ERSClient( ..... ); string[] values = ersclient.GetFileSystems(); ersclient.Close(); |
| API | public Parameter[] GetParameters(String report) fs is the name of the file system you to list the report available |
| sample | ERSClient ersclient = new ERSClient( ..... ); Parameter[] values = ersclient.GetParameters("/MyFileSystem/Myfolder/MyReport.rml" ); ersclient.Close(); |
| API | public JobInfo RenderReport(string reportName, Stream os, string mimeType, string propertylist, string target) fs is the name of the file system you to list the report available |
| sample | FileStream fs = new FileStream(cacheLocation+filename, FileMode.CreateNew); ... ersclient.RenderReport( "/MyFileSystem/MyFolder/MyTemplate.rml", "application/pdf", fs, properties, "me" ); ersclient.Close(); |
To deploy the Elixir Report Server .Net Client and the APSX script to IIS
server.
You will need to provide in the root directory a bin directory where it
should contain the ERSClient.dll and log4net.dll. The other directory
may contain the aspx file.
S
Walk through with deploying JSPX and Client's Component
=========================================
Locate the Internet Information Server .
.
Open to the Tree view of the IIS directory.

Select the Default Web Site node and right click to create a new Virtual Directory

Set the virtual directory name

Set the physical location of the directory

Set Permission for excuting the script.

Add aspx extension to be mapped to .Net framework.

Select the .Net Framework application to run the script.

Once this mapping is done. This completes the deployment steps.
Next, verify the virtual path and file location of 'web.config'
Start Elixir Report Server
Access the URL : http://localhost/ERApp/
Click on 'To Start select this link' to list file systems
Click on 'ReportSamples' to list the reports in ReportSamples
Click on the links to generate erport in PDF format
Report Generation is complete and shown on the console of Elixir Report Server