获取 MS Health Vault 的 XML 格式
我需要找出从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你想要类似于下面的请求。
该请求下载重量和重量。来自服务器的心率数据。
其中 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.
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