Posts

Showing posts from September, 2010

Automated white-box testing of .NET applications using PEX Framework

The PEX Framework is a Visual Studio 2010 Powertool for automated white-box testing of .NET applications. Implemented as a Visual Studio add-in, PEX was developed by Microsoft Research and can be downloaded here . Once installed, PEX lets you automatically generate test suites with high code coverage. Unlike other unit testing tools, PEX suggests fixes to potential bugs it detects in your code. PEX is capable of performing an analysis on your application's code, searching for boundary conditions, generating test cases, searching for assertion failures and ultimately reducing maintenance costs. In this article, I examine the PEX Framework and show how you can integrate it with Visual Studio to create better unit tests with high code coverage. Andre Marion : Pex is definitely intriguing. What is Microsoft doing in the way of trying to catch up and develop tools like the Ruby community has, such as Rspec, Sinatra, Rake, Cucumber, Rails, etc... More Info Links: downloads Article By Jo

ASP.NET Open Source Projects

I have used bloggerEngine.Net for blog and DotNetNuke for CMS. I found this is very good. List of other open source Blogs site Blogsa.net - A blog engine in Asp.net dasBlog BlogEngine.NET SubText - A blogging engine in ASP.NET Owlpal - Web Content System AtomSite (formerly BlogSvc) - Built using ASP.NET MVC. Oxite - Built using ASP.NET MVC. Content Management Systems DotNetNuke Kooboo CMS N2CMS Umbraco sharpcms Mojoportal Orchard CMS http://wiki.asp.net/page.aspx/388/aspnet-open-source-projects/

Check the firewall on the server & open port

You can do this by running the following command in a prompt : netsh firewall show portopening If you get an empty list, no firewall is on, if you see a list, check that there is a line containing the correct port : standard it is 21234 To open the port, run the following command : netsh firewall add portopening TCP 21234 CCNET