Testlink 1.9.5 JIRA Integration

I am trying to integrate a test link 1.9.5 with JIRA from the problem tracking management view in a test link.

Here is what I wrote:

<!-- Template jirasoapInterface --> <issuetracker> <username>user</username> <password>password</password> <uribase>http://url.address</uribase> <uriwsdl>http://url.address/rpc/soap/jirasoapservice-v2?wsdl</uriwsdl> <uriview>http://url.address/browse/</uriview> <uricreate>http://url.address/secure/CreateIssue!default.jspa</uricreate> <projectkey>projectkey</projectkey> </issuetracker> 

The problem is that I get "Connection is KO, check the configuration" when testing the connection and the following text in the test execution view:

"Caution Please: Something is preventing you from connecting to the bug tracking system and is about to create performance problems. Contact your TestLink administrator

How can i solve this?

+4
source share
3 answers

After looking all day for a solution to the same problem (in my case Testlink v1.9.13 + Atlassian Jira v6.5), I found that if you put an email account (just like I used the Atlassian login) setting up error tracking as follows: <username> name.surname@example.com </username> , it will not work, you need to put the username associated with the email account. It worked for me

+1
source

this is an example of my options in a test link

 <!-- Template jirasoapInterface --> <issuetracker> <username>yourusernameAdmininJIRA</username> <password>yourpasswordAdmininJIRA</password> <uribase>https://yourJIRAhttps</uribase> <uriwsdl>https://yourJIRAhttps</uriwsdl> <uriview>https://yourJIRAhttps</uriview> <uricreate>https://yourJIRAhttps</uricreate> <issuetype>1</issuetype> <projectkey>TOL</projectkey> </issuetracker> 

But username - you must enter your admin username in JIRA, the password is also your JIRA administrator. In the field - uribase uriwsdl, uriview uricreate - you must write the information of your JIRA server.

Projectkey is the first sibole in your project in JIRA

0
source
 <issuetracker> <username></username> <password></password> <uribase>https://jira.xxx.net/browse/"Project Prefix"</uribase> <uriapi>https://jira.xxx.net/rest/api/latest/</uriapi> <uriview>https://jira.xxx.net/browse/</uriview> <userinteraction>1</userinteraction> <!-- 1: User will be able to manage following attributes from GUI --> <!-- Issue Type, Issue Priority, Affects Versions, Components --> <!-- 0: values for attributes will be taken FROM this config XML from GUI --> <!-- Configure This if you want be able TO CREATE ISSUES --> <projectkey>"Project Prefix"</projectkey> <issuetype>1</issuetype> </issuetracker> 
0
source

Source: https://habr.com/ru/post/1468959/


All Articles