Closed wetret closed 1 year ago
This issue is probably related: https://github.com/hapifhir/hapi-fhir/issues/4025
+1
+1
Should be resolved with #4347. Feel free to reopen if the issue re-occurs.
I tried running CQL on the new Docker image hapiproject/hapi:v6.4.0
. I added the new HAPI_FHIR_CR_ENABLED: "true"
environment variable to the docker-compose file. But it seems that CQL is not enabled, because I get the following response evaluating a Measure resource with http://localhost:8080/fhir/Measure/3/$evaluate-measure
:
{
"resourceType": "OperationOutcome",
"issue": [ {
"severity": "error",
"code": "not-supported",
"diagnostics": "Invalid request: The FHIR endpoint on this server does not know how to handle GET operation[Measure/3/$evaluate-measure] with parameters [[]]"
} ]
}
What am I missing?
Unfortunately I do not have the privileges to reopen the issue. Could you do that for me @JPercival ?
This seems like a problem that has been reported here: https://github.com/hapifhir/hapi-fhir-jpaserver-starter/issues/501
Likely, when you run a request to inspect the server's metadata, the CQL operations are unknown to the server and therefore none of them can be used, including $evaluate-measure.
Is there any movement on this? We are experiencing the same responses as @wetret when attempting to evaluate a measure with $evaluate-measure
. We are on hapi:v6.4.4
with cr_enabled = true
. Also successfully seeing the service log of Registering CQL Provider
.
Hi All, I am using smilecdr202308r02, I am getting the following error in postman when I submit a bundle transaction questionnaire request but get the below error:
{ "resourceType": "OperationOutcome", "issue": [ { "severity": "error", "code": "processing", "diagnostics": "HAPI-0389: Failed to call access method: java.lang.RuntimeException: java.net.ConnectException: Connection refused" } ] }
Describe the bug:
Executing CQL on a server containing more then 20 resources using a Library and a Measure resource as well as the $evalutate-measure operation leads to the error:
To Reproduce:
docker-compose
:volumes: db-hapi: name: db-hapi
networks: backend:
Store Library and Measure resources using the following Transaction-Bundle:
Evaluate the Measure resource using
http://localhost:8080/fhir/Measure/{id}/$evaluate-measure
.Expected behavior:
The Result should be a MeasureReport resource like (depending on the number of male patients on the server):
Environment: