FHIR Chat · reference server availability for connectathon · hapi

Stream: hapi

Topic: reference server availability for connectathon


view this post on Zulip Virginia Lorenzi (Sep 13 2021 at 19:09):

Hey there - Getting an error when doing a search on the reference server - any ideas? Need it for connectathon.
Warning!
Error: HTTP 500 Server Error: Failed to call access method: org.springframework.dao.InvalidDataAccessApiUsageException: Timer already cancelled.; nested exception is java.lang.IllegalStateException: Timer already cancelled.

view this post on Zulip Jens Villadsen (Sep 13 2021 at 19:12):

What are you trying to do?

view this post on Zulip Virginia Lorenzi (Sep 13 2021 at 19:14):

A search for a patient using HAPI front end. HAPI Front end showed this:
// Create a client (only needed once)
FhirContext ctx = new FhirContext();
IGenericClient client = ctx.newRestfulGenericClient("http://hapi.fhir.org/baseR4");

// Invoke the client
Bundle bundle = client.search().forResource(Patient.class)
.where(new StringClientParam("name").matches().value("Bob"))
.prettyPrint()
.execute();

Also tried to access via clinfhir (conformance server) and got error.

view this post on Zulip Jens Villadsen (Sep 13 2021 at 19:26):

you probably need to get the server rebooted. Its the same error as https://github.com/hapifhir/hapi-fhir/issues/2247

view this post on Zulip Virginia Lorenzi (Sep 13 2021 at 19:28):

How can I get the server rebooted? Who do I ask?

view this post on Zulip Jens Villadsen (Sep 13 2021 at 19:32):

someone on the SmileCDR team

view this post on Zulip Virginia Lorenzi (Sep 13 2021 at 19:35):

I posted to the google groups thanks for your help :)


Last updated: Apr 12 2022 at 19:14 UTC