Rally SOAP API - 如何向Hierarchical Requirement添加附件?

时间:2012-06-12 00:16:02

标签: rally

我已关注this codeHierarchicalRequirement添加附件。

我收到以下错误:

validation error: Attachment.attachments[0] should not be null

如何将附件添加到分层要求?

1 个答案:

答案 0 :(得分:1)

您是否可以发布说明问题的代码摘录?如果您按照Rally SOAP API - How do I add an attachment to a TestCaseResult中的方法进行操作,那么您就是在正确的轨道上。以下是一个快速的代码示例,在为故事添加附件时适用于我:

        // issue query for target story
        QueryResult queryResult = service.query(workspace, objectType, queryString, orderString, fetchFullObjects, start, pageSize);

        // look at the object returned from query()
        Console.WriteLine("Query returned " + queryResult.TotalResultCount + " objects");

        // Grab the resulting story
        DomainObject rallyObject = queryResult.Results.First();
        HierarchicalRequirement queryStory = (HierarchicalRequirement)rallyObject;

        // Read In Image Content
        String imageFilePath = "C:\\Users\\username\\";
        String imageFileName = "image1.png";
        String fullImageFile = imageFilePath + imageFileName;
        var imageFileLength = new FileInfo(fullImageFile).Length;
        Image myImage = Image.FromFile(fullImageFile);

        Console.WriteLine("Image File Length: " + imageFileLength);

        // Convert Image to Byte Array format
        byte[] imageByteArray = ImageToByteArray(myImage, System.Drawing.Imaging.ImageFormat.Png);
        var imageNumberBytes = imageByteArray.Length;

        // Create the Attachment Content
        AttachmentContent attachmentContent = new AttachmentContent();
        attachmentContent.Content = imageByteArray;
        attachmentContent.Workspace = workspace;
        CreateResult result = service.create(attachmentContent);
        attachmentContent = (AttachmentContent)result.Object;

        // Create the Attachment Container, wire it up to the AttachmentContent
        Attachment myAttachment = new Attachment();
        myAttachment.ContentType = "image/png";
        myAttachment.Content = attachmentContent;
        myAttachment.Name = "image1.png";
        myAttachment.Size = imageNumberBytes ;
        myAttachment.SizeSpecified = true;
        myAttachment.User = user;
        myAttachment.Artifact = queryStory;
        myAttachment.Workspace = workspace;

        // Create the attachment in Rally
        result = service.create(myAttachment);
        Console.WriteLine(result.Object);

    }

    public static byte[] ImageToByteArray (Image image, System.Drawing.Imaging.ImageFormat format)
    {
        using (MemoryStream ms = new MemoryStream())
        {
            // Convert Image to byte[]
            image.Save(ms, format);
            byte[] imageBytes = ms.ToArray();

            return imageBytes;
        }
    }
}
相关问题