What would make development with SharePoint easier? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:19:53Z http://stackoverflow.com/feeds/question/874497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier 4 What would make development with SharePoint easier? JD 2009-05-17T12:18:55Z 2009-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#874501 3 Answer by AlexDuggleby for What would make development with SharePoint easier? AlexDuggleby 2009-05-17T12:21:56Z 2009-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#874908 8 Answer by salgo60 for What would make development with SharePoint easier? salgo60 2009-05-17T16:18:10Z 2009-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#874968 6 Answer by David Robbins for What would make development with SharePoint easier? David Robbins 2009-05-17T16:49:50Z 2009-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#875195 2 Answer by JMD for What would make development with SharePoint easier? JMD 2009-05-17T18:45:49Z 2009-05-17T18:45:49Z <p>Less XML (schema.xml etc).</p> http://stackoverflow.com/questions/874497/what-would-make-development-with-sharepoint-easier/876037#876037 7 Answer by jptacek for What would make development with SharePoint easier? jptacek 2009-05-18T02:36:42Z 2009-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#1026711 1 Answer by Jeremy Thake for What would make development with SharePoint easier? Jeremy Thake 2009-06-22T11:41:45Z 2009-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 -2 Answer by ArjanP for What would make development with SharePoint easier? ArjanP 2009-06-23T10:21:04Z 2009-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#1031764 3 Answer by Johan Leino for What would make development with SharePoint easier? Johan Leino 2009-06-23T10:31:27Z 2009-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#1031963 4 Answer by Kobi for What would make development with SharePoint easier? Kobi 2009-06-23T11:22:43Z 2009-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>