Emulate Store Permission Response - dcm4che/dcm4chee-arc-light GitHub Wiki
If no external service has been configured to authorize objects, archive checks if it has to emulate any store permission service response. Objects are only stored if the configured store permission service response matches with regular expression configured for store permission service response pattern.
- Go to
Menu->Configuration
, then onDevices
page,Edit
thedcm4chee-arc
device. Go toExtensions
and
Edit extension
ofDevice Extension
. Again go to itsExtensions
andEdit extension
ofArchive Device
. - Enter values in fields
Store Permission Service Response
,Store Permission Service Response Pattern
,Store Permission Cache Stale Timeout
,Store Permission Cache Size
,Store Permission Service Error Comment Pattern
andStore Permission Service Error Code Pattern
as required by one's application needs andSave
.
One may either
-
create a LDIF file (e.g.):
version: 1 dn: dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionServiceResponse dcmStorePermissionServiceResponse: patientID={00100020},patientName={00100010},errorCode=0110H,errorComment=errorMessage - dn: dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionServiceResponsePattern dcmStorePermissionServiceResponsePattern: (?<=patientName=)[^null].*?(?=,) - dn: dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionServiceErrorCodePattern dcmStorePermissionServiceErrorCodePattern: errorCode\s*=\s*(\p{XDigit}{4}) - dn: dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionServiceErrorCommentPattern dcmStorePermissionServiceErrorCommentPattern: errorComment\s*=\s*(.*) - dn: dicomAETitle=DCM4CHEE,dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionCacheStaleTimeout dcmStorePermissionCacheStaleTimeout: PT5M - dn: dicomAETitle=DCM4CHEE,dicomDeviceName=dcm4chee-arc,cn=Devices,cn=DICOM Configuration,dc=dcm4che,dc=org changetype: modify add: dcmStorePermissionCacheSize dcmStorePermissionCacheSize: 10 -
and import it to the LDAP Server by using the ldapmodify command line utility.
-
or use the Add Attribute... and Add Value... function of Apache Directory Studio to add first 5 attributes on Device Level (e.g.:
dicomDeviceName=dcm4chee-arc
) or on Application Entity Level (e.g:dicomAETitle=DCM4CHEE
) of the Archive Configuration. Note that the last 2 attributes can be added only on Device Level.
One may refer to Archive Device to understand the description of attributes.
Refer ISO-8601 Duration format for more know-how on Durations.
Go to the Control tab on Configuration page in archive UI and reload the configuration.