The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

Importing Cascading Selects into Jira with Jira Rest Java Client

I am writing an excel importer for jira in java and everything runs as expected. The information is read and imported without issues. But until now, there wasn't any use of cascading selects. These ...
0
votes
0answers
31 views

File Not found exception While using Httpsurlconnection with the REST “POST” function

i am facing problem when i am executing the following code. i am also having same kind of function which perform rest Method DELETE and PUT those are working great with the same config, but this is ...
0
votes
1answer
45 views

Update Complex Fields Using Jira Rest Client 1.1-m02

Hello I'm trying to update some complex fields such as Issue Type or Status using Jira Rest Client Library for Java and I'm having some trouble. This is what I've got so far: Issue issue = ...
2
votes
0answers
64 views

NoSuchMethodError showing for Jira when Java running as Web application, But gets output when running in main

I am creating a Java web application. I added Jira API jars for connecting to Jira to get Issues created in Jira. And this is my Java program to get the issues import java.net.URI; import ...
0
votes
1answer
90 views

Maven Not downloading some JARs when adding repository for another dependencies

I need jira-rest-java-client:jar:0.2-m1.jar. So I added the following in my pom.xml(Thanks to answer by @kahowell for my previous question to download that) <repository> ...
0
votes
1answer
256 views

Maven dependency for jira-rest-java-client-0.2-m1.jar

I want to download jira-rest-java-client-0.2-m1.jar using maven. But I dont know the dependency for that. I tried the following <dependency> ...
0
votes
1answer
71 views

How to get specified project and specified version from JIRA REST API

I take a look on this documentation http://docs.atlassian.com/jira/REST/latest. And I also tried some query by myself but I don't find the answer yet. I would like to get the data from a specified ...
0
votes
1answer
96 views

java.lang.ClassNotFoundException: com.atlassian.jira.rest.client.ProgressMonitor when trying to read JIRA Issue

I am very new to JIRA.Added dependencies for JRJC in maven. My scenario is to read Issue in my Java EE application. I have created a simple class like public class IssueCollector { public void ...
0
votes
1answer
134 views

JIRA REST API performance - OAuth vs HTTP Basic Authentication

Following the doco of JIRA REST API, OAuth and HTTP Basic are two recommended authentication. We are using the HTTP Basic one with https, which works good and safe. Is there any difference on ...
0
votes
0answers
143 views

Fullcalendar: How to events feed using JSON Service

Below is my calendar stuff in velocity template: $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'User Issues', right: ...
0
votes
1answer
31 views

Rest resource API in JIRA Plugin

Is it possible to create Rest Resource API into JIRA Plugin or have to create separate refapp as below and reference in JIRA plugin project? ...
0
votes
1answer
53 views

Unable to access Rest-Resource request url

In Jira Plugin development, i have created a rest resource class at location - "[FOLDER]/Src/Main/JAVA/com.company.jira.plugin.REST/PlanIssuesRestResources" Now, when i try to access below url in ...
1
vote
1answer
144 views

Updating Select List Custom Field - Jira Python

I have a custom field named "Status" with an id of 10100 which is a select list with optional values of "One", "Two", "Three" and "Four". Default value is "One". I am writing a JIRA python script to ...
0
votes
2answers
150 views

Searching and updating based on custom field - Jira Python

I have a custom field named "Detailed Status" of the type Text Field (< 255 characters) with custom field ID value of 10000. I am writing a JIRA Python script to update the value of this custom ...
0
votes
0answers
85 views

How to get total hours spent on an issue for a user JIRA REST API

I'm quite new to JIRA's REST API, I wanted to get the total time spent on an issue by a user. I tried using https://jira.domain.com/rest/api/2/search?jql=assignee="my.name", and I get the timespent ...
3
votes
3answers
1k views

PermGen Space error when deploying tomcat 7? [duplicate]

I installed tomcat 7 to upgraded my JIRA projeect version from 5.0 to 6. After I place the project folder in tomcat's webapps. I run this localhost:8080/jira after long time running, it throws some ...
0
votes
0answers
66 views

How authenticate with JIRA REST API in AIR?

I'm using the following code from a Flex AIR application to authenticate a JIRA REST instance. I don't know if I'm doing it right but it works with one JIRA instance on a local network but I'm at ...
1
vote
2answers
307 views

Jira Rest API - How to login

I've been going through this guide: JIRA API Documentation and can't seem to figure out how to simply authenticate to the API if you're using gmail to login to Jira. I'm hoping to use the REST API ...
0
votes
1answer
108 views

SOAPpy - create a Jira issue and define a component?

I can't figure how to create a jira issue and define its component with SOAPpy: client = so.WSDL.Proxy(cfg_wsld) auth_token = client.login(cfg_username, cfg_password) issue_params = dict() ...
0
votes
0answers
318 views

Exception while creating issue in JIRA via Rest API

I am trying to create an issue in JIRA using REST API from the following sample code. Getting exception in the last line of code, and i googled to find the reason, where as not able to get the exact ...
0
votes
2answers
69 views

JIRA SOAP: Error message: [Could not load validator class] for progressWorkflowAction

I am using JIRA's SOAP API to change defect's status by jumping from one status to another and everything was fine until I need to jump on "verified" status where user needs to enter some text into ...
0
votes
2answers
418 views

Get JSON results in my Java class via Rest call

I have a javascript by which i call a rest api and get a JSON result , I need this result in a java class. Below is the script <script type="text/javascript"> function getCurrentTime() { var ...
0
votes
0answers
265 views

Unable to create issue in JIRA via REST Api

I want to create an issue in JIRA via REST API call. I got a sample code and JSON text. When I executed the below code there is no error, but also no issue is created in JIRA. I have used the same ...
0
votes
0answers
13 views

How to use RESTApi with XML to create issues in JIRA?

I am new to RESTApi. I need to create issues in JIRA through RESTApi, in which the inputs are in an XML format. How can I proceed?
2
votes
1answer
107 views

Check JIRA REST API version?

How to check, that rest api is enabled in JIRA and it has appropriate version? I know, that it is possible to request 'api/latest', but if latest installed version isn't compatible with methods, that ...
0
votes
1answer
590 views

How to add attachment to an existing JIRA Issue using rest-client API

I could create a jira issue using the rest client API, but i wasn't able to attach the screeshot/attachment to the exsiting JIRA issue. Would be really helpful if anyone could provide a solution which ...
1
vote
1answer
404 views

Basic authentication with jira-python

I am new to Python, new to the jira-python library, and new to network programming, though I do have quite a bit of experience with application and integration programming and database queries (though ...
0
votes
1answer
179 views

JiraRestClient set assignee

My shop is currently running Jira 5X, and I am attempting to use the Jira Rest Client to retrieve / progress issues. I need to set values such as Assignee. Can anyone provide a good example on how to ...
1
vote
1answer
135 views

What technology to use for accessing Jira 3.13.2?

I was going to use Jira Rest Java Client for programatically access Jira from Java. This uses Jira REST API that is supported only for Jira 5.0 and later versions. But I have Jira 3.13.2 version and ...
1
vote
3answers
451 views

Exception while fetching issue in jira

I am new to JIRA and using JIRA REST API to fetch issue from the remote host. I wrote a simple program to fetch the issue according to this tutorial following is the code public class JIRAClient { ...
3
votes
1answer
1k views

Missing dependency 'class javax.annotation.Nullable'

I was trying to use the jira-rest-java-client provided by Atlassian in a Scala program I am developing. I am using Eclipse as my IDE. When I have an object of type Issue and I try to look at the ...