jira

How do I get a list of custom fields in JIRA with Perl SOAP?

邮差的信 提交于 2019-12-06 02:29:49
I was curious if anyone else had an idea how to get a list of all of the custom fields you have created in JIRA? If so, how did you do it? I've been trying to use a Perl SOAP routine I found on JIRA SOAP service documentation , but I have no idea how to implement it. Damon Curnell Note: You will need admin to access custom fields my $soap = SOAP::Lite->proxy("http://jira_url/rpc/soap/jirasoapservice-v2?wsdl") or die $!; my $login = $soap->login($user,$passwd)->result(); my $cfresult = $soap->getCustomFields($login); my $cfarray = $cfresult->result; my %cfhash; foreach $cfld (@{$cfarray}) {

Loading the Jira Public Certificate in .Net from a string (how to convert ASN.1 encoded SubjectPublicKeyInfo to X509 Cert in .Net)

匆匆过客 提交于 2019-12-05 22:48:41
I am building an oauth 1.0a service that will be consumed by a gadget within Jira, it's a .Net 3.5 Application written in C#. Jira makes requests to this service using the RSA-SHA1 signature method, which means to verify the signature of the request I need create an X509Certificate instance form their public cert. Within the Jira application you can get the public cert by going to the consumer info screen (which also has the consumer key for Jira etc.) and it presents the public key in this format: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCObJRTGSZbAo jRkvKmm0cwFXnKcPMfR4t/sghvLe/

keytool error: java.lang.Exception: Input not an X.509 certificate

让人想犯罪 __ 提交于 2019-12-05 19:56:25
问题 I am trying to import Gmails smtp certificate for use with Jira, but I get this error when importing using Javas keytool. I used openssl to get the certificate, everything between ----Begin Certificate---- and ----End Certificate---- (inclusive). I also attempted to create an x.509 certificate using Windows Certificate Manager, but still get this error. I have verified that there are no extra whitespaces in the file. I have seen many people with this problem online, but none of the solutions

项目追踪管理软件Jira配置自带tomcat服务器过程!!

痴心易碎 提交于 2019-12-05 18:30:09
http://zero502.com/blog/article?id=8af4d41555048be00155057c43d80006 Jira作为项目追踪管理软件,是一款非常优秀的软件。起初在官网下载的最新安装版是集成了tomcat7.0。由于需求要配置在自己的服务器上,就花时间研究了一下。下面就分享下用自带的tomcat加载jira的过程。本篇配置过程主要在tomcat6.0上进行。 写在配置之前的话 由于Tomcat6.0.24包含一个严重的bug,所以最后使用6.0.32 发布多个Atlassian项目在一个Tomcat容器是不被支持的。 配置过程如下 下载纯净版(未集成tomcat)Jira压缩包,带 WAR 的版本。解压到系统根目录下,这里假设在e盘,则解压后的目录为E:\atlassian-jira-5.2.9-war,这里下载的是最新版5.2.9。 配置entityengine.xml文件,该文件在Jira解压后的 edit-webapp/WEB-INF/classes/目录下。修改<transaction-factory>...</transaction-factory>标签内容如下 配置第2步同目录下的jira-application.properties文件。设置jira.home的值,该值为你新建的任意空目录。例如:我建在d盘根目录,名字为JIRA_Home

知识点053-jira

℡╲_俬逩灬. 提交于 2019-12-05 17:58:38
安装jira wget https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-7.13.0-x64.bin chmod +x atlassian-jira-software-7.13.0-x64.bin root@jenkins:/data/jira# ./atlassian-jira-software-7.13.0-x64.bin Unpacking JRE ... Starting Installer ... Dec 04, 2019 3:44:32 PM java.util.prefs.FileSystemPreferences$1 run INFO: Created user preferences directory. Dec 04, 2019 3:44:32 PM java.util.prefs.FileSystemPreferences$2 run INFO: Created system preferences directory in java.home. This will install JIRA Software 7.13.0 on your computer. OK [o, Enter], Cancel [c] o Choose the

知识点053-jira

喜欢而已 提交于 2019-12-05 17:54:23
安装jira wget https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-7.13.0-x64.bin chmod +x atlassian-jira-software-7.13.0-x64.bin root@jenkins:/data/jira# ./atlassian-jira-software-7.13.0-x64.bin Unpacking JRE ... Starting Installer ... Dec 04, 2019 3:44:32 PM java.util.prefs.FileSystemPreferences$1 run INFO: Created user preferences directory. Dec 04, 2019 3:44:32 PM java.util.prefs.FileSystemPreferences$2 run INFO: Created system preferences directory in java.home. This will install JIRA Software 7.13.0 on your computer. OK [o, Enter], Cancel [c] o Choose the

Logstash Shipper configuration for Jira

妖精的绣舞 提交于 2019-12-05 15:51:43
I am running Jira and Confluence within my company. I would like the logfiles to be shipped to Kibana. This is very easy to do but I do not want to rewrite the Grok filters. I cannot imagine that nobody has done this already. Does anybody have an example of a logstash shipper configuration. Most of the logging like catalina.log is standard. Please help me with examples One would think that Java application logs only come in one form, but my experience is that there often are subtle differences. Sometimes the thread name is in square brackets and sometimes in parentheses, sometimes the thread

How to change transitions to a issue in ruby, using jira-ruby gem?

≯℡__Kan透↙ 提交于 2019-12-05 14:42:19
I'm trying to access jira in ruby with the Jira-ruby gem ( https://rubygems.org/gems/jira-ruby ), but i can't find how to change the transitions. I can only change it using the REST-api? There is a Transition class ( http://rubydoc.info/gems/jira-ruby/0.1.8/JIRA/Resource/Transition ), but i don't know how to deal with it. The REST API docs say that you POST to /issue/{issueIdOrKey}/transitions to transition an issue from one status to another. First fetch the available transitions for an issue: client = JIRA::Client.new( ... ) issue = client.Issue.find("PROJECT-123") available_transitions =

Jira Rest Api for getting full user list

北城余情 提交于 2019-12-05 14:01:04
How can I get the list of all users using Jira Rest Apis. I have tried:- /rest/api/latest/user/search?username= Here I tried with blank username string but it doesn't return full user list. We only get some results when username is of at-least 1 length. How can I get full users list from Jira rest API's ?? Kuf I don't think the Rest API has this ability. As far as I know you'll have to choose a different way, for example you could use the Soap API to do so as shown in this question JIRA SOAP API : get the list of users . Another way might be querying the DB directly . You can make a loop in

How to browse all items I added/commented on in a particular timeframe in Jira?

感情迁移 提交于 2019-12-05 13:54:41
I need to go back and look at some events in August-October 2010. We use JIRA for issue tracking. Is there a way in JIRA to look at my "activity stream" for this timeframe? assignee = currentUser() and updated > "2010/08/01" and updated < "2010/10/31" Should work. EDIT: This is to be placed in the "Custom Filter" query box. The Activity Stream gadget can be configured with a filter by username. Since activity includes comments, this generally yields a list of comments by that user. Note that this requires a case-sensitive username, not the friendly Display Name. Click the filter icon on the