I'm installing a service on a machine that will call a method from another WCF service and email a rdlc report. I have the report being copied to the compile directory and I reference it so it seems to be finding it.
LocalReport report = new LocalReport();
report.ReportPath =
@"C:\Services\Experience Field Manager\ExperienceService\bin\Debug\DailyLog.rdlc";
I don't have anything called 'Main Report' in my code. Any suggestions?
Thanks very much in advance.