The basic requirement I have is to call a webservice that uses SAML token. As part of this the first step is to get the token from IdentityProvider.
This is what I have:
- STS endpoint [ it's https url]
- A certificate .pfx file
Now I am not sure where to begin developing a client in ASP.NET (4.5) to connect to STS and get the token.
Any pointers to get me started?
Note: I tried making an HttpWebRequest passing in the certificate but get some connection error. I am not even sure if that is the way. Also reading about WebClient and HttpClient classes.