I am trying to code against the ReportService as described in the Knowledge Base article KB000021 but I keep getting an exception when I fire the GetData operation.
The error I receive is as follows:
"An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll
Additional information: Server was unable to process request --> Invalid column name 'UserName'."
and the code that I am using is as follows:-
.ToString();
int RID = Convert.ToInt32(ReportID);
int TLID = Convert.ToInt32(TemplID);
ds = K2Reporting.GetData(RID, TLID, UserName);
dataGrid4.DataSource = ds;
}
Please could anyone suggest any fixes for this error. Thanks for your help
Tom