Difference between revisions of "Server Configuration"
From Hiasobi - FHIR
Brett Esler (Talk | contribs) |
|||
Line 20: | Line 20: | ||
<tr><td>LicenseKey</td><td>(null)</td><td>Allocated license key for associated ProfileName; required for access to 'live' CIS data</td></tr> | <tr><td>LicenseKey</td><td>(null)</td><td>Allocated license key for associated ProfileName; required for access to 'live' CIS data</td></tr> | ||
<tr><td>IsLive</td><td>false</td><td>Access to 'live' CIS data, default is samples only</td></tr> | <tr><td>IsLive</td><td>false</td><td>Access to 'live' CIS data, default is samples only</td></tr> | ||
+ | <tr><td>IsOpen</td><td>false</td><td>Run as an 'open' server over HTTP otherwise is 'closed' run over 'HTTPS' and require authentication</td></tr> | ||
<tr><td>Deidentify</td><td>false</td><td>Remove names and human identifiers for patients and providers </td></tr> | <tr><td>Deidentify</td><td>false</td><td>Remove names and human identifiers for patients and providers </td></tr> | ||
</table> | </table> |
Revision as of 17:16, 12 February 2016
Hiasobi server configuration support two main uses
- define how you would like the server to run
- Embedded - passed in as Oridashi.Fhir.Configuration object in Start call on Oridashi.Fhir.Host.FhirHost server
- define how the server is running
- Embedded - returned as actual configuration from Start call on Oridashi.Fhir.Host.FhirHost server; find allocated ports
- Standalone - serialized to file as reference for executable server (FHIR-HOST.exe); find allocated ports
Property | Default | Description |
---|---|---|
ProfileName | 'default' | Identifying name (is allocated for licensed users) |
NetworkServer | false | Allows network calls from other machines to this server, default is to only allow the local machine |
AcceptedCrossOrigins | (null) | Domains (string array) specifically allowed Cross Origin Resource Sharing domains for browser based calls; default (null) is any domain '*' |
BestPracticePort (DSTU1) | 8190 | Web server port for local Best Practice CIS |
MedicalDirectorPort (DSTU1) | 8191 | Web server port for local Medical Director CIS |
ZedmedPort (DSTU1) | 8192 | Web server port for local Zedmed CIS |
BestPracticePort (DSTU2-DEV) | 8290 | Web server port for local Best Practice CIS |
MedicalDirectorPort (DSTU2-DEV) | 8291 | Web server port for local Medical Director CIS |
ZedmedPort (DSTU2-DEV) | 8292 | Web server port for local Zedmed CIS |
LicenseKey | (null) | Allocated license key for associated ProfileName; required for access to 'live' CIS data |
IsLive | false | Access to 'live' CIS data, default is samples only |
IsOpen | false | Run as an 'open' server over HTTP otherwise is 'closed' run over 'HTTPS' and require authentication |
Deidentify | false | Remove names and human identifiers for patients and providers |