Hi, i’m trying to configure to access orthanc server using HOROS without declaring HOROS IP,AET and port. i need to do this as i’m using dynamic IP for my HOROS, the IP is keep changing. I’m trying to deactivate DICOM check but failed.
I’m using osimis/orthanc docker to deploy orthanc server.
this is my environment for orthanc
environment:
ORTHANC__NAME: “TEST”
ORTHANC__DICOM_SERVER_ENABLED: “true”
ORTHANC__DICOM_MODALITIES_IN_DATABASE: “true”
ORTHANC__ORTHANC_PEERS_IN_DATABASE: “true”
DICOM_WEB_PLUGIN_ENABLED: “true”
OSIMIS_WEB_VIEWER1_PLUGIN_ENABLED: “true”
PYTHON_PLUGIN_ENABLED: “true”
TRANSFERS_PLUGIN_ENABLED: “true”
WORKLISTS_PLUGIN_ENABLED: “true”
ORTHANC__REGISTERED_USERS: |
{“ipadi”: “ipadi”}
ORTHANC__DICOM_WEB__ENABLE: “true”
ORTHANC__DICOM_WEB__ROOT: “/dicom-web/”
ORTHANC__DICOM_WEB__ENABLEWADO: “true”
ORTHANC__DICOM_WEB__WADOROOT: “/wado”
ORTHANC__DICOM_WEB__SSL: “true”
ORTHANC__DICOM_WEB__STUDIESMETADATA: “MainDicomTags”
ORTHANC__DICOM_WEB__SERIESMETADATA: “Full”
ORTHANC__DICOM_AET_CHECK_ENABLE: “false”
ORTHANC__DICOM_ALWAYS_ALLOW_ECHO_ENABLE: “true”
ORTHANC__LISTENER_LISTEN_ALL_ADDR: “true”
ORTHANC__DICOM_ALWAYS_ALLOW_FIND: “true”
ORTHANC__DICOM_ALWAYS_ALLOW_GET_ENABLE: “true”
ORTHANC__ALLOW_MOVE: “true”
By using this environment, i’m able to see list of cases in orthanc server, but when i click download,
This message will appear: Peer aborted Association (or never connected)
This are the error message from orthanc
rthanc | W1020 17:23:22.531791 main.cpp:445] Unable to check DICOM authorization for AET ORTHANC on IP 1.1.1.1: 21 modalites found with this AET in configuration option “DicomModalities”, but none of them matches the IP
orthanc | W1020 17:23:22.531856 CommandDispatcher.cpp:817] Rejected Move request from remote DICOM modality with AET “ORTHANC” and hostname “1.1.1.1”
I need help to deactivate DicomModalities check.
Thank you in advance