Hello,
The code in my Resource Handler takes an id for a table and a value for a different column in the table as IN parameters.
It does an Update of the table correctly. It then runs code to check whether the update has created duplicate rows and if so sets a columns in all the duplicate records to show this.
That works as intended, but I would like to also be able to pass a value as an OUT parameter, so I could use it in the webservice calling program. Is this possible and are there any examples so I could get an idea of where I'm going wrong.
I realise that I could create another GET resource handler to achieve this but would prefer to do it with one call if possible
Thanks,
Chris