Creating RO intf file for both code first as RODL based services

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);

This is one of the services that is not in our intf file

[System.ComponentModel.DesignerCategory(“Code”)]
[RemObjects.SDK.Server.ClassFactories.StandardClassFactory()]
[RemObjects.SDK.Server.Service(Name = “CommonService”, InvokerClass = typeof(CommonService_Invoker), ActivatorClass = typeof(CommonService_Activator))]
public class CommonService : RemObjects.SDK.Server.Service, ICommonService

Hi,

Can you create a simple testcase that reproduces this behavior, pls?
You can drop email to support@ for keeping privacy.

note: you can convert RODL based services to code-first ones with IDE wizard of VS.