Facing Connection time out exception while integrating Jira Cloud with katalon studio.
Note : I have configured proxy into the tool also I am using API key for authentication.
Hi @Shalini Verma ,
Welcome to the Atlassian Community.
If my understanding is correct you are trying to integrate with Katalon Studio by following the instructions in below page but you get connection timeout when trying to connect from Katalon to Jira (so, at the end of the configuration section):
If this is correct, then there are chances that Katalon is not going through the proxy and therefore is unable to connect to Jira.
Can you kindly let us know if you have chosen Manual proxy configuration or Use system proxy configuration in Katalon proxy settings?
Also, can you confirm you are able to run a simple REST API call authenticated with your email address and api token from the same machine on which Katalon is running?
For example, using Curl:
curl -u <EMAIL-ADDRESS>:<API-TOKEN> https://<NAME>.atlassian.net/rest/api/3/project/search
Cheers,Dario
Hi Dario,
Yes , I am trying to integrate Jira using link provided by you. I have set manual proxy configuration in Katalon proxy setting and m able to connect to katalon analytics and katalon store(reload plugin) with this proxy setting. Just Jira connectivity is not working.
Have tried running provided curl command, getting timed out .Attaching corresponding screenshot for your reference
Please help
Thanks for running the test. Now, whether to determine if the problem is the fact that the proxy configuration is not taken into account or with the proxy itself, can you run the same curl command but this time passing the option to use the proxy?
E.g.:
curl -x <[protocol://][user:password@]proxyhost[:port]> -u <EMAIL-ADDRESS>:<API-TOKEN> https://<NAME>.atlassian.net/rest/api/3/project/search
You might also want to add the -D- option to get some more information. For example:
curl -D- -x https://user:pass@myproxy.com -u an@email.com:lwqjrfjmqjroqj3wro https://instance.atlassian.net/rest/api/3/project/search
I am now able to run the REST API call successfully by setting up the same proxy(which i have setup in katalon studio) using this command:
Please assist further. Thanks in Advance.
It looks like you're new here. Sign in or register to get started.