How do you evaluate third party controls? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:10:17Zhttp://stackoverflow.com/feeds/question/127879http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127879/how-do-you-evaluate-third-party-controls0How do you evaluate third party controls?Aaron Fischer2008-09-24T15:28:55Z2008-10-06T23:52:26Z
<p>What criteria do you use when evaluating and comparing third party controls? Do you have standard integration and functionality tests?</p>
http://stackoverflow.com/questions/127879/how-do-you-evaluate-third-party-controls/127895#1278951Answer by SaaS Developer for How do you evaluate third party controls?SaaS Developer2008-09-24T15:31:19Z2008-09-24T15:31:19Z<p>Depends on what the third party control is being used for. But generically I would say:</p>
<ul>
<li>Ease of use and compatibility with environment</li>
<li>Documentation</li>
<li>Company stability (Not going out of business)</li>
<li>Licensing model</li>
</ul>
http://stackoverflow.com/questions/127879/how-do-you-evaluate-third-party-controls/127926#1279260Answer by VonC for How do you evaluate third party controls?VonC2008-09-24T15:36:44Z2008-09-24T15:36:44Z<p>First we evaluate them on non-technical criteria:</p>
<ul>
<li>Is there a community (at least a forum) ?</li>
<li>Is is an active project ?</li>
<li>Is there a clear documentation ?</li>
</ul>
<p>Then, the main criteria is how well it fits in the encapsulation of our specific features needing to call some 'third party services'.</p>
<p>That means, we have a clear set of features with empty implementations, needing for a third library to be implemented. If that library forces us to rethink that encapsulation, it is usually not a good sign.</p>
<p>Finally, we unit-test that encapsulation, not the third party library itself (since it is not our job to support and test outside application!).<br />
If we do have to evaluate a similar third-party library, all we need in theory is to re-run those unit-test against <em>our</em> features (which call that new library).</p>
http://stackoverflow.com/questions/127879/how-do-you-evaluate-third-party-controls/176707#1767071Answer by Josh Kodroff for How do you evaluate third party controls?Josh Kodroff2008-10-06T23:41:34Z2008-10-06T23:41:34Z<p>Another important thing:</p>
<p><strong>Make sure you can get a copy of the source code</strong>, if not free, then at additional cost. If they go out of business and it's an important component to your product, you are officially hosed if you discover a bug.</p>