Showing posts with label web. Show all posts
Showing posts with label web. Show all posts

Monday, 22 December 2014

Bridging Architectural Concepts

All of these below details are very important and have to learn if you are Architect of any of that like (Application Architect, Solution Architect, Enterprise Architect, Cloud Architect, Infrastructure Architect, System Architect.
  • Envision – Software Architecture 
  • Model – Design Patterns 
  • Blueprint – Construction and Design Principles
  • Nomenclature – Terms to communicate intent

Software Architecture 

  • Web Server – A pipeline Architecture
  • SOA – A component Architecture 
  • Client/Server – A layered architecture 
  • Single Tier – A monolithic Architecture
  • Cloud – A tier network Architecture 

Design Principles

  • Abstraction 
  • Encapsulation 
  • Cohesion 
  • Coupling 
  • Complexity 

Design Patterns 

  • Creation al, Structural and Behavioural
  • Event Driven – Observer
  • Plug-INS- Abstract Factory
  • Domain / Active Record / Table Module – Layer Patterns
  • Algorithm – Strategy

Construction Patterns

  • Inheritance Design
  • Component Design
  • Layered Design
  • Tier Design
  • Deliver Methodology
  • Delivery Methodology
  • Software architecture erosion 

What type of Architect you are and what you have to learn?

  • Application Architect - You have to strong in Construction patterns
  • Solution Architect - You have to strong in Design Patterns and Principles
  • Enterprise Architect - You have to strong in Architecture Patterns & Construction
  • Cloud Architect - You have to strong in Architecture, Construction & Tier
  • Infrastructure Architect - You have to know Construction pattern
  • System Architect - same as Solution Architect

Saturday, 21 December 2013

Bulk IIS Bindings using CMD

How to add Sub Domain in Internet information System through command line. Please find out below code which I have tested. You can enter bulk entries for multiple countries sub domains like us.example.com.

C:\Windows\System32\inetsrv\appcmd.exe set site /site.name:"example.com" /+bindings.[protocol='http',bindinginformation='*:80:us.example.com']


Friday, 15 June 2012

Single Page Application

An SPA is fully loaded in the initial page load and then page regions are replaced or updated with new page fragments loaded from the server on demand.

Very easy to install Just open Package Manager Console and type

PM> install-package singlepageapplication


Package Manager Console Commands


Get package list 

PM> get-package -listavailable

Filter Package List Available

PM> get-package -filter elmah -listavailable

Installation Of Package

PM> install-package elmah

PM> install-package jquery

Uninstall Package

PM> uninstall-package elmah

Get Updates of Already Installed Packages

PM> get-package -updates

PM> update-package jquery

Single Page Application

PM> install-package singlepageapplication



Wednesday, 23 May 2012

CSS Style Sheet Language


Border Radius


·         border:dashed 5px #000000;
·         -moz-border-radius-topleft: 5px;
·         -moz-border-radius-topright:5px;
·         -moz-border-radius-bottomleft:5px;
·         -moz-border-radius-bottomright:5px;
·         -webkit-border-top-left-radius:5px;
·         -webkit-border-top-right-radius:5px;
·         -webkit-border-bottom-left-radius:5px;
·         -webkit-border-bottom-right-radius:5px;
·         border-top-left-radius:5px;
·         border-top-right-radius:5px;
·         border-bottom-left-radius:5px;
·         border-bottom-right-radius:5px;

Gradient

Linear

·         background:-webkit-gradient(linear, 80% 20%, 10% 21%, from(#866400), to(#FF4E28))

Radial

·         background:-webkit-gradient(radial, 165 0, 0, 220 -257, 465, from(#866400), to(#FF4E28))

Wednesday, 16 May 2012

Web Config Security Analysis


On production level security of web.config should be very strong and properly handled shortly I am giving just these ideas
·         <customErrors mode="On"/>
·         <trace enabled="false" localOnly="false"/>
·         <trust level="Minimal"></trust>
·         <compilation debug="false">
·         <httpCookies httpOnlyCookies="true"  requireSSL="true"></httpCookies>
·         <sessionState cookieless="UseCookies"></sessionState>

Saturday, 4 September 2010

Slimdog - Web Application Testing Tool

Slimdog Web Application testing tool , for testing content, xml etc download and run to test

Download Latest Version

Tester Bench for jQuery

Easy installation, Script language is JavaScript in jQuery. For check in detail click here

HTML Validator - Firefox Add-on

Open Source Validator click here to check HTML Validator

Friday, 3 September 2010