Just tester tweaks

This commit is contained in:
jamesagnew 2016-04-08 07:05:05 -04:00
parent 5cd13bc73f
commit 364f11ad8f
1 changed files with 20 additions and 14 deletions

View File

@ -15,6 +15,8 @@ import ca.uhn.fhir.rest.client.IGenericClient;
public class UhnFhirTestApp {
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(UhnFhirTestApp.class);
public static void main(String[] args) throws Exception {
int myPort = 8888;
@ -42,7 +44,12 @@ public class UhnFhirTestApp {
server.setHandler(root);
try {
server.start();
} catch (Exception e) {
ourLog.error("Failure during startup", e);
}
server.stop();
// base = "http://fhir.healthintersections.com.au/open";
// base = "http://spark.furore.com/fhir";
@ -98,5 +105,4 @@ public class UhnFhirTestApp {
}
}
}