jira

JIRA SOAP API : get the list of users

老子叫甜甜 提交于 2019-11-30 22:05:30
I'm working on a tool in C# that interfaces the JIRA SOAP API. I have read the doc one can find here: http://docs.atlassian.com/software/jira/docs/api/rpc-jira-plugin/latest/index.html Does anyone know how I could get the list of all the assignable users for a specific project? I haven't been able to find how to do that yet... Ok I must be in better shape today so here is a solution of my problem /// <summary> /// object interface to the JIRA API /// </summary> private readonly JiraSoapServiceClient _JiraService; /// <summary> /// authentication token returned by the login method /// that can

Login to jira soap api

和自甴很熟 提交于 2019-11-30 21:28:06
I try use jira soap api on c#: create new project in VS2010 add web service reference (JiraTest): http://jira.atlassian.com/rpc/soap/jirasoapservice-v2?wsdl write next code: static void Main(string[] args) { var jiraLogin = "soaptester"; var jiraPassword = "soaptester"; var jiraClient = new JiraTest.JiraSoapServiceClient(); var projects = jiraClient.getProjects(); } But this code throw exepition that I'm not autentificate yet. I try find login method, but it have next signature: public void login(); Where are no loginname and password parameters. When I use this login method code throw

Configuring the Atlassian JIRA plugin to work with Jenkins CI system

不羁的心 提交于 2019-11-30 20:31:49
I am trying to configure the JIRA plugin with Jenkins but I am receiving the error "This is a valid URL but it doesn't look like JIRA". I am trying to connect to my company installation of JIRA studio which is http://[company].jira.com and I know this URL is correct as I have several projects using it successfully. Is there some setting I should enable in JIRA studio for this to work? I had a similar issue and fixed it by setting our JIRA studio Title to "Atlassian JIRA". You can change it by going to admin->general->account->account name->(change) The plugin looks for one (or both) of those

Confluence 6 给一个从 Jira Service Desk 的非许可证用户访问权限

萝らか妹 提交于 2019-11-30 19:12:03
如果你正在使用 Confluence 为 Jira 服务桌面(Jira Service Desk)的知识库,你可以选择允许所有活动的用户和客户(客户是可以登录的用户,但是这些用户是没有 Confluence 许可证的)来查看特定的空间。这个仅对 Jira Service Desk 有效,请参考 turned on via JIRA Service Desk 页面中的内容。 当空间是能够对所有活动用户开发访问的,你将会在空间的权限页面中看到下面的提示。 这个权限将会覆盖所有已经存在的空间权限,因此所有登录 Confluence 的用户也会可以查看这个空间(无关这些用户所在的用户组)。 你可以随时编辑这个权限来撤销对空间的访问权限,但是只能从 Jira Service Desk 重新启用。 没有占用 Confluence 许可证的活动用户在 Confluence 只具有有限的访问权限。他们可以查看页面,但是不能对页面点赞,评论,编辑,查看主面板,使用空间目录,查看用户的属性或者进行全站搜索。 需要查看 Jira 服务桌面整合的更多信息,请单击下面的链接: Use Jira applications and Confluence together 。 https://www.cwiki.us/display/CONF6ZH/Give+Access+to+Unlicensed+Users

JIRA SOAP API : get the list of users

╄→尐↘猪︶ㄣ 提交于 2019-11-30 18:01:04
问题 I'm working on a tool in C# that interfaces the JIRA SOAP API. I have read the doc one can find here: http://docs.atlassian.com/software/jira/docs/api/rpc-jira-plugin/latest/index.html Does anyone know how I could get the list of all the assignable users for a specific project? I haven't been able to find how to do that yet... 回答1: Ok I must be in better shape today so here is a solution of my problem /// <summary> /// object interface to the JIRA API /// </summary> private readonly

JQL: Get list of sprints

天大地大妈咪最大 提交于 2019-11-30 17:55:09
Is it possible to get a list of sprints for a particular project ? I know there is a way to find issues by a sprint, but haven't found any way to get all the sprints. I use the following rest call to find all the sprints: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY To find only the open sprint of the project I run this: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY+and+Sprint+not+in+closedSprints() In JQL it's not yet possible but you can use the new jira agile

Prevent log4net to send duplicate issues via SMTP

独自空忆成欢 提交于 2019-11-30 17:40:55
we have bridged our log4net with Jira using SMTP. Now we are worried that since the site is public what could happen to the Jira server if we get alot of issues in the production environment. We have already filtered on Critical and Fatal, but we want to see either some acumulator service on log4net or a plain filter which identifies repeating issues and prevents them from being sent via Email. Preferably without having to change the error reporting code, so a config solution would be best. I guess dumping the log into a db and then create a separate listener some smart code would be a (pricy)

Hadoop 2.0(YARN/HDFS)学习资料汇总

痞子三分冷 提交于 2019-11-30 17:24:18
本文档整理了迄今为止Hadoop 2.0(包括YARN和HDFS2)相关的一些学习资料,包括文档、技术博客、Hadoop书籍等,欢迎大家补充,我将持续更新这个页面。 1. PDF资料 (1) “Apache Hadoop YARN:Moving beyondMapReduce and Batch Processing” ,YARN leader Arun Murthy写的一本关于YARN的书籍,目前只有前两章试读(还在编写中,预定明年12月份出版),下载地址。 (2) “Hadoop 0.23 MRv2分析” ,由百度工程师编写,他的新浪微博: @大数据的wm ,邮箱: infcollector @gmail.com ,这个文档介绍是国内非常早的介绍YARN的资料,我也是从这份资料开始学习的。 (3) “Architecture of Next Generation Apache Hadoop MapReduceFramework” ,这份资料来自Hadoop jira,系统全面的介绍了MRv2/YARN的来源、架构和一些内部实现细节。 (4) “Hadoop Security Analysis” , Hadoop 2.0安全机制介绍文档,来自: https://issues.apache.org/jira/browse/HADOOP-9621 这些资料都给出了微盘下载链接

Filter to show sub tasks of a filtered list of parent tasks

半腔热情 提交于 2019-11-30 16:52:00
I have a JIRA filter which returns all the fixes in a future release: project = MyProject AND fixVersion = "1.1.1" and issuetype in standardIssueTypes() and status != Closed All of these issues have Sub-Tasks which I want to have in a new filter result. They do not have the fixVersion set. I have tried the parent filter but this only accepts Key or ID. Is there any way I can write a filter to access these without manually using something like parent in (MyProject-1,MyProject-2,MyProject-3,MyProject-4,etc) ? I have a solution that requires no plugins whatsoever, but some manual work that is

JQL: Get list of sprints

孤人 提交于 2019-11-30 16:49:48
问题 Is it possible to get a list of sprints for a particular project ? I know there is a way to find issues by a sprint, but haven't found any way to get all the sprints. 回答1: I use the following rest call to find all the sprints: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D+YOURPROJECTKEY To find only the open sprint of the project I run this: https://yourjira.com/rest/greenhopper/1.0/integration/teamcalendars/sprint/list?jql=project+%3D