Skip to content
New issue

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

Using public FHIR server LOINC e SNOMED-CT #4236

Open
APicchio opened this issue Sep 1, 2023 · 0 comments
Open

Using public FHIR server LOINC e SNOMED-CT #4236

APicchio opened this issue Sep 1, 2023 · 0 comments

Comments

@APicchio
Copy link

APicchio commented Sep 1, 2023

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant