Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to use jira Rest API to fetch some content in an excel sheet.The problem is that the server is siteminder enabled.I am using this codeproject article as reference (.http://www.codeproject.com/Articles/80314/How-to-Connect-to-a-SiteMinder-Protected-Resource ) but still cannot get to the past the siteminder login page For reference,my code is as follows:

VB
Dim http As New WinHttp.WinHttpRequest
http.Option(WinHttpRequestOption_EnableRedirects) = False
url = "http://example.com"
' Launch the HTTP request
http.Open "GET", url, False
http.Send
target=http.GetResponseHeaders("location")//get the target url for post
Cookie=""
postData="USER="&HttpUtility.UrlEncode(username)&"&PASSWORD="&password
http.Open "POST", target, False
http.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
http.setRequestHeader "Cookie", Cookie
http.Send postData

The first http request takes me to the userlogin page of siteminder but the user doesn't get autheticated after the post request.I receive the error login page.Any suggestion as to how to get the user autheticated?
Posted
Updated 4-Nov-15 7:10am
v2
Comments
Richard Deeming 4-Nov-15 13:16pm    
If you have a question about an article, the best place to ask is the forum at the bottom of the article. The person who wrote the code is the person most likely to be able to help you.
Mridula Priya 4-Nov-15 13:43pm    
Will do so.Thanks!The problem is the article is written using VB.NET whereas I am using excel.I am facing difficulty in translating

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900