Hi
I've got a Stash server running over SSL, on port 8443: https://stash:8443/ It is using a self-signed certificate for the encryption.
I'm trying to create an application link between our Jira instance (non-SSL, HTTP) and the Stash instance. I have imported the self-signed cert into the keystore as described in the answer here. In addition, I've downloaded the SSLPoke application and confirmed that I am able to connect from the Jira server:
# java SSLPoke stash 8443
Successfully connected
I've also confirmed that the REST API (which I assume is being used for the application links) is running on port 8443 by checking that URLs such as these return valid data:
https://stash:8443/rest/api/1.0/profile/recent/repos
The error I get when I try to create an application link from Stash reads:
The Remote application is not able to connect to 'Stash'(Stash) by using the URL 'https://stash:8443'.
When I try to create the link from Jira, the errors displayed are:
The host is unknown. Verify that the URL is correct.
The specified URL does not appear to be an instance of the selected type.
Does anyone know what could be the problem here? Am I wrong in assuming that the application links use the REST API? If so, what ports need to be accessible to enable SSL application links between Jira and Stash?