Name of providers

Hi,
In RODataSnapModule the search for datasetprividers is case sensitive ? If yes, is possible disable case sensitive ?

Thanks, logged as bugs://77004

bugs://77004 got closed with status fixed.

pls update uRODataSnapPublishedProvidersCollection.pas as

uses
  {$IFDEF DELPHIXE2UP}
    System.SysUtils, System.Classes,Datasnap.Provider;   //changed
  {$ELSE}
    SysUtils, Classes,Provider;                          //changed
  {$ENDIF}

...

function TPublishedProviders.GetProviderByName(iName:string):TPublishedProvider;
...
    if AnsiSameText(Items[i].Name, iName) then result := Items[i]; // changed
...

Thank you for your rapid reply and solution. :+1:

Hi,
I try compile in version 9.2.101.1295, but the problem persist forcing the name of DataSetProvider to be case sensitive.

Is it necessary some configuration?

I can’t reproduce this case with 9.2.101.1295:

as you can see, client passes Customers, but server has customerS and it was found.

I check option “UseProviders” on TRODataSnapModule and works. Sorry my fail.

Logged as bugs://i64778.

bugs://i64778 was closed as fixed.