Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

Thursday, 22 December 2011

NuGet Install Castle.Windsor and factilies for NLog or log4net

Install the following Castle packages from NuGet command line.
  1. PM>  install-package Castle.Windsor 
  2. PM>  install-package Castle.Core-NLog 
  3. PM> install-package Castle.Core-log4net
  4. PM> install-package Castle.LoggingFacility

 Notes: that Castle.Core-NLog has the Castle.Facilities for NLog.

Friday, 21 October 2011

Load testing ajax application using Visual Studio 2010

In order to do this, you need to extend Visual Studio Web Performance Test  with your own Extraction and/or Validation Rule. Visual Studio 2010, which my current working copy, has all interfaces provided for the needed customizations.

Here is an official tutorial for Creating a Custom Extraction Rule, which can lead you to the place where you can find all useful information and a real code example.

For java users, you may want to explore HtmlUnit platform.