jira

Jira and TFS integration? [closed]

左心房为你撑大大i 提交于 2019-12-31 13:14:21
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . Does anybody know of an plugin that can be used to integrate Jira with TFS? 回答1: See Combining TFS with Jira - any experiences or advice? The options are as follows: TFS4JIRA (commercial / free for personal & non profit use) UseTFS (commercial / free for community and open-source projects) Atlassian Connector

Apache Client-cache jar

萝らか妹 提交于 2019-12-31 05:11:17
问题 I' trying to use Jira Rest Java Client's jar and have ran into a few bumps. I'm getting this error for a while now: java.lang.NoSuchMethodError: org.apache.http.impl.client.cache.CacheConfig.setNeverCache1_0ResponsesWithQueryString(Z)V at com.atlassian.httpclient.apache.httpcomponents.DefaultHttpClient.<init>(DefaultHttpClient.java:155) at com.atlassian.jira.rest.client.internal.async.AsynchronousHttpClientFactory.createClient(AsynchronousHttpClientFactory.java:53) at com.atlassian.jira.rest

Adding Jira comment using soap in PHP [closed]

五迷三道 提交于 2019-12-30 20:53:56
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 8 years ago . How to add comment in Jira using SOAP in PHP? 回答1: $soapClient = new SoapClient("https://YOUR_JIRA_DOMAIN.com/rpc/soap/jirasoapservice-v2?wsdl"); $token = $soapClient->login($username, $password); $soapClient-

Jira Soap with a Php

試著忘記壹切 提交于 2019-12-30 11:34:09
问题 I have seen little to know instruction on using php to develop a client website to make remote calls to JiRA. Currently I'm trying to make a soap client using JSP/Java to connect to a local jira instance. I would like to create and search issues that is all. We are currently having some problems using Maven2 and getting all the files we need from the repository since we are behind a major firewall(yes I've used the proxy). I have a lot of experience with PHP and would like to know if using

Updating a jira issue with the rest api. NOT soap

风流意气都作罢 提交于 2019-12-30 11:20:48
问题 my php function to update jira issue is like this.i have hardcoded the issue id.it generates an error in if (property_exists($result, 'errors')) . saying parameter is not an object. function post_to($resource, $data) { $jdata = json_encode($data); $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_POST => 1, CURLOPT_URL => JIRA_URL . '/rest/api/latest/' . $resource, CURLOPT_USERPWD => USERNAME . ':' . PASSWORD, CURLOPT_POSTFIELDS => $jdata, CURLOPT_HTTPHEADER => array('Content-type:

Replacing deprecated AbstractEditHandlerDetailsWebAction in Atlassian JIRA plugin for 7.X

混江龙づ霸主 提交于 2019-12-25 16:48:37
问题 I'm following Atlassian's Tutorial - Custom message (mail) handler for JIRA I've hit a brick wall with the second to last step: 3) Create a new file named EditDemoHandlerDetailsWebAction.java in src/main/java/com/example/plugins/tutorial/jira/mailhandlerdemo directory, and give it the following contents: package com.example.plugins.tutorial.jira.mailhandlerdemo; import com.atlassian.configurable.ObjectConfigurationException; import com.atlassian.jira.plugins.mail.webwork

Replacing deprecated AbstractEditHandlerDetailsWebAction in Atlassian JIRA plugin for 7.X

旧城冷巷雨未停 提交于 2019-12-25 16:48:21
问题 I'm following Atlassian's Tutorial - Custom message (mail) handler for JIRA I've hit a brick wall with the second to last step: 3) Create a new file named EditDemoHandlerDetailsWebAction.java in src/main/java/com/example/plugins/tutorial/jira/mailhandlerdemo directory, and give it the following contents: package com.example.plugins.tutorial.jira.mailhandlerdemo; import com.atlassian.configurable.ObjectConfigurationException; import com.atlassian.jira.plugins.mail.webwork

JIRA 4.1.2: Is there a different workflow that Jira follows when submitting via web services?

こ雲淡風輕ζ 提交于 2019-12-25 07:03:58
问题 Recently a patch was put into production to upgrade our Postgres DB. Since then, our users are not able to use the GUI to submit tickets, but our users are able to use the Web Services to submit tickets. How is this possible that one will work over the other if they are both utilizing the same defined workflows in JIRA? Please provide some insight into under the hood operations of JIRA. Already put a ticket into Atlassian and was shut down by the help there since the version we have has

Jira Need to Add Button to Comment Toolbar

时光怂恿深爱的人放手 提交于 2019-12-25 06:13:23
问题 So we currently have Jira in our workplace and no Jira Administrator. I'm feeling up to the task and would like to know if Jira has the functionality I'm looking for. So when you have comments in Jira or even in the body of a Jira ticket. You can italicize the text from the comment ribbon As you can see I am interested in being able to have the same functionality as bold or italicize or underline but I want to be able to highlight some code that i insert in a ticket comment and click a button

Jira Gadget: Simple call to REST resource doesn't work

我与影子孤独终老i 提交于 2019-12-25 05:36:15
问题 Im trying to write a gadget inside a jira plugin and I've encountered some problems even with a very simple one. Currently I'm trying to get a response from a simple java class i wrote. Following code is located in my gadget.xml: Hello Gadget<br /> #requireResource("com.atlassian.gadgets.publisher:ajs-gadgets") #requireResource("com.tngtech.gadgets.jira-complain-gadget-plugin:web-resources") #includeResources() #oauth <script type="text/javascript">(function () { var gadget = AJS.Gadget({