I am using JIRA’s SOAP API to change defect’s status by jumping from one status to another and everything was fine until I need to jump on “verified” status where user needs to enter some text into textbox field.
I am using progressWorkflowAction method and at attempt to jump to this status I am getting an exception:
com.atlassian.jira.rpc.exception.RemoteException: Error occurred when running workflow
action To Verified:
Errors: {}
Error Messages: [Could not load validator class]
Any ideas how can I specify this text which is required for this workflow element?
p.s: Have tried this:
JiraClient.progressWorkflowAction(token, "DEF-5", "171", new RemoteFieldValue[] { new RemoteFieldValue { id = "customfield_10175", values = new string[] { "test" } } });
First, try to install JIRA Suite Utilities plugin (source) according to your Jira version. This is probably the reason for this error.
If it doesn’t help, have a look at Cannot Create Issues due to ‘Could not load validator’ class Errors: