无法通过SOAP将值插入JIRA中的自定义级联列表

时间:2012-02-06 08:14:56

标签: java soap jira

我使用这些值创建自定义级联列表

TestCatA

- CatA_1
- CatA_2

TestCatB

- CatB_1
- CatB_2

创建自定义远程字段并使用

发出问题
RemoteCustomFieldValue[] actionParams2 = new RemoteCustomFieldValue[]{
         new RemoteCustomFieldValue("customfield_10012", null, new String[]{"TestCatA"}),
         new RemoteCustomFieldValue("customfield_10012", "1", new String[]{"CatA_1"})};
issue.setCustomFieldValues(actionParams2);

但第二个值始终以

失败
faultString: com.atlassian.jira.rpc.exception.RemoteValidationException: {customfield_10012=Value: 'CatA_1' is an invalid Option} : []

任何提示或工作样本?

1 个答案:

答案 0 :(得分:0)

这从JIRA 4.3改为JIRA 4.4。它曾经使用值作为字符串,但现在使用我认为的ID。同样在Python JIRA CLI中,我必须使用customfield_10012:1作为子选项的名称。