We have a RO server that now contains both RODL based services and code first based services.
We create intf files via a .remoteRODL file.
However we notice the .RODL based services are not included.
These intf classes are only created when creating the intf file via the .RODL file
How can we create an intf file that contains both?
FYI: We include the RODL services in our service type list but this does not help
//Start TCP RO server
Type serviceTypes = new Type {
typeof(CommonService),
typeof(ServiceImpls.ElevationService),
typeof(FacturatieService),
typeof(MailService),
typeof(PayconiqService),
typeof(StorageService),
typeof(CloudEnabledDBService.CloudEnabledDBService),
typeof(DataAbstract.CommonDBDataService),
typeof(ServiceImpls.GenericDBService),
typeof(DataAbstract.OffConnectDataService),
typeof(DataAbstract.OffESLDataService),
typeof(DataAbstract.OffRecipeDataService),
typeof(RapportenDataService),
typeof(TarUploadService),};
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
var _ = ServiceImpls.TarDataUploadSchedulerService.GetInstance();
ApplicationServer server = new ApplicationServer(“OffNetServer”, serviceTypes);