id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release 5276,listAttachments error,rjs@…,Alec Thomas,"Durring our development using XmlRpcPlugin from java, we found a problem with listAttachments function. The error message says that the object Attachment doesn't contain attribute ""time"". We managed to solve this problem by changing t.time with t.date in file ticket.py, method listAttachments and recompile the plugin. Below you can find the old method and the new one: old method - def listAttachments(self, req, ticket): """""" Lists attachments for a given ticket. Returns (filename, description, size, time, author) for each attachment."""""" for t in Attachment.select(self.env, 'ticket', ticket): yield (t.filename, t.description or '', t.size, t.time, t.author) new method - def listAttachments(self, req, ticket): """""" Lists attachments for a given ticket. Returns (filename, description, size, time, author) for each attachment."""""" for t in Attachment.select(self.env, 'ticket', ticket): yield (t.filename, t.description or '', t.size, t.date, t.author) ",defect,closed,high,XmlRpcPlugin,critical,worksforme,,,0.11