Redmine 2.5.0 with TestLink 1.9.9 issue

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
zuko
TestLink user
Posts: 4
Joined: Mon Jun 09, 2014 6:31 pm

Redmine 2.5.0 with TestLink 1.9.9 issue

Post by zuko »

Code: Select all

<!-- Template redminerestInterface -->
<issuetracker>
<apikey>mykeyhere</apikey>
<uribase>https://subdomain.domain.com/redmine/</uribase>
<uriview>https://subdomain.domain.com/redmine/issues/</uriview> <!-- for Redmine 1.x add show/ --> 
<!-- Project Identifier is NEEDED ONLY if you want to create issues from TL -->
<projectidentifier>myproj</projectidentifier>
<!-- Configure This if you need to provide other attributes -->
<!-- <attributes><targetversion>10100<targetversion></attributes>  -->
<!-- Configure This if you want NON STANDARD BEHAIVOUR for considered issue resolved -->
<resolvedstatus>
<status><code>3</code><verbose>Resolved</verbose></status>
<status><code>5</code><verbose>Closed</verbose></status>
</resolvedstatus>
</issuetracker>
Testlink message : Attention Please:
Something is preventing connection to Bug Tracking System,
and is going to create performance issues.
Please contact your TestLink Administrator.


Event Log:

Code: Select all

redminerestInterface::connect [uribase=https://subdomain.domain.com/redmine/ / apikey=mykeyhere] redmine::_requesturl:https://subdomain.domain.com/redmine/ - response:Array - content:


I have verified both are enabled in Redmine.
Enable REST web service
Enable JSONP support


I am using Bitnami Redmine Stack with Bitnami Testlink Module.
zuko
TestLink user
Posts: 4
Joined: Mon Jun 09, 2014 6:31 pm

Re: Redmine 2.5.0 with TestLink 1.9.9 issue

Post by zuko »

Is this a known bug?
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: Redmine 2.5.0 with TestLink 1.9.9 issue

Post by fman »

1. Testlink and redmine installed on same host
2. redmine installed using BITNAMI installer on linux
3. redmine - user testlink created to be used on integration
4. testlink latest code from gitorious (20140816)
5. using http
config xml

Code: Select all

<issuetracker>
<apikey>8fcfe1d8e5871cdd2b4813349edcfa51c4bfb342</apikey>
<uribase>http://localhost:8888/redmine/</uribase>
<uriview>http://localhost:8888/redmine/issues/</uriview>
<projectidentifier>tlr01</projectidentifier>
</issuetracker>
issue created without problems

6. using HTTPS

Code: Select all

<issuetracker>
<apikey>8fcfe1d8e5871cdd2b4813349edcfa51c4bfb342</apikey>
<uribase>https://localhost:8443/redmine/</uribase>
<uriview>https://localhost:8443/redmine/issues/</uriview>
<projectidentifier>tlr01</projectidentifier>
</issuetracker>

issue created without problems
Post Reply