Stream: implementers
Topic: test.fhir.org/r3 is down
Igor Sirkovich (Sep 07 2017 at 18:46):
Hi @Grahame Grieve, when I try to open "http://test.fhir.org/r3", I get an error "Access violation at address 000000000140A627 in module 'FHIRServer.exe'. Read of address 0000000000000020"
Douglas DeShazo (Sep 07 2017 at 19:22):
I was having issues as well but now access is just fine.
Rob Hausam (Sep 07 2017 at 19:27):
Same here - and it is now working again.
Igor Sirkovich (Sep 07 2017 at 20:48):
Great, now it works for me too
Grahame Grieve (Sep 08 2017 at 03:02):
I fixed it. a few weeks ago I changed some thread mgmt code to get the server running on OSX, and I screwed up somewhere. Now I have to hunt it down
Joel Schneider (Sep 14 2017 at 17:17):
from a http://test.fhir.org/r3/CodeSystem/$lookup attempt, a few minutes ago:
{ "resourceType": "OperationOutcome", "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Access violation at address 000000000155B912 in module 'FHIRServer.exe'. Read of address 0000000000000070</p></div>" }, "issue": [ { "severity": "error", "details": { "text": "Access violation at address 000000000155B912 in module 'FHIRServer.exe'. Read of address 0000000000000070" }, "diagnostics": "(000000000115A912){FHIRServer.exe} [000000000155B912] FHIROperations.TFHIRLookupOpRequest.load + $102\r\n(00000000000425EB){FHIRServer.exe} [00000000004435EB] System.SysUtils.GetExceptionObject + $EB\r\n(0000000000208637){FHIRServer.exe} [0000000000609637] JclHookExcept.DoExceptFilter + $E7\r\n(0000000000208905){FHIRServer.exe} [0000000000609905] JclHookExcept.HookedExceptObjProc + $15\r\n(000000000000F8C9){FHIRServer.exe} [00000000004108C9] System.@DelphiExceptionHandler + $289\r\n(00000000000A9B6D){ntdll.dll } [00007FF8ED82AB6D] Unknown function at __chkstk + $11D\r\n(0000000000048933){ntdll.dll } [00007FF8ED7C9933] Unknown function at RtlImageNtHeaderEx + $483\r\n(00000000000A8C8A){ntdll.dll } [00007FF8ED829C8A] KiUserExceptionDispatcher + $3A\r\n(000000000115A912){FHIRServer.exe} [000000000155B912] FHIROperations.TFHIRLookupOpRequest.load + $102\r\n(00000000018930DC){FHIRServer.exe} [0000000001C940DC] TerminologyOperations.TFhirLookupCodeSystemOperation.Execute + $1FC\r\n(00000000016AA4F7){FHIRServer.exe} [0000000001AAB4F7] FHIRStorageService.TFHIROperationEngine.ExecuteOperation + $97\r\n(00000000018E000B){FHIRServer.exe} [0000000001CE100B] FHIRNativeStorage.TFHIRNativeOperationEngine.ExecuteOperation + $6B\r\n(00000000016A386A){FHIRServer.exe} [0000000001AA486A] FHIRStorageService.TFHIROperationEngine.Execute + $36A\r\n(00000000017ABDDB){FHIRServer.exe} [0000000001BACDDB] FHIRRestServer.TFhirWebServer.ProcessRequest + $12B\r\n(00000000017A0B55){FHIRServer.exe} [0000000001BA1B55] FHIRRestServer.TFhirWebServer.HandleRequest + $1165\r\n(000000000179CA44){FHIRServer.exe} [0000000001B9DA44] FHIRRestServer.TFhirWebServer.PlainRequest + $9C4\r\n(00000000011CE429){FHIRServer.exe} [00000000015CF429] IdCustomHTTPServer.TIdCustomHTTPServer.DoCommandGet + $49\r\n(00000000011CFDA5){FHIRServer.exe} [00000000015D0DA5] IdCustomHTTPServer.TIdCustomHTTPServer.DoExecute + $AC5\r\n(0000000000302E29){FHIRServer.exe} [0000000000703E29] IdContext.TIdContext.Run + $29\r\n(00000000002E70BA){FHIRServer.exe} [00000000006E80BA] IdTask.TIdTask.DoRun + $1A\r\n(00000000002EA68B){FHIRServer.exe} [00000000006EB68B] IdThread.TIdThreadWithTask.Run + $1B\r\n(00000000002E99AA){FHIRServer.exe} [00000000006EA9AA] IdThread.TIdThread.Execute + $EA\r\n(000000000011DFA3){FHIRServer.exe} [000000000051EFA3] System.Classes.ThreadProc + $43\r\n(0000000000010D0B){FHIRServer.exe} [0000000000411D0B] System.ThreadWrapper + $3B\r\n(0000000000007364){KERNEL32.DLL} [00007FF8ECFE8364] BaseThreadInitThunk + $14\r\n(0000000000066091){ntdll.dll } [00007FF8ED7E7091] RtlUserThreadStart + $21\r\n" } ] }
Jose Costa Teixeira (Sep 14 2017 at 17:24):
can you tell me the full url you are using? to see if i can find the same issue.
Joel Schneider (Sep 14 2017 at 19:24):
This is what I posted to http://test.fhir.org/r3/CodeSystem/$lookup ...
HTTP headers:
Content-Type: application/fhir+json Accept: application/fhir+json
Body:
{ "resourceType" : "Parameters", "parameter" : [ { "name" : "code", "valueString" : "13303-3" }, { "name" : "system", "valueUri" : "http://loinc.org" } ] }
Jose Costa Teixeira (Sep 14 2017 at 19:43):
ah you are not looking up a specific code, you are looking up any/all codes?
Joel Schneider (Sep 14 2017 at 20:32):
I'm looking up a specific code: LOINC code 13303-3
Jose Costa Teixeira (Sep 14 2017 at 20:46):
it seems to work
http://test.fhir.org/r3/CodeSystem/$lookup?system=http://loinc.org&code=13303-3
Joel Schneider (Sep 14 2017 at 21:04):
GET works for me too, but I'm still getting an error when using a POST request. Maybe just an issue with handling a POST.
Grahame Grieve (Sep 14 2017 at 21:12):
yes bug in post on my server
Last updated: Apr 12 2022 at 19:14 UTC