alm

Git changes are missing

跟風遠走 提交于 2021-01-29 03:00:22
问题 We have committed a change for one file using alm merge request. After one month we have noticed our change is missing. We tried seeing logs for that file but we don't see our change there as well. But when we see the logs of commit id 2e02e42d6b5094809295d375150d13238318968d. We can see that our changes got merged properly. Git logs of commit id git log 2e02e42d6b5094809295d375150d13238318968d commit 2e02e42d6b5094809295d375150d13238318968d Merge: 9e108526c5 c75d3cc631 Author: Sreekumar

Authorization against REST API throws an error: 401 (No credentials found the request.)

自作多情 提交于 2021-01-28 04:43:22
问题 I want to authorize against the HP Alm Rest API, I think this "should" work, but it does not: function performSignIn(){ let headers = new Headers(); headers.append('Content-Type', 'application/json'); headers.append('Accept', 'application/json'); headers.append('Authorization', 'Basic ' + base64.encode(username + ":" + password)); fetch(sign_in, {mode: 'no-cors', method:'POST', headers: headers}) .then(response => response.json()) .then(json => console.log(json)) .catch(error => console.log(

ActiveX component can't create object: 'TDApiOle80.TDConnection'

蹲街弑〆低调 提交于 2020-08-25 07:14:20
问题 I am trying to connect to QCServer using Excel Macro. I am using a 64-bit operating system with following being done: Register OTAClient.dll Installed HP ALM Connectivity tool Added OTA Library to reference I am getting the following error: ActiveX component can't create object: 'TDApiOle80.TDConnection' But the same is running using VBScript: C:\Windows\SysWOW64\Wscript.exe "C:\Users****\Desktop\qcConn.vbs" 回答1: I have found this solution on some other blog: If you are on 64 bit machine, by

HP ALM Rest API 401 Authentication error?

天涯浪子 提交于 2020-08-20 11:42:41
问题 I am using HP ALM Version 12.55.113. I am trying to upload test results automatically via REST-API. After authenticating and trying to read a simple defect, I am receiving a 401 not authenticated error. I am retrieving a valid LWSSO and QCSession Cookie, using the following example code: public class App { private static final String almURL = "http://something.com/qcbin"; private static final String isAuthenticatedPath = "authentication-point/authenticate"; private static final String

HP ALM 12 rest api help in python

只谈情不闲聊 提交于 2020-05-15 10:45:26
问题 For HP ALM 12.20.3264. Using python 2.7.9 - wish to complete an automation task. For which - need to achieve below tasks: Connect HP ALM  Success . Please find below success message. Log :(u'Open ALM session success', u'AUTH URL:', u'https://abcdefgh.com/qcbin/authentication-point/authenticate', u'HEADERS:', {'Cookie': None, 'Content-Type': 'application/xml', 'Accept': 'application/xml', 'KeepAlive': 'true'}) Get test case name information from Testing -> TestLab  Failed with below error:

ALM 12: Authentication via REST returns 400 bad request

孤者浪人 提交于 2020-02-16 06:58:21
问题 I am following the guidance here: http://alm-help.saas.hp.com/en/12.50/api_refs/REST_TECH_PREVIEW/Content/General/Session_Management.html I send the following request to alm12.test.com/qcbin/authentication-point/alm-authenticate Headers: Content-Type: application/xml Accept: application/xml Request <?xml version='1.0' encoding='utf-8'?><alm-authentication><user>userxy</user><password>yyy</password></alm-authentication> Which results in the following repsonse (LWSSO_COOKIE_KEY): Content-Length

TFS Scrum Burndown showing ideal line finishing above zero

无人久伴 提交于 2020-01-16 19:26:33
问题 I am using TFS 2013 and the Scrum 3.0 project template. I have recently upgraded our TFS 2013 server to TFS 2013 update 2, in order to remove the weekends from our Sprint burndown graph. The problem I have now is that the 'ideal' line no longer finishes at zero. Does anyone know how I can fix this? 回答1: Thanks for the report of this. We have had a bug on this in TFS 2013 Update 2 RC that we fixed for RTM. Could you please verify your TFS version? Ewald Hofman - TFS Program Manager 来源: https:/

HP ALM 12.5 - How to Make Test Sets Read Only in Test Lab Module

a 夏天 提交于 2020-01-15 10:53:27
问题 I am trying to make particular test set Read Only, meaning no one will be able to run, delete or modify these particular test set. I also don't know how to make Test Sets and also Folders Read Only for Delete and Modify functions yet, any help there I will be thankful too): In Test Lab module Script --> TestSet_MoveTo Sub: If TestSet_Fields.Field("TC_Cycle_ID").Value = 103 Then Actions.Action("TestSetView.Run").Enabled = FALSE Actions.Action("TestSetView.RunTestSet").Enabled = FALSE Else

HP ALM 12.5 - How to Make Test Sets Read Only in Test Lab Module

久未见 提交于 2020-01-15 10:52:33
问题 I am trying to make particular test set Read Only, meaning no one will be able to run, delete or modify these particular test set. I also don't know how to make Test Sets and also Folders Read Only for Delete and Modify functions yet, any help there I will be thankful too): In Test Lab module Script --> TestSet_MoveTo Sub: If TestSet_Fields.Field("TC_Cycle_ID").Value = 103 Then Actions.Action("TestSetView.Run").Enabled = FALSE Actions.Action("TestSetView.RunTestSet").Enabled = FALSE Else

Getting ActiveX component cant create object while trying to connect to ALM through VB macro

社会主义新天地 提交于 2020-01-07 02:53:27
问题 Getting ActiveX component cant create object error While debuuging the line - Set QCConn = CreateObject("TDApiOle80.TDConnection") 回答1: You must be using 64 Bit Excel. When ALM try to create OTA object(32 bit dll) in a 64 bit excel you will be produced with this error. Try the same code in 32 Bit Excel it will work smooth. Note : Please register both Clint and Site admin registration and dont forget to add the References. 来源: https://stackoverflow.com/questions/40420064/getting-activex