Browse by Tags

All Tags » Uncategorized (RSS)

Safely deploying changes to production servers by Omar AL Zabir on things you don't find easily

When you deploy incremental changes on a production server, which is running and live all the time, you some times see error messages like “Compiler Error Message: The Type ‘XXX’ exists in both…”. Sometimes you find Application_Start event not firing...

Quick ways to boost performance and scalability of ASP.NET, WCF and Desktop Clients by Omar AL Zabir on things you don't find easily

There are some simple configuration changes that you can make on machine.config and IIS to give your web applications significant performance boost. These are simple harmless changes but makes a lot of difference in terms of scalability. By tweaking system...

Temporary Post Used For Theme Detection (a16be7de-a045-4c76-9d15-3dccbdb11195 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) by Omar AL Zabir on things you don't find easily

This is a temporary post that was not deleted. Please delete this manually. (f1f7062e-8280-4f16-80dd-94b141f1e215 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) Read More...
Filed under:

Temporary Post Used For Theme Detection (487ec0d4-8305-4f96-adee-2436eb4a8098 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) by Omar AL Zabir on things you don't find easily

This is a temporary post that was not deleted. Please delete this manually. (c21040a1-0db2-4871-837c-d1954b9ea163 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) Read More...
Filed under:

Finally! Entity Framework working in fully disconnected N-tier web app by Omar AL Zabir on things you don't find easily

Entity Framework was supposed to solve the problem of Linq to SQL, which requires endless hacks to make it work in n-tier world. Not only did Entity Framework solve none of the L2S problems, but also it made it even more difficult to use and hack it for...

Munq is for web, Unity is for Enterprise by Omar AL Zabir on things you don't find easily

The Unity Application Block (Unity) is a lightweight extensible dependency injection container with support for constructor, property, and method call injection. It’s a great library for facilitating Inversion of Control and the recent version supports...

Keep website and webservices warm with zero coding by Omar AL Zabir on things you don't find easily

If you want to keep your websites or webservices warm and save user from seeing the long warm up time after an application pool recycle, or IIS restart or new code deployment or even windows restart, you can use the tinyget command line tool, that comes...

Do not use “using” in WCF Client by Omar AL Zabir on things you don't find easily

You know that any IDisposable object must be disposed using using. So, you have been using using to wrap WCF service’s ChannelFactory and Clients like this: using(var client = new SomeClient()) {. ..} Or, if you are doing it the hard and slow way (without...
Filed under: , ,

Step by Step screencasts to do Behavior Driven Development on WCF and UI using xUnit by Omar AL Zabir on hard to find tech stuffs

I am trying to encourage my team to get into Behavior Driven Development (BDD). So, I made two quick video tutorials to show how BDD can be done from early requirement collection stage to late integration tests. It explains breaking user stories into...

Rescue overdue offshore projects and convince management to use automated tests by Omar AL Zabir on hard to find tech stuffs

I have published two articles on codeproject recently. One is a story where an offshore project was two months overdue, my friend who runs it was paying the team from his own pocket and he was drowning in ever increasing number of change requests and...
Filed under: , , , ,

New and Improved Dropthings – the Open Source Web 2.0 AJAX portal by Omar AL Zabir on hard to find tech stuffs

I have made some significant improvements and bug fixes on the latest 2.5.4 release of Dropthings, my open source Web 2.0-style AJAX Portal built on ASP.NET 3.5, Linq to SQL, Linq to Xml, Silverlight, Enterprise Library, Unity, Velocity, and what not...

Synchronize File Date Time in multiple servers, solve IIS ETag problem by Omar AL Zabir on hard to find tech stuffs

When you deploy the same website on multiple webservers, you end up having each file getting different last modified date. As a result, each IIS produces different ETag for the static files. If user is hitting different servers for the same file (due...
Filed under: , ,

Redirecting traffic from http to https with zero coding in IIS by Omar AL Zabir on hard to find tech stuffs

When you want to enforce https on users and you want to redirect any URL being hit on http to the exact counterpart of https, then usually you do it with some HttpModule written in .NET, or install some URL Redirector module in IIS, or setup a dummy website...
Filed under: , ,

Temporary Post Used For Theme Detection (ec60d8da-f64e-4cfe-a89d-6fe45e5d1887 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) by Omar AL Zabir on hard to find tech stuffs

This is a temporary post that was not deleted. Please delete this manually. (b989d58e-bcf4-4efd-af62-cc45e4ca2109 – 3bfe001a-32de-4114-a6b4-4005b770f6d7) No related posts. No related posts. Read More...
Filed under:

Implementing Repository Pattern With Entity Framework by Morshed Anwar's Blog

The Repository pattern is defined by P of EAA as: Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects. Repository provides a in-memory like collection interface for accessing domain objects...
Filed under:
More Posts Next page »
Powered by Community Server (Non-Commercial Edition), by Telligent Systems