Hi ,
I have liset of points.
1- i have tried to install alof of versions of Crystal Report Server but non of them have install the Reporter application server as service.
can please provide alink of the RAS 2013.
2- if is not needed to standalone service , I have tried the folowing code to access the report parameters but i got an Exception "Failed to connect to server"
How can i avoid this issue.
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Wow6432Node\SAP BusinessObjects\Suite XI 4.0\Report Application Server\Server\LocalConnectionMgr");
string tempFilePath = key.GetValue("ReportDirectoryPath").ToString();
string tempFile = tempFilePath;
tempFile = tempFilePath + "\\Agents Above or Below Standard- by Form.rpt";
ReportClientDocument crystalReport = new ReportClientDocumentClass();
object path = (object)tempFile;
//write file to temp folder
crystalReport.Open(ref path, 0);
Thansk,