How do I submit a bug to Tracker, MantisBT, or Trac programatically? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:00:43Zhttp://stackoverflow.com/feeds/question/1052673http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052673/how-do-i-submit-a-bug-to-tracker-mantisbt-or-trac-programatically1How do I submit a bug to Tracker, MantisBT, or Trac programatically?Jeff2009-06-27T11:28:53Z2009-07-07T08:53:22Z
<p>I've got a program that I've been working on at home for a while, and I decided finally to throw it up on SourceForge. SourceForge offers Tracker, MantisBT, or Trac for bug tracking.</p>
<p>My app already has a "Sorry, an error occurred" dialog, but I'd like to add a "Complain about it" button that will submit a bug to my bug tracker. Has anyone tried to do this with Tracker? Can you submit anonymous bugs via a query string interface, or something along those lines? Or, if Tracker can't do it, how about MantisBT? Or Trac?</p>
http://stackoverflow.com/questions/1052673/how-do-i-submit-a-bug-to-tracker-mantisbt-or-trac-programatically/1091116#10911162Answer by Robert Munteanu for How do I submit a bug to Tracker, MantisBT, or Trac programatically?Robert Munteanu2009-07-07T08:53:22Z2009-07-07T08:53:22Z<p>Programmatic access:</p>
<ul>
<li>Mantis has a <a href="http://www.mantisbt.org/bugs/api/soap/mantisconnect.php" rel="nofollow">SOAP interface</a>;</li>
<li>Trac has an <a href="http://trac-hacks.org/wiki/XmlRpcPlugin" rel="nofollow">XML-RPC interface</a>.</li>
</ul>
<p>If your application happens to be built on Eclipse, you can use the existing Mylyn plugins - they're both offered with 1-click install since version 3.2 (<a href="http://tasktop.com/blog/eclipse/tasktop-15-mylyn-32-and-new-connectors-released-for-eclipse-galileo" rel="nofollow">reference</a>).</p>