danieleteti / delphimvcframework

DMVCFramework (for short) is a popular and powerful framework for WEB API in Delphi. Supports RESTful and JSON-RPC WEB APIs development.
Apache License 2.0
1.21k stars 346 forks source link

Wrong MVCProduces attribute on TMVCJSONRPCController.GetPublishedMethodList #716

Closed Pecaas closed 7 months ago

Pecaas commented 7 months ago

There is missing MVCProduces attribute on TMVCJSONRPCController.GetPublishedMethodList method. This method produces plain text, bud default is json. When is rendered in Chrome etc, it complains invalid json. [MVCPath('/describe')] [MVCHTTPMethods([httpGET])] ***Missing [MVCProduces(TMVCMediaType.TEXT_PLAIN)] procedure GetPublishedMethodList; virtual;