Page 1 of 1

Integration with Jira - SOAP

Posted: Tue Mar 16, 2010 10:39 am
by jarle.lervik@gmail.com
Hi!

Version: TL 1.9 Beta 3

1. Added info to the jirasoap.cfg.php config file.
2. Added $g_interface_bugs='JIRA'; to the custom_config.inc.php file
3. Restarted apache

No "Bug" link in the interface of TL. Any ideas how to configure the Jira SOAP interface?

Thanks in advance!

Jarle

Posted: Wed Mar 17, 2010 1:21 pm
by jarle.lervik@gmail.com
Hi again!

Would really appreciate if someone has the solution for this or know where the documentation for this is located.

Thanks!

Posted: Mon Apr 12, 2010 2:17 pm
by eeijlar
Things to check:

- Check your PHP driver which connects to the JIRA database
- Steps outlined here:

http://www.teamst.org/phpBB2/viewtopic. ... ight=#8678


There is also a bug in Testlink which prevents the data from returning correctly:

http://www.teamst.org/phpBB2/viewtopic. ... ight=#7690

Re: Integration with Jira - SOAP

Posted: Thu Jun 24, 2010 9:48 am
by bstick12
jarle.lervik@gmail.com wrote: 2. Added $g_interface_bugs='JIRA'; to the custom_config.inc.php file
This value should be JIRASOAP

I found the default value for BUG_TRACK_ENTER_BUG_HREF didn't work with my JIRA installation and the value below did. You can append the pid and issuetype to the URL is you want a default project and issue type selected e.g. secure/CreateIssue.jspa?pid=10240&issuetype=1. Obviously you need to select a valid pid for your JIRA installation. Issue type 1 is a Bug

Code: Select all

/** link of the web server for creating new jira ticket*/
define('BUG_TRACK_ENTER_BUG_HREF',"secure/CreateIssue.jspa");