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
Integration with Jira - SOAP
Moderators: Amaradana, TurboPT, TL Developers
-
- TestLink user
- Posts: 2
- Joined: Tue Mar 16, 2010 10:37 am
-
- TestLink user
- Posts: 2
- Joined: Tue Mar 16, 2010 10:37 am
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
- 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
This value should be JIRASOAPjarle.lervik@gmail.com wrote: 2. Added $g_interface_bugs='JIRA'; to the custom_config.inc.php file
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");