Jira 5.2 SOAP API 通过使用来自 SOAP API 的方法包装在 WCF RESTFul 服务中,如下所示。
public Message GetCustomFields()
{
try
{
token = this.
Login(ConfigurationManager.AppSettings.Get("JiraUser"),
ConfigurationManager.AppSettings.Get("JiraPassword"));
RemoteField[] remoteCompoment = jiraSoapService.getCustomFields(token);
return WebOperationContext.Current.CreateJsonResponse<RemoteField[]>
(remoteCompoment);
}
catch (Exception e)
{
throw e;
}
}
所有方法都按预期工作。
查询:- 自定义数据库表用于使用 Kepler 在 Jira 中填充自定义字段。
表单构建器 Frevvo 用于调用 Jira RESTFul 服务来创建 Jira 问题。非常感谢帮助创建自定义字段的问题。
最好的