Hello,
I use an old way to create my Xdata-Server, like this:
SparkleServer := THttpSysServer.Create;
Module := TXDataServerModule.Create(mResource, TkshSQLConnection.CreatePool(20));
// ... configure the module
TXDataModelBuilder.LoadXmlDoc(Module.XModel);
// this works:
Module.XModel.Title := 'KSH WebAPI';
Module.XModel.Version := '1.0';
Module.XModel.Description := '...';
SparkleServer.AddModule(Module);
SparkleServer.Start;
With this code I cannot find the documentation in the swaggerUI. What do I have to do to include the documentation for services or methods or objects in the swaggerui?
Regards
Harald