Hi everyone,
We have recently updated from 10.1.600 to 10.2.400. We have a piece of code that submits to the Ice Process, which used to work properly with the previous version:
using (var sysagentsvc = ServiceRenderer.GetService(context))
{
string systemAgent;
sysagentsvc.GetDefaultTaskAgentID(out systemAgent);
paymentService.SubmitToAgent(payment, systemAgent, 0, 0, “Erp.UIRpt.ProcessPayment”);
}
However, since the update, the Ice Process throws the following exception when called upon: Program Ice.Services.Lib.RunTask raised an unexpected exception with the following message: RunTask: System.Web.Services.Protocols.SoapException: The operation you are attempting requires a secure connection (HTTPS). —> Microsoft.ReportingServices.Diagnostics.Utilities.SecureConnectionRequiredException: The operation you are attempting requires a secure connection (HTTPS).
This Ice Process works just fine when called directly from the “Base Only” version of the screen it’s related to.
Any idea of how to fix this issue ?
Thanks