.NET Coding standards and framework for a web service - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:24:10Zhttp://stackoverflow.com/feeds/question/581994http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/581994/net-coding-standards-and-framework-for-a-web-service2.NET Coding standards and framework for a web serviceCodeMonkey2009-02-24T14:44:04Z2009-02-24T16:22:45Z
<p>I have been given to the task of writing a coding standards document and creating a framework for web services.</p>
<p>I've looked at numerous articles but I am still stumped to what is exactly required espicailly when developing a framework as it is completly different from application code. </p>
<p>Has anyone got any useful tips or books they can recommend?</p>
http://stackoverflow.com/questions/581994/net-coding-standards-and-framework-for-a-web-service/582026#5820264Answer by Gerrie Schenck for .NET Coding standards and framework for a web serviceGerrie Schenck2009-02-24T14:50:21Z2009-02-24T14:50:21Z<p>Check out <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidelines</a> by <a href="http://blogs.msdn.com/brada/archive/category/2656.aspx" rel="nofollow">Brad Abrams</a>.</p>
http://stackoverflow.com/questions/581994/net-coding-standards-and-framework-for-a-web-service/582194#5821942Answer by Corbin March for .NET Coding standards and framework for a web serviceCorbin March2009-02-24T15:32:02Z2009-02-24T15:32:02Z<p>If you think about frameworks, the best make repetitive coding tasks easier, <a href="http://c2.com/cgi/wiki?DontRepeatYourself" rel="nofollow">DRY</a>, and, if possible, automatic. With that in mind, identify the repetitive tasks in your web service layer. Maybe:</p>
<ul>
<li>Security?</li>
<li>Mapping from transport objects to business objects, data objects, others?</li>
<li>Special serialization handling?</li>
<li>...</li>
</ul>
<p>If you have specific use cases or service contracts, pore through them and find things you don't want to code inside every web service method.</p>
<p>From that, cook up a scheme that automates or simplifies code inside the service and, better yet, for service consumers. Maybe:</p>
<ul>
<li>A component that lets you swap out different security approaches with a simple config change</li>
<li>A single, generic object mapper versus mapping Property-to-Property every time it's required.</li>
<li>An Attribute scheme that tells the service how to handle special serialization versus explicitly handling each case</li>
<li>?</li>
</ul>
<p>When rolling your own framework, I'd say the most important thing is to start humble. Don't try to be everything to everyone and don't try to anticipate every possibility. Instead, start with tasks that you know are tedious and error-prone and make them automatic.</p>
http://stackoverflow.com/questions/581994/net-coding-standards-and-framework-for-a-web-service/582429#5824290Answer by John Saunders for .NET Coding standards and framework for a web serviceJohn Saunders2009-02-24T16:22:45Z2009-02-24T16:22:45Z<p>When considering a framework, consider using someone else's. Look at the <a href="http://www.codeplex.com/servicefactory" rel="nofollow" title="The Service Factory">Service Factory</a>. It's not only a framework and development methodology; it's also customizable.</p>