I recently upgraded from 4.2 (to 5.0), and now a gadget that I made is no longer working.
The part of the gadget that is not working is the ajax post call to a .jsp page.
var myStuff = "ActionType=GetListOfUsers&EventID=&User=&JiraKey=&Comments=&StartTime=&EndTime=";
$.ajax({
type:"post",
async:false,
url:"http://localhost:8080/MyGadget/CalendarEditTest.jsp",
data:myStuff,
dataType:"text",
success: function(msg){
// This is not returning value
// Instead I get the Error below:
},
error:function (xhr, ajaxOptions, thrownError){
alert("Error: " + xhr.status);
}
});
ERROR:
You are not authorized to perform this operation. Please try to <a href='/login.jsp?os_destination=%2FMyGadget%2FCalendarEditTestV3.jsp'>log in
Is there a setting in jira to allow for this?
I already have
Accept remote API calls set to true
As well, i have the
jira.websudo.is.disabled = true
Any help would be greatly appreciated. Thank you.
Other things I've tried include:
url:"/MyGadget/CalendarEditTest.jsp",
Ok, this was a non issue. It was making the call successfully and the issue was on the JSP page (the user tables changed in the jiradb from 4.2 to 5.0)
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.