We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I’m trying to use public FHIR servers: LOINC FHIR server and SNOMED-CT FHIR server but I have an error when I use LOINC FHIR server.
I configurated these servers in the file "fhir-server-config.json" in the following way:
"term": { "remoteTermServiceProviders": [ { "__comment": "Configuration for public LOINC endpoint", "enabled": true, "base": "https://fhir.loinc.org", "basicAuth": { "username": "XXXX", "password": "XXX" }, "supports": [{ "system": "http://loinc.org" }] }, { "__comment": "Configuration for public SNOMED-CT endpoint", "enabled": true, "base": "https://snowstorm-fhir.snomedtools.org/fhir", "supports": [{ "system": "http://snomed.info/sct" }] }] },
The request is: https://192.168.99.99:9443/fhir-server/api/v4/CodeSystem/$lookup?code=718-7&system=http://loinc.org
The response is: "severity": "fatal", "code": "not-supported", "details": { "text": "CodeSystem with url 'http://loinc.org' is not available" }
I tried to call directly the public FHIR server using the same parameters and it’s work. https://fhir.loinc.org/CodeSystem/$lookup?code=718-7&system=http://loinc.org
Maybe I miss some steps or configurations? Thanks in advance, Alex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I’m trying to use public FHIR servers: LOINC FHIR server and SNOMED-CT FHIR server but I have an error when I use LOINC FHIR server.
I configurated these servers in the file "fhir-server-config.json" in the following way:
"term": {
"remoteTermServiceProviders": [
{
"__comment": "Configuration for public LOINC endpoint",
"enabled": true,
"base": "https://fhir.loinc.org",
"basicAuth": {
"username": "XXXX",
"password": "XXX"
},
"supports": [{
"system": "http://loinc.org"
}]
},
{
"__comment": "Configuration for public SNOMED-CT endpoint",
"enabled": true,
"base": "https://snowstorm-fhir.snomedtools.org/fhir",
"supports": [{
"system": "http://snomed.info/sct"
}]
}]
},
The request is:
https://192.168.99.99:9443/fhir-server/api/v4/CodeSystem/$lookup?code=718-7&system=http://loinc.org
The response is:
"severity": "fatal",
"code": "not-supported",
"details": {
"text": "CodeSystem with url 'http://loinc.org' is not available"
}
I tried to call directly the public FHIR server using the same parameters and it’s work.
https://fhir.loinc.org/CodeSystem/$lookup?code=718-7&system=http://loinc.org
Maybe I miss some steps or configurations?
Thanks in advance,
Alex
The text was updated successfully, but these errors were encountered: