RemObjects Talk - Latest posts https://talk.remobjects.com Latest posts Fire crash Fire crashes when I click settings (I know the certificates have expired) in .3065. I can edit them fine in .3045.

Console log attached.

fireCrash.txt (154.9 KB)

]]>
https://talk.remobjects.com/t/fire-crash/33084#post_1 Tue, 17 Mar 2026 13:02:03 +0000 talk.remobjects.com-post-168707
`Decimal` type and dec() bugs://E26899 was closed as fixed.

]]>
https://talk.remobjects.com/t/decimal-type-and-dec/29440?page=2#post_21 Mon, 16 Mar 2026 20:02:55 +0000 talk.remobjects.com-post-168706
Mercury 'Do Loop' 'Continue Do' issue Hi Marc,

I think I may have found an issue, or at least an ambiguity, with `Continue` inside `Do … Loop` in Mercury.

I tested this minimal example:

Module Program

  Sub Main(args As String())
    Do
      writeLn("test")
      Continue Do
    Loop
  End Sub

End Module

This produces errors like:

- Wrong Continue modifier: can not find Do in the current context

  • One of do, For, While expected, got End

If I change Continue Do to just Continue, it compiles, but of course that creates an infinite loop in this minimal example, which is expected.

What seems more interesting is that in a larger simple example, Continue Do does not seem to bind correctly to the enclosing Do ... Loop. It appears the compiler/parser is not recognizing the immediate surrounding Do, even though the statement is clearly inside that loop and only nested within If ... End If blocks.


Module Program

  Sub Main(args As String())
    Write("What is your name? ")
    Dim name As String = readLn()

    If String.IsNullOrWhiteSpace(name) Then
      writeLn("Name cannot be empty.")
      Return
    End If

    writeLn($"It is nice to meet you, {name}!")

    Dim age As Integer
    Do
      Write("How old are you? ")
      Dim ageInput As String = readLn()

      If Not Integer.TryParse(ageInput, age) Then
        writeLn("Please enter a valid whole number for age.")
        ' Continue Do
        Continue do
      End If

      If age < 0 Then
        writeLn("Age cannot be negative.")
        ' Continue Do
        Continue
      End If

      Exit Do
    Loop

    Dim gpa As Double
    Do
      Write("What is your GPA? ")
      Dim gpaInput As String = readLn()

      If Not Double.TryParse(gpaInput, gpa) Then
        writeLn("Please enter a valid numeric value for GPA.")
        ' Continue Do
        Continue
      End If

      If gpa < 0.0 OrElse gpa > 4.0 Then
        writeLn("GPA must be between 0.0 and 4.0.")
        ' Continue Do
        Continue
      End If

      Exit Do
    Loop

    writeLn($"So, {name}, you are {age} years old and your GPA is {gpa:F2} ... stellar!")
  End Sub

End Module


So my question is:

- Is `Continue Do` unsupported in Mercury?

  • Or is this a parser/compiler issue with loop association and/or error reporting?

Thanks,
Gary

]]>
https://talk.remobjects.com/t/mercury-do-loop-continue-do-issue/33083#post_1 Mon, 16 Mar 2026 14:00:17 +0000 talk.remobjects.com-post-168705
Island/Delphi simple App does not work Hi,

I just wanted to play with Island/Delphi support, but I can’t get the smallest thinkable App to run. I have this (almost as in the docs).

namespace DelphiApp1;

uses Delphi.Classes, Delphi.System;

type
Program = class
  public

  class method Main();
  begin
    writeLn('The magic happens here.');
    var lList := new TStringList;
    writeLn('created');
    var s: DelphiAnsiString := 'Hello'; // why do I need an DelphiAnsiString here when compiled with Delphi 13 SDK ?
    lList.Add(s);  //  this crashes at runtime with SDK 13 and complains at compile time when s is a DelphiString !
    writeLn('added');
    writeLn(lList.Text);
    lList.Free;
    var l = new TStringList;
    writeLn('created');
    l.Add('Hello');
    l.Add('World');
    writeLn('added');
    l.Delimiter:= Delphi.System.Char('|'); // note here is a char accepted which doesn't match to DelphiAnsiString with SDK 13
    writeLn(l.DelimitedText);
    l.Free;
    writeLn('done');
    l:= nil;
    lList:= nil;
  end;
end;
end.

I tried this with the Delphi 13 runtime, where String is a UnicodeString in Delphi, not an AnsiString. I guess this causes the crash. IMO this shouldn’t compile when I use the Delphi 13 SDK.

When I try it with the an older Delphi 2007 SDK it compiles as well (this time this is ok, because String is AnsiString), but crashes after the program has finished.

An exception occurred in DelphiApp1, thread 0C74

Type: AccessViolationException

Message:

Code c0000005

Call Stack:

0000000536880687 @System@SysFreeMem$qqrpv rtl100.bpl
0000000000456641 DelphiObjectToString DelphiApp1.exe
0000000000262013 DelphiApp1.Program.Main DelphiApp1.exe (program.pas, line 10)
0000000000200712 __island_force_release DelphiApp1.exe
0000000000249484 RemObjects.Elements.System..main DelphiApp1.exe (windowshelpers.pas, line 1707)
0000000000250072 RemObjects.Elements.System..mainCRTStartup DelphiApp1.exe (windowshelpers.pas, line 1728)
0000001968504009 BaseThreadInitThunk KERNEL32.DLL
0000002003993262 RtlGetAppContainerNamedObjectPath
0000002003993214 RtlGetAppContainerNamedObjectPath

Is the Island/Delphi not yet usable ?

Cheers, Adrian.

]]>
https://talk.remobjects.com/t/island-delphi-simple-app-does-not-work/33078#post_1 Sun, 15 Mar 2026 16:29:29 +0000 talk.remobjects.com-post-168698
E376: Member is obsolete: Types with embedded references are not supported in this version of your compiler Hi

The latest preview release introduced a new compiler error E376 in our .NET 4.8 project.

This may be related to this change log line:

Delphi Compatibility: deprecated directive’s message was ignored

We use the ReadOnlySpan type when working with SkiaSharp :

var span := pixmap.GetPixelSpan;

The current stable release works fine. Is there an option to control the compiler’s E376 behavior? Changing the Delphi Compatibility setting doesn’t resolve the issue.

Regards

Artur

]]>
https://talk.remobjects.com/t/e376-member-is-obsolete-types-with-embedded-references-are-not-supported-in-this-version-of-your-compiler/33060#post_1 Wed, 11 Mar 2026 22:18:29 +0000 talk.remobjects.com-post-168659
Tool Tips / Show Quick Info is distracting and makes life difficult bugs://E27374 was closed as fixed.

]]>
https://talk.remobjects.com/t/tool-tips-show-quick-info-is-distracting-and-makes-life-difficult/31706#post_11 Mon, 09 Mar 2026 11:23:20 +0000 talk.remobjects.com-post-168643
Delphi Freezing Hi Cheney,

Thanks for the report (and apologies for the slow reply - I’ve been focused on other things the past few days and the delay is entirely my fault.)

The latest version .35 fixed an issue that could cause the IDE to slow down, close to freezing, so please make sure that’s installed. (It fixed re-entrancy, where processing a long-running tool call could let other tool calls also be processed. Usually they’re queued.)

Other than that we don’t have any known issue causing a freeze. The best thing I can ask is that if this happens, would it be possible to generate some debug info for us please? Steps are:

  • Delphi freezes :frowning:
  • Open a second instance of Delphi
  • Run > Attach to Process > find bds.exe, and Attach. It won’t let you connect to itself, so you will only be able to connect to the frozen instance
  • Once attached, it should pause the process and you can scroll the Threads view to find the top one, usually the main IDE thread, double-click it, and see what the call stack is.

Thankyou!

]]>
https://talk.remobjects.com/t/delphi-freezing/33032#post_2 Mon, 09 Mar 2026 09:08:05 +0000 talk.remobjects.com-post-168631
Monitoring RemObjects.SDK.ThreadPool threads and activity Hi,

no, you can’t evaluate private properties of ThreadPool so it is impossible.

]]>
https://talk.remobjects.com/t/monitoring-remobjects-sdk-threadpool-threads-and-activity/33044#post_2 Fri, 06 Mar 2026 06:14:40 +0000 talk.remobjects.com-post-168602
Monitoring RemObjects.SDK.ThreadPool threads and activity Hello team,

We are running a Remobjects SDK server using IpSuperHttpServerChannel with a ThreadPool configuration:

IpSuperHttpServerChannel serverChannel = new IpSuperHttpServerChannel(); serverChannel.ThreadPool = new RemObjects.SDK.ThreadPool( 256 /* Max queue length */, 128 /* Max thread count */ );

Is it possible to monitor or inspect the threads of the threadpool, such as viewing the number of active threads, queued requests and which service call a thread from the threadpool is executing.

Thanks in advance!

]]>
https://talk.remobjects.com/t/monitoring-remobjects-sdk-threadpool-threads-and-activity/33044#post_1 Thu, 05 Mar 2026 16:25:50 +0000 talk.remobjects.com-post-168599
Elements.jar problem bugs://E27573 was closed as fixed.

]]>
https://talk.remobjects.com/t/elements-jar-problem/33035#post_4 Thu, 05 Mar 2026 12:19:26 +0000 talk.remobjects.com-post-168596
Queue<T>, can we set the capacity with constructor? bugs://E23244 was closed as fixed.

]]>
https://talk.remobjects.com/t/queue-t-can-we-set-the-capacity-with-constructor/19855#post_3 Thu, 05 Mar 2026 12:03:44 +0000 talk.remobjects.com-post-168595
Elements.jar problem Logged as bugs://E27573.

]]>
https://talk.remobjects.com/t/elements-jar-problem/33035#post_3 Wed, 04 Mar 2026 16:02:29 +0000 talk.remobjects.com-post-168582
Elements.jar problem
arturredzko:

The file inside shows strange directory names:

Hmm, it looks like java doesnt appreciate the class name mangling for file/unit-visibility, wich we based on the spec proposed by the C# version of this feature.

We’ll have a look.

]]>
https://talk.remobjects.com/t/elements-jar-problem/33035#post_2 Wed, 04 Mar 2026 16:01:58 +0000 talk.remobjects.com-post-168581
Elements.jar problem Hi

I’m using the latest stable release. There is a problem referencing .jar files from the Cooper directory.

When using elements.jar, I get an error :

C:\Users\>jar -xf “C:\Program Files (x86)\RemObjects Software\Elements\References\Cooper\elements.jar”
java.io.IOException: F744A47E7__RemObjects\Elements\RTL : could not create directory
at jdk.jartool/sun.tools.jar.Main.extractFile(Main.java:1437)
at jdk.jartool/sun.tools.jar.Main.extract(Main.java:1366)
at jdk.jartool/sun.tools.jar.Main.run(Main.java:390)
at jdk.jartool/sun.tools.jar.Main.main(Main.java:1683)

The file inside shows strange directory names:

cooper.jar and the others look fine:

The previous stable version was working and looks fine:

I tested the jar files using OpenJDK versions 8, 11, and 17.

Can you check if the jar was built correctly in the latest release? Thanks.

Artur

]]>
https://talk.remobjects.com/t/elements-jar-problem/33035#post_1 Tue, 03 Mar 2026 18:02:40 +0000 talk.remobjects.com-post-168570
Delphi like Format bugs://E23332 was closed as fixed.

]]>
https://talk.remobjects.com/t/delphi-like-format/20034#post_7 Mon, 02 Mar 2026 19:21:09 +0000 talk.remobjects.com-post-168567
Delphi Freezing CodeBot is causing Delphi to freeze on a regular basis. Do you have any suggestions about commands, files, etc to avoide? any known issues you can share so i don’t run into this as frequently? any guidence would be much appreciated. Should i contact support, or is this the right forum for this question? I’m really enjoying exploring CodeBot!

]]>
https://talk.remobjects.com/t/delphi-freezing/33032#post_1 Mon, 02 Mar 2026 16:33:31 +0000 talk.remobjects.com-post-168565
Codebot for Delphi 11.3
ronald:

I’m using Delphi 13 Enterprise for developing IOS and Linux. Would love to test CodeBot. Can I join the public beta ?

This might be just what the doctor ordered.

Invite sent, as well. :folded_hands:

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_8 Fri, 27 Feb 2026 11:38:21 +0000 talk.remobjects.com-post-168542
Codebot for Delphi 11.3 Hi,

I’m using Delphi 13 Enterprise for developing IOS and Linux. Would love to test CodeBot. Can I join the public beta ?

This might be just what the doctor ordered.

Tnx,

Ronald

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_7 Fri, 27 Feb 2026 11:21:39 +0000 talk.remobjects.com-post-168541
Codebot for Delphi 11.3
cbrand:

Soon (months)

Less than a month, i’d expect, for 11.x support.

I’ve sent you a beta invite now.

—marc

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_6 Thu, 26 Feb 2026 17:31:19 +0000 talk.remobjects.com-post-168532
Codebot for Delphi 11.3 Hi, just wondering what you think approximate timing is for codebot for Delphi IDE? Soon (months) or end of 2026? Is there an opportunity to jump into the Beta group?

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_5 Thu, 26 Feb 2026 16:56:56 +0000 talk.remobjects.com-post-168530
Please support Typescript as CodeGen Target Hi,

This issue isn’t implemented yet.

I’ll re-review this issue.

]]>
https://talk.remobjects.com/t/please-support-typescript-as-codegen-target/12110#post_6 Thu, 26 Feb 2026 12:30:30 +0000 talk.remobjects.com-post-168527
Please support Typescript as CodeGen Target Hello,

I wonder if this was ever implemented? I can’t see that option from ServiceBuilder nor rodl2code, so I guess not?

Any idea if it will ever be implemented?

Thanks!

]]>
https://talk.remobjects.com/t/please-support-typescript-as-codegen-target/12110#post_5 Wed, 25 Feb 2026 16:58:58 +0000 talk.remobjects.com-post-168523
Can I add custom 'add / remove' block to silver __event? Logged as bugs://E27554.

]]>
https://talk.remobjects.com/t/can-i-add-custom-add-remove-block-to-silver-event/33014#post_3 Wed, 25 Feb 2026 12:26:11 +0000 talk.remobjects.com-post-168512
Can I add custom 'add / remove' block to silver __event?
syriku:

As what we do in C# and Oxygene?

hmm, good question…

It seems no. I’ll log an ticket…

]]>
https://talk.remobjects.com/t/can-i-add-custom-add-remove-block-to-silver-event/33014#post_2 Wed, 25 Feb 2026 12:24:37 +0000 talk.remobjects.com-post-168511
Will Silver be updated for new Elements only features?
syriku:

Moreover, Elements provides even more templates for Swift on .NET than it does for Mercury, which is truly a pleasant surprise.

:face_with_peeking_eye: that means we need to do better for Mercury ;).

]]>
https://talk.remobjects.com/t/will-silver-be-updated-for-new-elements-only-features/33008#post_4 Wed, 25 Feb 2026 11:28:33 +0000 talk.remobjects.com-post-168509
LocalServiceAccess_Acquire Hi,

You can use nil as 3rd parameter.

This parameter allows to autoset SessionManager and EventRepository for services.

]]>
https://talk.remobjects.com/t/localserviceaccess-acquire/33015#post_2 Wed, 25 Feb 2026 09:31:53 +0000 talk.remobjects.com-post-168508
LocalServiceAccess_Acquire Hi,

I just updated to 10.0.0.1621. Remobjects SDK for Delphi.

I cannot compile my webservice

        ls := LocalServiceAccess_Acquire(clientid, 'SomeService');

It needs a third parameter.

Can you advice what that third parameter is, because I do not have a Transport in my webservice or schould I do something else?

]]>
https://talk.remobjects.com/t/localserviceaccess-acquire/33015#post_1 Wed, 25 Feb 2026 09:19:28 +0000 talk.remobjects.com-post-168507
Can I add custom 'add / remove' block to silver __event? As what we do in C# and Oxygene?

]]>
https://talk.remobjects.com/t/can-i-add-custom-add-remove-block-to-silver-event/33014#post_1 Wed, 25 Feb 2026 04:41:34 +0000 talk.remobjects.com-post-168506
Will Silver be updated for new Elements only features? I am very pleased to see that I can still use Silver for .NET development, especially given that Swift lacks a robust GUI framework on Windows. Moreover, Elements provides even more templates for Swift on .NET than it does for Mercury, which is truly a pleasant surprise.

]]>
https://talk.remobjects.com/t/will-silver-be-updated-for-new-elements-only-features/33008#post_3 Wed, 25 Feb 2026 01:14:03 +0000 talk.remobjects.com-post-168504
Will Silver be updated for new Elements only features?
syriku:

But how about silver extensions to make sure that silver can be used in Elements, such as use swift in .Net?

Silver continues to be supported as a language in our latest compiler, and benefits from any and all non-language-based compiler enhancements over time, including e.g. full support for the .NET platform as it evolves.

The only thing we stopped doing is keeping up with latest Swift syntax changes and language features Apple is adding, as – frankly – many of them are obnoxious, and not all of them are really compatible with how Silver works on all its supported target platforms (especially .NET and Java, which often have runtime contraints orthogonal to Swift’s… vision of things, let’s say).

You could say, the goal is more to keep a language in the spirit of Swift 1-4 as part of the Elements toolchain, rather than ro mimic the monstrosity that 5/6 has become… :).

That said, we’re happy to entertain adopting new features if feasible, as well as adding new featyres needed for platform support (i’m not currently aware of any needs, in the latter regard). Your (and anyone’s) feedbacl on what you’d like to see happen here would be greatly appreciated.

—marc

]]>
https://talk.remobjects.com/t/will-silver-be-updated-for-new-elements-only-features/33008#post_2 Tue, 24 Feb 2026 17:19:28 +0000 talk.remobjects.com-post-168500
Will Silver be updated for new Elements only features? I know that swift is deprecated from keeping Silver in sync with new language features added to the Apple swift language.

But how about silver extensions to make sure that silver can be used in Elements, such as use swift in .Net?

]]>
https://talk.remobjects.com/t/will-silver-be-updated-for-new-elements-only-features/33008#post_1 Tue, 24 Feb 2026 09:56:09 +0000 talk.remobjects.com-post-168488
Session creation and deletion: should it be some symmetry between those two calls? Hi,

this logic is used in super tcp channel:

            // Borrow Client ID from the message properties
            if (this.ClientID == Guid.Empty)
            {
                this.ClientID = message.ClientID;
            }
...
            message.ClientID = this.ClientID;

You can try to use SetProcessWorkingSetSize as described at https://stackoverflow.com/questions/2031577/can-memory-be-cleaned-up . it may cleanup memory in your case.

]]>
https://talk.remobjects.com/t/session-creation-and-deletion-should-it-be-some-symmetry-between-those-two-calls/32951#post_8 Fri, 20 Feb 2026 09:16:59 +0000 talk.remobjects.com-post-168451
Session creation and deletion: should it be some symmetry between those two calls?
EvgenyK:

as expected. You can change ClientID for unactive channel only.

