Hi there,
I have some questions about Orthanc that how to download the latest source code from the mercurial repository, what are the tools required to run Orthanc on my local pc (like Visual Studio, VS Code, etc.), what are the servers where I can host or deploy Orthanc?
And one more thing that I am testing Orthanc as my PACS server. I have downloaded and installed it using Orthanc executable file. but the problem is that I am not able to connect it with my OHIF viewer. I am successfully getting a list of studies in OHIF viewer but after clicking on any study it shows errors in console like this attached picture. Please guide me on that. I will be very thankful if someone can help here.
Hello,
As explained in the Orthanc Book: “The OHIF viewer can connect to Orthanc using the DICOMweb plugin of Orthanc, but is a fully separate project. As a consequence, questions regarding OHIF must be asked on the dedicated discussion group or on the dedicated bug tracker. The core developers of Orthanc will happily fix the DICOMweb plugin, but it is necessary for the reporter to identify the discrepancy wrt. DICOMweb standard by providing a minimal working example.”
https://book.orthanc-server.com/users/support.html#discussing-a-minimal-working-example
HTH,
Sébastien-
Sir, I have configured a DICOMWeb Plugin of Orthanc and I am using this below configuration settings in default.js file of OHIF for connecting my OHIF viewer with the Orthanc DICOMWeb server.
window.config = {
// default: ‘/’
routerBasename: ‘/’,
extensions: [],
showStudyList: true,
filterQueryParam: false,
disableServersCache: false,
servers: {
dicomWeb: [
{
name: ‘Orthanc’,
wadoUriRoot: ‘https://localhost:443/wado’,
qidoRoot: ‘https://localhost:443/dicom-web’,
wadoRoot: ‘https://localhost:443/dicom-web’,
qidoSupportsIncludeField: false,
imageRendering: ‘wadors’,
thumbnailRendering: ‘wadors’,
enableStudyLazyLoad: true,
supportsFuzzyMatching: true,
},
],
}
my Orthanc server is actually running on localhost:8042 but using proxy reverse I have configured it to run behind the IIS server https://localhost:443
As written in my first answer, get in touch with the OHIF team.
Hello,
You must keep the orthanc server and the ohif viewer under the same origin to avoid CORS errors.
I don’t know very much about IIS server but under nginx, a valid configuration look like this:
So, all requests fired to http://localhost/ohif-viewer are routed to ohif-viewer (is a docker container, but can be a local process also) and request fired to http://localhost/dicom-web are routed to orthanc docker container.
As you can see, both have the same origin (http://localhost) to avoid the CORS errors.
Bon courage
Pe marți, 7 septembrie 2021, la 09:16:54 UTC+3, farooqahma...@gmail.com a scris:
okay, I am going to try this configuration then I will let you know.
Thanks
Hello, Sir, I think I have the same configuration environment with you, but now I’m struggling with the problem that orthanc’s DicomWeb plug-in cannot be loaded at all. I see the information you sent, you should directly plug in the problem of connection between OHIF and OrthancdicomWeb. But I would like to ask you about the problem that dicomWeb cannot be loaded
在2021年9月7日星期二 UTC+8 下午2:43:47farooqahma...@gmail.com 写道: