获取 MS Health Vault 的 XML 格式

发布于 2024-11-26 13:17:55 字数 199 浏览 0 评论 0原文

我需要找出从 MS Health Vault 获取一个文件中的所有记录的方法,其中包括所有药物、过敏、问题、状况、保险等。因此,换句话说,我需要找出使用 MS HealthValut 对象模型或对象方法以及其中包含所有数据来获取一个 XML 文件(即 CCR)的方法。目前,在输入患者 ID 和记录 ID 时,我只获得一个属性。

如果有人能在这方面帮助我,那就太好了。

I need to figure out the way to get all the records in a one file from MS Health Vault which include all medication, allergy, problem, conditions, insurance and so on. So in other words I need to find out the way to get one XML file (i.e. CCR) using MS HealthValut object model or object methods with all the data in it. Currently while entering a patientID and recordID I am getting only one attribute.

It would be great if someone could help me out in this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜未央樱花落 2024-12-03 13:17:55

我猜你想要类似于下面的请求。
该请求下载重量和重量。来自服务器的心率数据。

"<info><group max=\"100\"><filter>" + 
        "<type-id>" +Weight.TYPE + "</type-id>" +
        "<type-id>" +HeartRate.TYPE + "</type-id>" +
        "</filter><format><section>core</section>" +
        "<xml/></format></group></info>";

其中 Weight.TYPE = "3d34d87e-7fc1-4153-800f-f56592cb0d17"; &
HeartRate.TYPE = "b81eb4a6-6eac-4292-ae93-3872d6870994";

您可以根据需要添加更多类型。
响应到达后,您可以将其转储到文件(您需要从 InputStream 转换为文件)

希望这有帮助

I guess you want similar to below request.
This request downloads the Weight & Heart Rate data from the server.

"<info><group max=\"100\"><filter>" + 
        "<type-id>" +Weight.TYPE + "</type-id>" +
        "<type-id>" +HeartRate.TYPE + "</type-id>" +
        "</filter><format><section>core</section>" +
        "<xml/></format></group></info>";

Where Weight.TYPE = "3d34d87e-7fc1-4153-800f-f56592cb0d17"; &
HeartRate.TYPE = "b81eb4a6-6eac-4292-ae93-3872d6870994";

You can add more TYPEs as you require.
Once the response arrives, you can dump it to file (You need to convert from InputStream to File)

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文