Saturday, September 25, 2010

Play Free Techdecklive.com

HttpContext - Issues and Implementation of wrapper.

Hi today I came across during encoding rather unpleasant nuisance. Namely, it concerns an injection through IoC and download the current HttpContext context of the classes that need such session. cookies, etc. As we all know it is difficult to access HttpContext object and it's hard to easily inject. So I decided to write a wrapper to the HttpContext.

HttpContextProvider
Our house will inherit the class IHttpContextProvider. It will be a fundamental variable that will allow us to get into all HttpContextu current parameters. The object will look like this: public class
 HttpContextProvider: IHttpContextProvider 


{public Context System.Web.HttpContextBase

{get {return new HttpContextWrapper (HttpContext.Current);}}


public System.Web.HttpRequestBase
Request
{get {return Context.Request;}}


public System.Web.HttpResponseBase
Response {get {return
Context.Response;}}


public System.Collections.Specialized.NameValueCollection FormOrQueryString
{
get
{
if (Request.RequestType == 'POST') {

return Request.Form;}

return Request.QueryString;

}}}

Generally nothing particularly odd about this difficult subject. The only one that can arouse the curiosity is a mysterious class of System.Web HttpContextWrapper from the library. This class inherits from HttpContextBase and allows you to get the functionality of the current context. With this solution we have easy access to the container HttpContextu IoC as well as this helps us to test because, as most of you know a false context is quite an unpleasant task.

Session Manager
scribble All of these were associated with wanted to create a facility to manage the user session. The main solution that I wanted to add a strongly typed session handling. SessionManager class looks like this:
 public class SessionManager: ISessionManager 
{
private IHttpContextProvider _httpContextProvider;

public SessionManager (IHttpContextProvider provider) {

_httpContextProvider = provider;
}

\u0026lt;T> public void Set (string name, T value)
{
_httpContextProvider.Context.Session.Add(name, value);
}

public T Get<T>(string name)
{
return (T)_httpContextProvider.Context.Session[name];
}

public T TryGet<T>(string name)
{
try
{
return (T)_httpContextProvider.Context.Session[name];
}
catch (NullReferenceException e)
{
return default(T);
}
}

public void Abandon()
{
_httpContextProvider.Context.Session.Abandon();

}}
basic class has methods to get and set values \u200b\u200bin the session as well as the abandonment of the session. In addition, I added a method that takes the value TryGet session but when it returns, there is no default value for a given type. During normal sampling method throws an exception NullReferenceException Get what is sometimes undesirable. It is something like we have in the dictionary. However, unfortunately, a collection of sessions is not a dictionary. That's all for today.

Sunday, September 19, 2010

How To Fix A Jammed Dvd In Town & Country

Basic configurations - configuration files in Asp.net MVC

Today I want to show resolve the problem with the way the storage of basic information about the forum, eg, name, keywords.

While I was thinking the easiest solution is simply the idea of \u200b\u200bstoring it in a database. After deep thoughts stated that for basic information does not make sense also tie a database so I decided to use the configuration files that are not available on the platform. Given that, and so they are used when creating the site so it does not cause any zwieszonego burden of reading the data.

configuration files
As most of you know the configuration files are divided into sections. At the beginning create a forum for our basic sections which will hold the simplest information. It looks like this:
 \u0026lt;mForum Sitetitle = "mForum" 
MetaKeywords = "Forum, Board, Project,. Net
MetaDescription =" mForum is going to be Fully Implemented forum featured in C # on. NET platform "
MinPasswordLength = "5">
\u0026lt;/ mForum>
But not too much so I decided to mix configurations on the board to move to a separate configuration file. To our team knew about the main web.configu need to insert this line:
 \u0026lt;mForum configSource = "mForum.config" /> 

