-
Notifications
You must be signed in to change notification settings - Fork 28
Description
I am trying to use this dicomweb-server to render in OHIF viewer.
I tried this setup in Window 10.
I have used the below configuration
dicomWeb: [{
name: 'dicomweb_server',
wadoUriRoot: 'http://localhost:8084',
qidoRoot: 'http://localhost:8084',
wadoRoot: 'http://localhost:8084',
qidoSupportsIncludeField: true,
imageRendering: 'wadors',
thumbnailRendering: 'wadors',
enableStudyLazyLoad: true,
supportsFuzzyMatching: true,
requestOptions: {
"requestFromBrowser": true
}
}, ],
I am facing issue to fetch wadors frame API
/studies/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.3.0/series/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.4.0/instances/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.2.0/frames/1
Error message:
{"statusCode":404,"error":"Not Found","message":"Frame 1 was not found. Error: Empty buffer"}
Other API's like fetch studies, series, instance are working fine.
I can able to download the instance stream as dcm file from the below URL
/studies/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.3.0/series/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.4.0/instances/1.3.6.1.4.1.5962.99.1.3975984249.1189277055.1386955486329.2.0
Please let me know, if I am missing anything in the configuration.
Thanks in advance.