Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from Microsoft/microsoft/develop
Browse files Browse the repository at this point in the history
Merged changes for HealthVault S61. Ported hvclientsample to Git
  • Loading branch information
jhutchings1 committed Mar 13, 2017
2 parents c5f4ff1 + 80fb054 commit 6c51195
Show file tree
Hide file tree
Showing 46 changed files with 1,829 additions and 61 deletions.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -21,6 +21,13 @@ HealthVault offers SDKs for many platforms.
* [Python](https://github.com/orcasgit/python-healthvault) - An open-source library for developing HealthVault-enabled applications in Python.
* [Ruby](http://healthvaultrubylib.codeplex.com/) - An open-source library for developing HealthVault-enabled applications in Ruby.

## Samples
* .NET
* **HealthVault - Your Web Service - Your Client apps** - The HealthVault Proxy Service exposes three primary service-interfaces for client apps. These interfaces correspond to HealthVault feature areas. Specifically, Patient Connect, Get/Put Things, and DOPU. Learn more about HealthVault solution architectures at the Health Team Blog.
* **HealthVault Meaningful Use Reporting** - This sample serves as a demonstration of HealthVault capabilities in support of Meaningful Use Stage 2 (2014 Edition) patient engagement objectives. Refer to Meaningful Use with HealthVault for an overview and technical description of the HealthVault capabilities that support Meaningful Use 2.
* **HealthVaultProviderManagementPortal** - This sample demonstrates how a provider could invite patients and manage ActionPlans.
* **HVClientSample** - This sample demonstrates how to use SODA authentication to access data on HealthVault.

## Registering your applications
All applications must be registered with the [HealthVault Application Configuration Center](https://go.microsoft.com/fwlink/?linkid=838954) before they can connect to the service. During registration, the ACC will request that you upload an appropriate certificate which will be used subsequently to secure communications between your app and the service. For more information on how to obtain an appropriate certificate, please see [MSDN](https://msdn.microsoft.com/en-us/healthvault/dn781357).

Expand Down
Expand Up @@ -44,21 +44,23 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Health, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.1.0.4\lib\net40\Microsoft.Health.dll</HintPath>
<Private>True</Private>
<Reference Include="Microsoft.Health, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Health.ItemTypes, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.1.0.4\lib\net40\Microsoft.Health.ItemTypes.dll</HintPath>
<Private>True</Private>
<Reference Include="Microsoft.Health.Directory, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.Directory.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Health.ItemTypes.Old, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.1.0.4\lib\net40\Microsoft.Health.ItemTypes.Old.dll</HintPath>
<Private>True</Private>
<Reference Include="Microsoft.Health.ItemTypes, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.ItemTypes.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Health.Web, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.1.0.4\lib\net40\Microsoft.Health.Web.dll</HintPath>
<Private>True</Private>
<Reference Include="Microsoft.Health.ItemTypes.Old, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.ItemTypes.Old.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Health.Web, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.Web.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Health.Web.Mvc, Version=2.60.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\HealthVault.NET.2.60.20205.1\lib\net45\Microsoft.Health.Web.Mvc.dll</HintPath>
</Reference>
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Web.DynamicData" />
Expand Down Expand Up @@ -122,9 +124,6 @@
<Content Include="App_Data\HealthVaultCrmProxy.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="App_Data\HealthVaultProxy5.pfx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="packages.config" />
<None Include="Properties\PublishProfiles\HealthVaultCRMdemo - FTP.pubxml" />
<None Include="Properties\PublishProfiles\HealthVaultCRMdemo - Web Deploy.pubxml" />
Expand Down
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="HealthVault.NET" version="2.1.0.4" targetFramework="net45" />
<package id="HealthVault.NET" version="2.60.20205.1" targetFramework="net45" />
</packages>
@@ -1,13 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.26020.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthVaultProviderManagementPortal", "HealthVaultProviderManagementPortal\HealthVaultProviderManagementPortal.csproj", "{35B616C2-F334-4B37-A554-5CC4CDF9390F}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Health.Platform.Entities.V3", "Microsoft.Health.Platform.Entities.V3\Microsoft.Health.Platform.Entities.V3.csproj", "{E5B30C57-260A-4C08-B289-711DF646ADC9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4F1D893B-F763-4A54-A561-2A4DFB5FB4C8}"
ProjectSection(SolutionItems) = preProject
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -18,10 +22,6 @@ Global
{35B616C2-F334-4B37-A554-5CC4CDF9390F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{35B616C2-F334-4B37-A554-5CC4CDF9390F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{35B616C2-F334-4B37-A554-5CC4CDF9390F}.Release|Any CPU.Build.0 = Release|Any CPU
{3584DABB-F276-43BA-BEB8-52F271E1862B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3584DABB-F276-43BA-BEB8-52F271E1862B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3584DABB-F276-43BA-BEB8-52F271E1862B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3584DABB-F276-43BA-BEB8-52F271E1862B}.Release|Any CPU.Build.0 = Release|Any CPU
{E5B30C57-260A-4C08-B289-711DF646ADC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E5B30C57-260A-4C08-B289-711DF646ADC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E5B30C57-260A-4C08-B289-711DF646ADC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down

0 comments on commit 6c51195

Please sign in to comment.