Community
Participate
Working Groups
In some cases, developers need access to the 'low level' HTTP response object that comes back from a service request. In RBD, this could be accessed via ServiceLib.getCurrentCallbackResponse(), but in EDT, this is supported by adding an extra parameter (of type iHTTP) to the signature of the callback function ... Example callback signature: function xxxx( p1 int, p2 string) Callback signature with iHTTP: function xxxx( p1 int, p2 string, http IHttp in) Same is true for the onException function: function handleExceptions(exp AnyException, httpObj IHttp in) The IDE should support the ability to create callback functions with IHTTP as a parameter via the Quick Fix (CTRL+1) mechanism (so, there should be 2 options).