Thank you that worked out fine :) But now i'm getting a second error :( namespace Reports { [Serializable()] public abstract class ReportServerConnection : IReportServerConnection { // the error comes here bool Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials(ref System.Net.Cookie authCookie, ref string userName, ref string password, ref string authority) { authCookie = null; userName = null; password = null; authority = null; // Not using form credentials return false; } } }
the error is : 'Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials' in explicit interface declaration is not a member of interface
and the second is: 'Reports.ReportServerConnection' does not implement interface member 'Microsoft.Reporting.WebForms.IReportServerCredentials.GetFormsCredentials(out System.Net.Cookie, out string, out string, out string)'
any ideas? Thanku!!
Stef