Hi,
I need to implement single sign on concept with Healthvault.
Below is the requirement -
i need to create an external portal page say "login.aspx" where in i will provide my healthvault login details.Post Login , a Main Page is displayed which will have a link to navigate to Healthvault site. Now once i login through my portal,it should
not ask me to login to healthvault site again i.e Single-Sign-On
Below are things i tried -
I created a test account with Healthvault, fetched its Person Id and used the below class for authentication.
// Establish an offline connection with only the person ID parameter
OfflineWebApplicationConnection offlineConn = new OfflineWebApplicationConnection(personId);
offlineConn.Authenticate();
The above code does not seem to give any error .However when i navigate to the following link through the url
https://account.healthvault-ppe.com. It again asks me the login credentials.
I am not clear if it is correct approach i followed or is there any other any way to connect to Healthvault ?
Any help would be appreciated.
Thanks,