- Community Home
- >
- Welcome
- >
- Other HPE Product Questions
- >
- VBA Authentication ALM 11.52 - Set-cookie missing ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2017 07:07 AM
06-13-2017 07:07 AM
VBA Authentication ALM 11.52 - Set-cookie missing in response header
Hi community !
I'l trying to authenticate on ALM 11.52 server through VBA Excel.
Dim objHTTP As New MSXML2.XMLHTTP60 url_authenticate = url_base & "/authentication-point/authenticate" ' where url_base is https://<alm-server>/qcbin Call objHTTP.Open("POST", url_authenticate, False, user, pwd) Call objHTTP.send("") token = objHTTP.getResponseHeader("Set-Cookie")
No matter what is the type of request (POST, GET)... token is always empty.
Set-Cookie response header is missing and objHTTP.status=200...
The same request (same URL, user and password), sent through Firefox Rest Client plugin, gets Set-Cookie in response header.
Any idea why Set-Cookie is not part of response header ?
Thank you
Kepha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2017 09:20 PM - edited 07-04-2017 09:42 AM
06-24-2017 09:20 PM - edited 07-04-2017 09:42 AM
Re: VBA Authentication ALM 11.52 - Set-cookie missing in response header
This is the wrong forum (and in the future the wrong company) for software questions.
https://community.saas.hpe.com/
https://community.saas.hpe.com/t5/Quality-Center-ALM-Practitioners/bd-p/itrc-895
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2017 06:00 AM
07-04-2017 06:00 AM
Re: VBA Authentication ALM 11.52 - Set-cookie missing in response header
Thx Dennis, my mistake.
By the way, if anyone encounters the same problem, I found the solution.
Changing
objHTTP As New MSXML2.XMLHTTP60
by
objHTTP As New MSXML2.ServerXMLHTTP60
will do.