Mercurial > hg > orthanc
view Resources/Samples/Lua/CallWebService.lua @ 3570:f05887b1d1bf Tomas-Zubiri/replaced-broken-url-with-url-from-waybac-1573762425576
Replaced broken url with url from wayback archive
author | Tomas Zubiri <me@tomaszubiri.com> |
---|---|
date | Thu, 14 Nov 2019 20:13:59 +0000 |
parents | 11f8d72f366f |
children |
line wrap: on
line source
-- This sample shows how to call a remote Web service whenever an -- instance is received by Orthanc. For this sample to work, you have -- to start the "CallWebService.js" script next to this file using -- NodeJs. -- Download and install the JSON module for Lua by Jeffrey Friedl -- http://regex.info/blog/lua/json -- NOTE : Replace "load" by "loadstring" for Lua <= 5.1 JSON = (load(HttpGet('http://regex.info/code/JSON.lua'))) () SetHttpCredentials('alice', 'alicePassword') function OnStoredInstance(instanceId, tags, metadata) -- Build the POST body local info = {} info['InstanceID'] = instanceId info['PatientName'] = tags['PatientName'] info['PatientID'] = tags['PatientID'] -- Send the POST request local answer = HttpPost('http://127.0.0.1:8000/', JSON:encode(info)) -- The answer equals "ERROR" in case of an error print('Web service called, answer received: ' .. answer) end