Difference between revisions of "Embedded Server"

From Hiasobi - FHIR
Jump to: navigation, search
(Licensed Live CIS Access)
Line 2: Line 2:
  
 
* Restriction: x86 only; restriction due to available database drivers for installed clinical systems
 
* Restriction: x86 only; restriction due to available database drivers for installed clinical systems
 +
* Pass in desired configuration - returns actual configuration
  
 
* Example instantiation:
 
* Example instantiation:

Revision as of 13:51, 21 February 2014

Hiasobi can be hosted in your application

  • Restriction: x86 only; restriction due to available database drivers for installed clinical systems
  • Pass in desired configuration - returns actual configuration
  • Example instantiation:

Default Samples CIS Access

 // default samples data server
 Oridashi.Fhir.Host.FhirHost host = new Oridashi.Fhir.Host.FhirHost();
 Oridashi.Fhir.Configuration c = host.Start();


Licensed Live CIS Access

 // licensed live data server
 Oridashi.Fhir.Host.FhirHost host = new Oridashi.Fhir.Host.FhirHost();
 Oridashi.Fhir.Configuration c = host.Start( 
   new Oridashi.Fhir.Configuration() { 
       ProfileName = "company", 
       LicenseKey="66E5AC276664C8ECABAF659FDF532", 
       IsLive = true 
   }
 );