首页 > 解决方案 > Asymmetrik FHIR 服务器核心支持 FHIRCast?

问题描述

我已经为特定“捆绑包”的更新建立了“订阅”。由于某种原因,网络钩子没有触发。Asymmetrik 的 FHIR 服务器是否支持 FHIRCast?这是我的“订阅”json 有效负载:

{
  "resourceType" : "Subscription",
  "status" : "active",
  "contact": [
    {
      "relationship": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/v2-0131",
              "code": "N"
            }
          ]
        }
      ],
      "name": {
        "family": "du Marché",
        "_family": {
          "extension": [
            {
              "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
              "valueString": "VV"
            }
          ]
        },
        "given": [
          "Bénédicte"
        ]
      },
      "telecom": [
        {
          "system": "phone",
          "value": "+33 (237) 998327"
        }
      ],
      "address": {
        "use": "home",
        "type": "both",
        "line": [
          "534 Erewhon St"
        ],
        "city": "PleasantVille",
        "district": "Rainbow",
        "state": "Vic",
        "postalCode": "3999",
        "period": {
          "start": "1974-12-25"
        }
      },
      "gender": "female",
      "period": {
        "start": "2012"
      }
    }
  ],
  "end" : "2021-02-07T13:28:17.239+02:00", 
  "reason" : "FHIR web hook", 
  "criteria" : "Bundle/af03af555d9eb78229619cfeac8767409fd22f72",
  "error" : "error note", 
  "channel" : { 
    "type" : "rest-hook", 
    "endpoint" : "https://localhost:5001/api/FHIRNotification", 
    "payload" : "application/fhir+json", 
    "header" : [""] 
  }
}

也许我错过了添加订阅网络挂钩功能的实施步骤?

谢谢您的帮助!

托德

标签: node-fhir-server-core

解决方案


目前我们不支持开箱即用的 FHIRCast,因为这是一个外观服务器。要使 FHIRCast 正常工作,您可能还需要在数据库上设置触发器或其他设置。

我个人对 FHIRCast 不是很熟悉,但似乎也有与 FHIR 服务器分开的集线器的一些连接。


推荐阅读