asp.net mvc - Claim based authentication in webrequest -


how webrequest can make between these twi applications...

diagram sample code:

httpwebrequest webrqst = (httpwebrequest)webrequest.create(endpoint); webrqst.usedefaultcredentials = true; webrqst.method = "get"; webrqst.accept = "*/*"; webrqst.keepalive = true;  using (webresponse response = request.getresponse())                 {                     using (stream stream = response.getresponsestream())                         {                             using (streamreader reader = new streamreader(stream))                             {                                 console.writeline(reader.readtoend());                             }                          }                 } 

while making request looking login page. response login form in sts. thank you.

is trying do? http://www.cloudidentity.com/blog/2013/01/09/using-the-jwt-handler-for-implementing-poor-man-s-delegation-actas/


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -