Monday, 31 December 2018

Transclusion using ng-content

Understanding Transclusion Transclusion means the inclusion of the content of one document in another document. Content Projection in Angular with ng-content Let’s say you have a home component with a decorator that goes a bit like this: @Component({    selector: 'home',    template: `      <h1>Heroic Title</h1>      <p>Something good...</p>    `  }) And...
Continue Reading →

Monday, 24 December 2018

HTTP - Status Codes

Status codes are issued by a server in response to a client's request made to the server. S.N.Code and Description 11xx: Informational It means the request has been received and the process is continuing. 22xx: Success It means the action was successfully received, understood, and accepted. 33xx: Redirection It means further action must be taken in order to complete the request. 44xx: Client...
Continue Reading →

Friday, 14 December 2018

Custom Controller Factory in ASP.NET MVC

When ASP.NET MVC receives a request, it needs to manage how to handle it with a specific controller and the action methods in it. The component that is responsible to map an incoming request to a specific controller and decide which controller to use is controller factory. There is a default...
Continue Reading →

Thursday, 13 December 2018

ASP.NET MVC extensibility points

13 ASP.NET MVC extensibility points you must know One of the main design principles ASP.NET MVC has been designed with is extensibility. Everything (or most of) in the processing pipeline is replaceable so, if you don’t like the conventions (or lack of them) that ASP.NET MVC uses, you can create your own services to support your conventions and inject them into the main pipeline. In this post I’m...
Continue Reading →

Friday, 7 December 2018

CORS in Express

CORS in Express using TypeScript A quick walkthrough on configuring CORS in your Express app using TypeScript and the cors middleware. Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources (e.g. fonts) on a web page to be requested from another domain outside the domain from which the first resource was served. My use case for CORS is an Angular application that...
Continue Reading →

Http streams with RxJS

Combining multiple Http streams with RxJS Observables A best practice, indeed, is keeping all the stream manipulation logic inside our service and return the Observable, that can be subscribed by the Component. Here is a basic example of service with an Http call: @Injectable() export class AuthorService { constructor(private http: Http){} get(id: number): Observable<any> { return...
Continue Reading →

Wednesday, 21 November 2018

WCF Service as Windows Service

Host a WCF Service in a Managed Windows ServiceThis topic outlines the basic steps required to create a Windows Communication Foundation (WCF) service that is hosted by a Windows Service. The scenario is enabled by the managed Windows service hosting option that is a long-running WCF service hosted...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives