You are not logged in.
Is possible to extract method input parameters from ServiceContext on service method call level?
I try ServiceContext.Request.Parameters and ServiceContext.Request.Call.InBody but I get binary or incomplete data.
Offline
Call.InBody has been escaped in place so it is not valid JSON any more.
If you expect to have access to the input body, try https://synopse.info/files/html/Synopse … l#TITL_197
But a method-based service is perhaps the best option - and you can mix method-based services and interface-based services on the very same TSQLRestServer instance.
Offline