Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: swizzle-jira-1.3.3
-
Fix Version/s: swizzle-jira-1.3.3
-
Component/s: swizzle-jira
-
Labels:None
-
Number of attachments :
Description
AttachmentFiller does not work if Project does not allow guest access. The following line must be changed from:
URL pageUrl = new URL(baseUrl, "secure/ManageAttachments.jspa?id="+issue.getId());
to:
URL pageUrl = new URL(baseUrl, "secure/ManageAttachments.jspa?os_username=admin&os_password=adminpw&id="+issue.getId());
Of course, the jira object could be queried to determine the username and password.
Thanks for the url syntax. Sure, we can definitely pull the user and pass from the Jira object. Not sure how we'd pull off doing the same for the JiraRss object. I suppose we'd need some way to pull the user and pass out of the rss url.
You using just xml-rpc or rss too?