2011-10-12 53 views
0

我想通過Soap在jira Project中添加一個新組件,但我沒有找到適當的方法來完成此操作。如何通過SOAP在jira中添加新組件?

這是添加的組件與現有問題的例子:

RemoteComponent component = new RemoteComponent(); 
component.setId("1000"); 
issue.setComponents(new RemoteComponent[] { component }); 

但在我的情況,我想補充一個新的組件,有人能幫助我嗎?

感謝

回答

0

不幸的是,在JiraSoapService沒有addComponent或類似的方法,讓你根本無法做到這一點。

我不知道爲什麼,但與Jira web前端相比,JiraSoapService缺少許多功能。

+0

感謝您的答覆。我會盡力找到另一種解決方案 – Sarroura