Welcome to weblogs.com.pk Sign in | Join | Help

Browse by Tags

All Tags » Software Engg. » .NET   (RSS)

Microsoft Dynamics GP

Is anyone around has worked with Microsoft Dynamics GP product? (v10) I have an integration project and some basic training work to accountants / data entry operators and management folk for adoption (migrating from another such accounting/financial/mini-ERP

StatSVN

I am stuck in pushing a project to its “end” this month…still few more steps to do..but we are seeing the end! I had a feeling that I am giving the most and doing the kind of work which I am not supposed to do…I wanted to confirm it statistically..so

.NET Code Generation

http://www.hanselman.com/blog/T4TextTemplateTransformationToolkitCodeGenerationBestKeptVisualStudioSecret.aspx
Posted by khurram | 0 Comments
Filed under: ,

Function Points :: .NET Projects

Is anyone around using Software Metrics for estimating the project size and then at the end comparing it with actual? Recently at my work; we started using Function Points ; and I am looking for secondary data of team performances of .NET projects? I
Posted by khurram | 0 Comments
Filed under: ,

Transactions!

Implementing transactions are tricky. It appears to be simple; but if you miss even a small thing; consequences can be REALLY bad. One such thing identified last night; in a system my team delivered few months back. Luckily; the loop hole was traced as
Posted by khurram | 1 Comments
Filed under: ,

Directory Services

Every application has certain configuration information; most of the times; these configurations are hard-coded by their developers; but it’s a good idea to have that information in some external configurable place. We had been using INI files and Windows

Characteristics of Good Portal Framework

So what a good portal platform should provide you? Add new things and vote listed item on scale 0 (no need) to 10 (it will not be a portal platform if it does not have this) User Management System Security System Extendable Mobile Support Online help/documentation

Using interfaces to pass configurations through tiers

Most of the application needs set of configuration to work smoothly, e.g. database connection string. I am a big fan of using interfaces, one of the biggest advantages it of using them with modern compiler is that you will not be able to compile your
Posted by khurram | 0 Comments
Filed under: ,

Practical Use of Patterns

Patterns are cool! Here is one pattern that I have found very practical; especially in integration of UI-Business layers. This pattern is mix of famous MVC; Controller; Data Transfer Objects and Martin Fowler’s Model View Presenter. Here is the interface
Posted by khurram | 3 Comments
Filed under: ,

Implementing Security :: Code Access Security & Role Based Security

Let’s assume; we have couple of Controllers (for different business facades) and we want that certain users can access certain controllers. Using central factory approach ; one might has to implement following extensions: public class ControllerFactory
Posted by khurram | 2 Comments
Filed under: ,

Implementing Security :: Central Factory

The approach introduced in my last post ; have few problems. In this post I am discussing one problem which is If you want to implement multiple controllers in the library; the code of validating the credentials will be duplicated; which is against OOP
Posted by khurram | 3 Comments
Filed under: ,

Patterns & Practices :: Enterprise Library

Microsoft introduced Application Blocks; the building blocks that help us leverage the best practices. I personally have used their Data Access Application Block in lot of projects. Recently, Enterprise Library has been released that integrates most of
Posted by khurram | 1 Comments
Filed under: ,