设置HAPI FHIR IGenericClient的超时

时间:2017-01-11 15:10:17

标签: dstu2-fhir hl7-fhir hapi-fhir

我正在尝试使用以下代码运行fhir搜索;

FhirContext ctx = FhirContext.forDstu2();
ctx.getRestfulClientFactory().setConnectTimeout(2000000);
IGenericClient client = ctx.newRestfulGenericClient("http://localhost:1080/hapi-fhir-jpaserver-example/baseDstu2");

Bundle results = client.search().forResource(Basic.class).returnBundle(ca.uhn.fhir.model.dstu2.resource.Bundle.class).execute();

但是当它运行时,它总是抛出异常'FhirClientConnectionException',这是由异常'SocketTimeoutException'引起的。我是假设这是服务器超时,而不是我的本地连接,因为我将本地设置为2000000?

如何修理东西?我正在使用HAPI开箱即用的配置,并且它会在大约10-15秒内搜索相对少量的资源。

1 个答案:

答案 0 :(得分:0)

改为尝试setSocketTimeout()

像这样:

FhirContext ctx = FhirContext.forDstu2();
ctx.getRestfulClientFactory().setSocketTimeout(200 * 1000);
IGenericClient client = ctx.newRestfulGenericClient("http://localhost:1080/hapi-fhir-jpaserver-example/baseDstu2");

Bundle results = client.search().forResource(Basic.class).returnBundle(ca.uhn.fhir.model.dstu2.resource.Bundle.class).execute();

v3示例:

serverBase =  "http://hapi.fhir.org/baseDstu3";
ctx = FhirContext.forDstu3();
ctx.getRestfulClientFactory().setSocketTimeout(200 * 1000);

// Create the client
client = ctx.newRestfulGenericClient(serverBase);

我在这里找到了答案阅读源代码:https://github.com/jamesagnew/hapi-fhir/blob/master/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/dstu3/ResourceProviderDstu3Test.java#L1710