0

Jira 5.2 SOAP APIは、以下のようにSOAP APIのメソッドを利用して、WCFRESTFulサービスにラップされます。

            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は、JiraRESTFulサービスを呼び出してJira課題を作成するために使用されます。カスタムフィールドを使用して問題を作成する際にご協力いただければ幸いです。

一番

4

1 に答える 1

0

Jira SOAP apiは、カスタムフィールドを使用して問題を作成するためのRemoteCustomFieldValue部分クラスを提供します。

        //custom fields
        remoteCustomFields = new List<RemoteCustomFieldValue>();
        XmlNodeList customFieldList = doc.SelectNodes("//customFieldValues");
        foreach (XmlNode customField in customFieldList)
        {

            XmlNodeList customFieldValueList = doc.SelectNodes("//customFieldValues/Values");
            remoteCustomFields.Add(
                new RemoteCustomFieldValue
                    {

                        customfieldId = customField.SelectSingleNode("customFieldId").InnerText,
                        values = customFieldValueList.Cast<XmlNode>().Select(n=> n.InnerText).ToArray()

                    });
        }

有用なリソース:https ://svn.atlassian.com/svn/public/contrib/jira/jira-rpc-samples/src/java/com/atlassian/jira_soapclient/SOAPClient.java

于 2012-11-26T10:34:28.257 に答える