HI i have some problem with autorouting lua script.
i created a script auto_routing.lua into /etc/orthanc/ like this:
function OnStoredInstance(instanceID, tags, metadata)
print(‘onStoredInstance Function ha been called Routing to ISP’)
local patientName = string.lower(tags[‘PatientName’])
print(patientName)
SendToModality(instanceId, ‘ISP’)
print(‘SendtoModality has been Executed’)
end
and i added a DicomMOdalities:
“ISP”: [“ISP”, “192.168.0.100”, 104]
Orthanc run the lua script with this error:
Cannot execute a Lua command: [string “line”]:37: Cannot send a nonexistent resource
could you help me?
Thanks
Andrea N