I installed orthanc on the server locale and defined the dicom port as 4242.
I have defined modalities to send data to Orthanc on the server from my local through dicom c-store.
“servermodality” : {
“AET” : “ORTHANC”,
“Port”: 443,
“Host” : “https://myserver.com.tr/dicom”
}
I redirect the “https://myserver.com.tr/dicom” to “localhost:4242” with IIS on the server.
And I am getting an error like this.
DicomAssociation - connecting to AET “ORTHANC”: Illegal service parameter: https://myserver.com.tr/dicom:443
How can I send dicom to Orthanc on server using dicom c-store from my local?
Can you help me?
Hello,
Sorry, but despite your explanations, I’m not able to understand your setup.
Could you post a quick diagram with the different items ?
I want to send resources to remote modalities (through DICOM C-Store).
I defined DicomModalities by following the instructions in this link.
https://book.orthanc-server.com/users/rest.html#sending-resources-to-remote-modalities-through-dicom-c-store
Configuration file of ORTHANCA :
“DicomModalities” : {
“sample” : {
“AET” : “ORTHANCB”,
“Port”: 443,
“Host” : “https://example.com.tr/dicom”
}
I redirect the Host to the dicom port of ORTHANCB using IIS on the server by following the instructions in this link.
https://book.orthanc-server.com/faq/iis.html
Finally, I get the error in the image when I want to send a dicom.
6 Ocak 2023 Cuma tarihinde saat 00:53:09 UTC+3 itibarıyla b…@orthanc.team şunları yazdı:
Hi,
Dicom C-Store is using TCP to transfer data. You are trying to go through an HTTP server (IIS). That won’t work.
If you wish to send data through HTTPS, you should use DicomWEB.
HTH,
Alain