for super channels, channel.ClientID is needed for for establishing connection, i.e. when hello package is generated.

Ok, so, as far as I can see there shouldn’t be any messages apart from the hello package with the ClientID set to Guid.Empty before the Login, as afterwards I am using the same Channel and the service instances are created afterwards (except the one that handles the Login) with both the Message.ClientID (manually) and Channel.ClientID (internally by RO-SDK) set to the session generated from the Login method.

I am not really sure how to try anything more about this. I feel the “problem” (if there is a problem at all) is on the Server Channel’s connection handling. It certainly doesn’t appear to be a memory leak, as I can run this tests consecutively without any extra memory being consumed. But it is clear that this test with it’s 100s of connections use more memory from the server that it is not released even after the session timeout window has passed… several times. And it appears like the non-Super channels, TCP is the only I tried, even use more memory.

For me it’s not a big deal, I only noticed this because one of the other tests uses a lot of memory and, being this a 32bit server, that test fails if the concurrent one was run first. In real life none of those two scenarios is likely to happen, at least for the time being.

If there is anything that we could try here please let me know, for now I am putting a pin on this.

Thanks

]]>
https://talk.remobjects.com/t/session-creation-and-deletion-should-it-be-some-symmetry-between-those-two-calls/32951#post_7 Thu, 19 Feb 2026 23:34:40 +0000 talk.remobjects.com-post-168448
RO HTTP Server in Delphi - client certificate verification bugs://D19645 was closed as fixed.

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_6 Thu, 19 Feb 2026 16:06:20 +0000 talk.remobjects.com-post-168446
RO HTTP Server in Delphi - client certificate verification Hi,

update uROSocket.pas as

function TROSocketOpenSSL.is_retryable(ErrorCode: Integer): Boolean;
..
      fNeedShutdown := l_errorCode = SSL_ERROR_ZERO_RETURN;
      if fNeedShutdown then fShutDown := True; // <-------- changed

it should solve issue with TROHTTPServer

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_5 Thu, 19 Feb 2026 16:03:50 +0000 talk.remobjects.com-post-168445
Codebot for Delphi 11.3
alan.luck:

Hi David, I was wondering when you expect an update to the codebot plugin. We love the idea, we currently are exploring VsCode/Copilot but a native plugin would be ideal. Thank you!

We’re working on the back-port now.

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_4 Thu, 19 Feb 2026 15:07:58 +0000 talk.remobjects.com-post-168442
Codebot quality of life improvement Hi all

I was wonder if you can make the following improvement.

After the bot is finishing to inform the user with a sound (or other) but i think sound is the easiest.

Reason.

If i give him to do something i want to put my attention elsewhere. but i need to keep a constant eye on him to see if is done.

Like this if i do something else i can here the sound and return to chek or else.

tks

]]>
https://talk.remobjects.com/t/codebot-quality-of-life-improvement/32995#post_1 Thu, 19 Feb 2026 07:00:14 +0000 talk.remobjects.com-post-168436
Codebot for Delphi 11.3 Hi David, I was wondering when you expect an update to the codebot plugin. We love the idea, we currently are exploring VsCode/Copilot but a native plugin would be ideal. Thank you!

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_3 Thu, 19 Feb 2026 02:02:38 +0000 talk.remobjects.com-post-168432
Is possible Run an Oxygene project on Linux with .Net Core? Hi Gregorio,

I will say it depends on the size of the application, the time you have to migrate, and the enrgy you want to put in it.

Perhaps recreating the top application class and copy the source code for the other parts will work. I can’t help more without access to the source code.

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_8 Wed, 18 Feb 2026 15:51:06 +0000 talk.remobjects.com-post-168426
Is possible Run an Oxygene project on Linux with .Net Core? Hi

But continue using Oxygene and woking on Linux, Is there a way?

Or just rewriting whole the application?

