What would make development with SharePoint easier? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T19:19:53Zhttp://stackoverflow.com/feeds/question/874497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier4What would make development with SharePoint easier?JD2009-05-17T12:18:55Z2009-06-23T11:22:43Z
<p>What would make development with SharePoint easier?</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/874501#8745013Answer by AlexDuggleby for What would make development with SharePoint easier?AlexDuggleby2009-05-17T12:21:56Z2009-05-17T12:21:56Z<p>Remote Deployment:
- 1 central Sharepoint, and transparent remote debugging.</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/874908#8749088Answer by salgo60 for What would make development with SharePoint easier?salgo602009-05-17T16:18:10Z2009-05-17T16:18:10Z<p>A better product.</p>
<p>Right now it is to many things that doesn't behave as a development environment should. </p>
<ol>
<li>Dispose of objects</li>
<li>Performance of traversing small lists with 3000/4000 items</li>
<li>Lack of support of transactions</li>
</ol>
<p>Hopefully next version will have the SQLServer based lists where you can have transactional support and better performance......</p>
<p>Bill G raised the question in feb 2008 that it is something strange with Sharepoint that you get problems when you have 3000 items in a list and SQL Server easily supports million of items....</p>
<p><hr /></p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/874968#8749686Answer by David Robbins for What would make development with SharePoint easier?David Robbins2009-05-17T16:49:50Z2009-05-17T16:49:50Z<p>Standard HTML and better support for the DOM.</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/875195#8751952Answer by JMD for What would make development with SharePoint easier?JMD2009-05-17T18:45:49Z2009-05-17T18:45:49Z<p>Less XML (schema.xml etc).</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/876037#8760377Answer by jptacek for What would make development with SharePoint easier?jptacek2009-05-18T02:36:42Z2009-05-18T02:36:42Z<p>The build and deployment process needs to be simplified. There are numerous tools available to create WSP files, but they are all decent at one thing another, but you ultimately need to extend or rework the solution WSP deployment package for you environment.</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/1026711#10267111Answer by Jeremy Thake for What would make development with SharePoint easier?Jeremy Thake2009-06-22T11:41:45Z2009-06-22T11:41:45Z<p>Should check out @SPDevWiki's page on this also <a href="http://www.sharepointdevwiki.com/pages/viewpage.action?pageId=7340352" rel="nofollow">http://www.sharepointdevwiki.com/pages/viewpage.action?pageId=7340352</a></p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/1031721#1031721-2Answer by ArjanP for What would make development with SharePoint easier?ArjanP2009-06-23T10:21:04Z2009-06-23T10:21:04Z<p>Less people trying to abuse the product would make things a lot easier too ;)</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/1031764#10317643Answer by Johan Leino for What would make development with SharePoint easier?Johan Leino2009-06-23T10:31:27Z2009-06-23T10:31:27Z<p>Making the dev process more like "traditional" asp.net development, in other words making the integration with VS better. You should develop against SharePoint from within VS not from within SharePoint (ie SPD).
SPVisualDev on codeplex has made that process better but I hope (an I say hope) for better support within VS2010 together with SP2010.</p>
http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/1031963#10319634Answer by Kobi for What would make development with SharePoint easier?Kobi2009-06-23T11:22:43Z2009-06-23T11:22:43Z<p><strong>Informative error messages.</strong><br />
While easier debugging and less XML are very tempting (as people suggested), I would settle for something much more modest.<br />
SharePoint usually "swallows" exceptions or other error messages. Very often when a customized page or a web part fails, you get an obscure 'page cannot be displayed' message. With luck, the designer will direct you to the problem, or you might find some details on the logs or the system event viewer. But in many cases you have nothing.<br />
Examples - Business data catalog xml monstrosity that worked on the editor but not on the site, xml web parts that fail randomly, xsl typos or mistakes, etc. All take much longer to find than they should, and some are impossible to debug. </p>