Settings
Class This class will store information about all the board settings. Nothing special in this class. Variables and objects that will contain data from the configuration file.
 public class Settings {

public Settings (Sitetitle string, string metaKeywords, metaDescription string, int minPasswordLength)
{
Check.Argument.IsNotEmpty (Sitetitle, "Sitetitle");
Check.Argument.IsNotEmpty (metaKeywords, "metaKeywords ");
Check.Argument.IsNotEmpty (metaDescription," metaDescription ");
Check.Argument.IsNotNull (minPasswordLength, "minPasswordLength");
Check.Argument.IsNotNegativeOrZero (minPasswordLength, "minPasswordLength");

Sitetitle = Sitetitle;
MetaKeywords = metaKeywords;
MetaDescription = metaDescription;
} public string

Sitetitle

{get;
internal set;}


...

}
Class SettingsConfigurationSection
Here we have the facility to be used in direct pulling data from configuration files. Data from the section are binded to this object. The object itself inherits from the class ConfigurationSection. It looks like this: public class
 SettingsConfigurationSection: ConfigurationSection 
{private static string
_sectionName = "mForum"

public static string SectionName
{
[DebuggerStepThrough]

get {return
_sectionName;
}

[DebuggerStepThrough]
set {
Check.Argument.IsNotEmpty
(value, "value");

_sectionName = value;}

}


[ConfigurationProperty (Sitetitle ", DefaultValue = "mForum")]
public string SiteTitle
{
[DebuggerStepThrough]
get
{
return (string)this["SiteTitle"];
}

[DebuggerStepThrough]
set
{
this["SiteTitle"] = value;
}
}

[ConfigurationProperty("MetaKeywords", DefaultValue = "")]
public string MetaKeywords
{
[DebuggerStepThrough]
get
{
return (string)this["MetaKeywords"];
}

[DebuggerStepThrough]
set

{this ["MetaKeywords"] = value;}

}

...
}
It consists of static variables that directly pull data from the section. In addition, there is one variable that is set on a permanent basis. This is the section name. Initializing Settings
class takes place during the registration IoC container as all other objects. There is nothing complicated. Feel free to source the exact implementation.

Thursday, September 16, 2010

Using Wood Boiler To Supplement Oil Burner

Reloaded HipHopRandki.pl

From August on the site hiphoprandki.pl ongoing modifications. Dating service in a climate of Hip Hop and gently went in the direction of social networking site. Introduced the 'Friends', where of course you can invite, search, delete, and most importantly, track your entries friends.

entries - that is totally a mini blog, a bit inspired by a Facebook Wall's, lets you post entries, thoughts, information and events on your profile. In addition, entries are visible in the panel at a friend.

was also totally changed the process of adding images, manage, and display. Limit has been changed, both the quantity and size of images - all of course in favor of the user:)

new algorithm and search interface, and the changing structure of a page and new graphics, the most noticeable changes naked eye. Besides

visible, naked and not naked eye, changes are also plenty of smaller, less noticeable, but significant in the comfort of use.

Is the key to success may be Web 2.0 and Features ajax'owe?
- so far, statistics indicate that

Monday, September 13, 2010

Gum Healing Extraction

communication between the services and controller ... Global

Hello today I would like to raise another problem which I encountered during the development of the project. The problem concerns the transmission of data between the controller and the services (service). Take a simple example. We have functions that the downloaded data from a user creates a topic and post on the forum then returns the id of both the subject and post. And here there is a problem when we need to ask a lot of data with the function of the service.

my thoughts when I decided to refer to the request and response mechanism, which is usually used in WCF services. We obviously do not use them but thanks to our project will be prepared for such an eventuality.

communication between the service and the controller
Communication between the service and the controller looks fairly straight. How might initially seem a mechanism that applies only needlessly obscures the code but as the project develops standardized communication will help to receive and develop the project. I distinguish two types of messages: Request (request) and Reply (response). Correspond to their appropriate types: BaseRequestMessage and BaseResponseMessage. Both types inherit from BaseMessage. Example request and response: public class
 LogOnRequest: BasicRequestMessage 
{public
LogOnDTO LogOnDTO {get; set;}}

And here we have the answer: Public class
 LogOnResponse: BasicResponseMessage 
{public bool
isValidated {get; set;}}


With this communication mechanism, and it looks pretty clearly and we are able to receive data from multiple services. Of course, the appropriate services and tests have modified to work with our new mechanism. But this I will not describe just invite you to browse the sources.

Thursday, September 9, 2010

Contraceptive Pill Microgynon 30 Diarrhea

filters and injecting dependencies ...

Hello today I would like a bit closer MvcExtensions global filters and one of the applications that will be with me in the system has by this mechanism.

simple problem: We easily be able to keep up information about the last time the user viewed the page or record made by his actions. When I first approached this problem came to me two solutions:
-First: Create BaseController from which all others inherit a method that will have to be carried out whenever execute a controller action.
-Second: Use filters to be imposed on the controller.

first solution seems quite fun but is at odds with the principle of the controller should not have in the logic. Moreover, it is difficult testable by such treatment. So I decided to take advantage of the second. As it turned out the problem associated with the attributes needed to inject dependencies is to perform a particular activity. Poszperałem a little bit and I found MvcExtension mechanism called global filters. By the way it is implemented in version 3 of the MVC framework.

UpdateUserLastActivityFilter
As I said before the first simple filter that I used is updating the last activity user. Same attribute is simple. If a user is logged on to the class calls the UserService that updates its activity. The attribute looks like this:
 [AttributeUsage (AttributeTargets.Method  
{get;
private set;}


public void OnResultExecuting (ResultExecutingContext filterContext)


{} public void

OnResultExecuted (ResultExecutedContext filterContext)
{
Check.Argument.IsNotNull (filterContext, "filterContext");

string username = filterContext.HttpContext.User.Identity.IsAuthenticated? filterContext.HttpContext.User.Identity.Name: null;

if (string.IsNullOrEmpty (username)) {

UserService.UpdateLastActivity (username);

}}}


We already have attribute now must find a way to inject UserService to this attribute. The library is defined MvcExtension special interface which helps us in this task. Called ConfigureFilterBase. We will implement it as Bootstrapper task. It looks like this: public class

RegisterGlobalFilters: ConfigureFiltersBase

{protected override void Configure (IFilterRegistry registry) {
registry.Register
\u0026lt;AccountController, UpdateUserLastActivityAttribute> ()
. \u0026lt;HomeController, UpdateUserLastActivityAttribute> Register ; ();}

}
As you can see records filters are similar to types in the IoC container. It looks like this that serve as the first type of the controller and another the following are the filters which attaches to it. Such a procedure enable injection of the necessary interfaces to the attributes. In addition, we no longer hand controller decorate this action.
 So much in terms of global filters. As you can see MvcExtension has many interesting solutions. Many of them will be available in future versions of Asp.net MVC. 


Sunday, September 5, 2010

Formal Dress Shops Co.armagh

Validating domain objects and not only ...

Hi little now I do not regularly written due to lack of time but has already commenced in September so time to work. Today I would like discuss the problem of validation domain objects but not only. This interface can be used in any object. I would like to achieve the objectives of which are two: First of all, the validation must be reusable and easily accessible. The second objective is the ability to validate the entire object at once and return to the controller information about all the wrong boxes.


interface IValidatable

Let's start from the beginning because the validation must be easily accessible and reusable, any object that will have validation must implement the above interface. Nothing special: Public interface
IValidatable


ValidationResult
This class consists of a dictionary that stores information about the error and check that the information relates. However, because the data field can have a lot of mistakes because stores a list of strings. In addition, one has two functions for counting errors and another error to add to the dictionary. Class itself looks like this: public class
 ValidationResult 

{private IDictionary \u0026lt;string, IList \u0026lt;string>> _validationErrors;

public ValidationResult()
{
_validationErrors = new Dictionary<string, IList<string>>(); }
public IDictionary<string, IList<string>> Errors
{
         get { return _validationErrors; } 
private set { _validationErrors = value; }
}

public int CountErrors()
{
int errorCount = 0;

foreach (var errorMessages in _validationErrors.Values)
{
errorCount += errorMessages.Count;
}

return errorCount;
}

public void AddError(KeyValuePair<string, string> error)
{
if (error.Key != null)
{
if (_validationErrors.ContainsKey(error.Key))
{
_validationErrors[error.Key].Add(error.Value);
}
else
{
IList<string> newErrorList = new List<string>();
newErrorList.Add(error.Value);

_validationErrors.Add(new KeyValuePair<string, IList \u0026lt;string>> (error.Key, newErrorList));}


}}}




ValidationHelper

To facilitate the addition of a little bug I decided to create a secondary class that will be somewhat automate adding errors. This will be an object which has two methods that give an error if the condition is not fulfilled. They differ only in one parameter associated with a key error. This is usually called just as the field concerned. And in the end, a version of the method of expression lambda. The other takes a string parameter. So it is more generalized. Class looks like this: public class

ValidationHelper \u0026lt;T>
{public
ValidationHelper ()

{} public KeyValuePair
\u0026lt;string, string> CreateErrorIf (bool condition, String errorKey, String errorMessageKey)
{if (condition) return new KeyValuePair
\u0026lt;string, string> (errorKey, ResourceHelper.GetErrorMessage (errorMessageKey));
 
else return new KeyValuePair \u0026lt;string, string> ( );
}

public KeyValuePair \u0026lt;string, string> CreateErrorIf \u0026lt;TResult> (bool condition, Expression \u0026lt;Func \u0026lt;T, TResult>> errorKey, string errorMessageKey)
{var
expressionMember = errorKey.Body as MemberExpression;

CreateErrorIf return (condition, expressionMember.Member.Name, errorMessageKey);

}}

method that uses lambda expressions simply take from him the name of the field. And now an example using these classes: public class

User: BaseEntity, IEntity, IValidatable
{
...

public virtual ValidationResult Validate()
{
ValidationResult validationResult = new ValidationResult();
ValidationHelper<User> validationHelper = new ValidationHelper<User>();
validationResult.AddError(validationHelper.CreateErrorIf(!String.IsNullOrEmpty(Username), f => f.Username, ResourceKey.Common.RequiredField));
validationResult.AddError(validationHelper.CreateErrorIf(Username.Length >= 256, f => f.Username, ResourceKey.Common.FieldLength));
  
...

validationResult return;}

}


addition to writing this mechanism, slowly add missing tests in the project already associated with a ready functionality. That's all for today:)