The JADE 2022 release meets tomorrow’s business demands.
HistoricalComments
Software Medical Infomatics Limited 22/08/2018 9:52:17 AM
It seems you can do this already by implementing a reply method on your JadeRestService subclass. e.g. reply(msg: String); vars response: String; authHeader: String; begin response := msg; authHeader := "my-auth-details"; response := 'Authorization: ' & authHeader & CrLf & response; inheritMethod(response); end; When I do this and look in the Chrome dev tools, I see my Authorization header being returned correctly. |
You can do this already by implementing a reply method on your JadeRestService subclass. Please see the historical comments for more info.