João Antônio Duarte
João Antônio Duarte
You have access to TWebContext within a method of your controller. You can extract the information from TWebContext and pass it to LogWriter. ```delphi var lLogInfo: string; begin lLogInfo :=...
I will check this behavior
> Hi! > I use RC6 and applied changes from fix #376 > > When you use > MVCSwagParam(plQuery, 'types', 'types', ptArray, false,'','money,loading,unloading') > > result in json: > {...
> Also I have problem with [MVCSwagResponses(200, 'ok', INDEX_JSON_SCHEMA)] where > INDEX_JSON_SCHEMA = > '{' + sLineBreak + > **' "type": "array",' + sLineBreak + ' "items": {' + sLineBreak...
> yes, if this object then working, but me need array objects This object represented as an array should look like this: ```json { "type": "array", "items": { "type": "object",...
I think you're missing something. In my tests it is working correctly;  See this attached sample. Enumerators and array of objects work correctly: [swaggerdoc.zip](https://github.com/danieleteti/delphimvcframework/files/4572195/swaggerdoc.zip)
> Enums work is single, but not array of enum. Indeed, swagger middleware does not support enumerators as an array. We will implement this functionality soon.
I believe it is possible. However it is necessary to test to be sure of this.
> What is the status of this problem ? We are facing similair problem now. When we add support for OpenAPI 3.0 we intend to correct this problem. What problem...
I'm working on refactoring the Swagger documentation generator to make it more customizable.