Thx

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_7 Wed, 18 Feb 2026 14:34:53 +0000 talk.remobjects.com-post-168425
Is possible Run an Oxygene project on Linux with .Net Core? As far as I know, there is no tool for migrating an Oxygene solution from .NET Framework to .NET Core. And I never do this (I’ve rewritten the application using C#).

Take a look at Get started with incremental ASP.NET to ASP.NET Core migration | Microsoft Learn, this will perhaps help you.

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_6 Wed, 18 Feb 2026 13:22:14 +0000 talk.remobjects.com-post-168424
RO HTTP Server in Delphi - client certificate verification Thank you for your reply and recommendation, I will try it out.

Regards from Prague, Jiri

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_4 Wed, 18 Feb 2026 13:04:37 +0000 talk.remobjects.com-post-168423
Is possible Run an Oxygene project on Linux with .Net Core? Is a server app, it contains: APIs, Middlewares, Services to consume third-party APIs and comunicate with our main system generating documents.

I don’t know all library names, but are related to JSON, XML, FTP, PDF and Cryptography in .Net Framework

Thx

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_5 Wed, 18 Feb 2026 12:56:20 +0000 talk.remobjects.com-post-168422
RO HTTP Server in Delphi - client certificate verification Logged as bugs://D19645.

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_3 Wed, 18 Feb 2026 11:33:19 +0000 talk.remobjects.com-post-168419
RO HTTP Server in Delphi - client certificate verification Hi,

I can reproduce issue with TROHTTPServer and verification of client SSL certificates.

as a temporary workaround, you can use TROIndyHTTPServer instead of TROHTTPServer.

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_2 Wed, 18 Feb 2026 11:32:19 +0000 talk.remobjects.com-post-168418
RO HTTP Server in Delphi - client certificate verification Hello,

Is it possible to create an HTTPs server in the RO/Delphi environment that will actively request and verify client SSL certificates? If so, what is the recommended way?

Thank you for your reply, regards from Prague

Jiri

]]>
https://talk.remobjects.com/t/ro-http-server-in-delphi-client-certificate-verification/32991#post_1 Wed, 18 Feb 2026 08:25:51 +0000 talk.remobjects.com-post-168414
Codebot for Delphi 11.3 Hi Allen,

Absolutely, yes. We currently build for 12 and 13, but we do plan to move it backwards a few versions, and 11 is still very recent. Bar anything completely unexpected, yes, we definitely plan to support 11.3 and likely some earlier versions before that too.

This is a good reminder to do that. We’ve been focusing in some internal fundamentals and tweaks, but expanding the versions of supported Delphi is an excellent thing we should do sooner rather than later. You’re not the only one to ask :slight_smile:

]]>
https://talk.remobjects.com/t/codebot-for-delphi-11-3/32975#post_2 Tue, 17 Feb 2026 13:40:44 +0000 talk.remobjects.com-post-168388
Is possible Run an Oxygene project on Linux with .Net Core?
Anderson_Gregorio:

No isn’t. It built under .Net Framework and actually run just on Windows.

My question was about third-party libraries you use.

And the first question: which kind of application?

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_4 Tue, 17 Feb 2026 13:26:36 +0000 talk.remobjects.com-post-168386
Is possible Run an Oxygene project on Linux with .Net Core? No isn’t. It built under .Net Framework and actually run just on Windows.

We haven’t migrated to .Net Core yet.

That is my question reason…

Thx.

]]>
https://talk.remobjects.com/t/is-possible-run-an-oxygene-project-on-linux-with-net-core/32977#post_3 Tue, 17 Feb 2026 13:09:19 +0000 talk.remobjects.com-post-168383
License issue Just found same solution 10 minutes ago, I copied “licenses.licx“ from some working project into a project that throws an exception, it worked!

After that checked Git what is the diff. between “before” and “after”, you are right, it is something about “EmbeddedResource”

]]>
https://talk.remobjects.com/t/license-issue/32979#post_3 Tue, 17 Feb 2026 10:31:17 +0000 talk.remobjects.com-post-168374