0

我正在尝试将单个资源上传到 Grahame 的服务器:http ://hl7connect.healthintersections.com.au/open/

但我不确定该怎么做。我一直在尝试这样的事情:

<Patient xmlns="http://hl7.org/fhir">
 <identifier>400</identifier>
 <name>Adam Everyman</name>
 <telecom>555555</telecom>
 <gender>M</gender>
 <address>Address</address>
</Patient>

但我不断收到错误消息,例如:

error - resource is nil

有谁知道这应该如何格式化,以便 Grahame 的服务器接受上传?

最好我宁愿使用 JSON 而不是 XML,但如果我能得到任何一个工作我会很高兴。

4

1 回答 1

1

首先,从现有示例之一开始,例如:http: //hl7.org/implement/standards/fhir/patient-example.xml.html

您应该可以简单地将此 xml 发布到http://fhir.healthintersections.com.au/open/Patient,但您必须正确获取内容类型:application/xml+fhir

于 2013-12-30T12:36:49.437 回答