/// <summary>
 /// Should use the ServiceBroker to create a ticket to directly connect to the ESS for experiment records
 /// </summary>
 /// <param name="sbProxy"></param>
 /// <param name="expID"></param>
 /// <param name="cList"></param>
 protected ExperimentRecord[] getRecords(InteractiveSBProxy sbProxy, long expID, Criterion[] cList)
 {
     ExperimentRecord[] records = null;
     records = sbProxy.RetrieveExperimentRecords(expID, cList);
     return records;
 }
 /// <summary>
 /// Should use the ServiceBroker to create a ticket to directly connect to the ESS for experiment records
 /// </summary>
 /// <param name="sbProxy"></param>
 /// <param name="expID"></param>
 /// <param name="cList"></param>
 protected ExperimentRecord[] getRecords(InteractiveSBProxy sbProxy, long expID, Criterion[] cList)
 {
     ExperimentRecord[] records = null;
     try
     {
         records = sbProxy.RetrieveExperimentRecords(expID, cList);
     }
     catch (Exception e)
     {
         lblResponse.Text = Utilities.FormatWarningMessage("You do not have access to this experiment!");
         lblResponse.Visible = true;
         return null;
     }
     return records;
 }