Problem with created add-on Hello World .

Sashant Pardeshi August 26, 2015

We have created add-on hello world, added it on atlassian marketplace and uploaded it on our jira cloud, referring two articles -https://developer.atlassian.com/static/connect/docs/latest/guides/getting-started.htmland https://developer.atlassian.com/static/connect/docs/1.1.33/developing/cloud-installation.html

The add-on successfully got up uploaded on our jira cloud. It also creates a greeting link in navigation bar. When we click on Greeting link there is notification " Add-on Hello World is not responding. Wait or cancel? "

atlassian-connect.json - json descriptor file code

{
"name": "Hello World",
"description": "Atlassian Connect add-on",
"key": "{*our_key}",
"baseUrl": "

{https://domain_name.com}

",
"vendor": {
"name": "Example, Inc.",
"url": "

{https://domain_name.com}

"
},
"authentication":

{ "type": "none" }

,
"apiVersion": 1,
"modules": {
"generalPages": [
{
"url": "helloworld.html",
"key": "hello-world",
"location": "system.top.navigation.bar",
"name":

{ "value": "Greeting" }

}
]
}
}

*our_key - com.domain_name

// key we have related to domain_name. Our domain is https://www.domain_name.com so key com.domain_name

helloworld.html

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="//aui-cdn.atlassian.com/aui-adg/5.4.3/css/aui.css" media="all">
</head>
<body>
<section id="content" class="ac-content">
<div class="aui-page-header">
<div class="aui-page-header-main">
<h1>Hello World</h1>
<input type="text" value="test" />
</div>
</div>
</section>
</body>
</html>

 

Please refer snag below for details of problem we are facing - hello_world_problem.png

1 answer

0 votes
Robert Massaioli _Atlassian_
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 26, 2015

We commonly see this problem when people have not included all.js from the host product in their iframe scripts tag. Can you please confirm that you have done that. The getting started guide that you linked to tells you how to include all.js in your iframe if you are wondering:

Screen Shot 2015-08-27 at 7.29.29 am.png

Suggest an answer

Log in or Sign up to answer