Friday, 10 November 2017

What is Cloud Computing?


Cloud computing is the on-demand delivery of compute power, database storage, applications, and other IT resources through a cloud services platform via the internet with pay-as-you-go pricing.


Cloud Computing Basics
Whether you are running applications that share photos to millions of mobile users or you’re supporting the critical operations of your business, a cloud services platform provides rapid access to flexible and low cost IT resources. With cloud computing, you don’t need to make large upfront investments in hardware and spend a lot of time on the heavy lifting of managing that hardware. Instead, you can provision exactly the right type and size of computing resources you need to power your newest bright idea or operate your IT department. You can access as many resources as you need, almost instantly, and only pay for what you use.

How Does Cloud Computing Work?
Cloud computing provides a simple way to access servers, storage, databases and a broad set of application services over the Internet. A Cloud services platform such as Amazon Web Services owns and maintains the network-connected hardware required for these application services, while you provision and use what you need via a web application.

Six Advantages and Benefits of Cloud Computing
 Trade capital expense for variable expense

Instead of having to invest heavily in data centers and servers before you know how you’re going to use them, you can only pay when you consume computing resources, and only pay for how much you consume.

 Benefit from massive economies of scale
By using cloud computing, you can achieve a lower variable cost than you can get on your own. Because usage from hundreds of thousands of customers are aggregated in the cloud, providers such as Amazon Web Services can achieve higher economies of scale which translates into lower pay as you go prices.

 Stop guessing capacity
Eliminate guessing on your infrastructure capacity needs. When you make a capacity decision prior to deploying an application, you often either end up sitting on expensive idle resources or dealing with limited capacity. With cloud computing, these problems go away. You can access as much or as little as you need, and scale up and down as required with only a few minutes notice.

 Increase speed and agility
 In a cloud computing environment, new IT resources are only ever a click away, which means you reduce the time it takes to make those resources available to your developers from weeks to just minutes. This results in a dramatic increase in agility for the organization, since the cost and time it takes to experiment and develop is significantly lower.

 Stop spending money on running and maintaining data centers 
Focus on projects that differentiate your business, not the infrastructure. Cloud computing lets you focus on your own customers, rather than on the heavy lifting of racking, stacking and powering servers.
 Go global in minutes

Easily deploy your application in multiple regions around the world with just a few clicks. This means you can provide a lower latency and better experience for your customers simply and at minimal cost.
Types of Cloud Computing
Cloud computing has three main types that are commonly referred to as Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS). Selecting the right type of cloud computing for your needs can help you strike the right balance of control and the avoidance of undifferentiated heavy lifting.

 Cloud Solutions 
Hundreds of thousands of customers have joined the Amazon Web Services (AWS) community and use AWS solutions to build their businesses. The AWS cloud computing platform provides the flexibility to build your application, your way, regardless of your use case or industry. You can save time, money, and let AWS manage your infrastructure, without compromising scalability, security, or dependability.  





Wednesday, 14 June 2017

Types of Windows Application Pools


 The configuration settings for all application pools running on the Internet Information Service (IIS) 7 are the main elements of an application pool. Application pools contain one or more worker process. Application pool is assigned with the common settings, which are used to serve for one or more requests. The worker process are then configured and assigned to the application pool. The isolation from one web application from another web application is achieved because of the application pool, which allows the web applications to share one or more similar configured worker process. Any error in one application pool does not affect websites or applications in another application pool. This is implemented by the boundaries set for the process of each worker process.

In IIS 7 and later, each application pool uses one of two .NET integration modes for running ASP.NET applications: Integrated or Classic. The .NET integration mode defined for the application pool determines how IIS processes an incoming request to the sites, applications and Web services that run in that application pool.

Integrated
Integrated mode is the default mode by which all the application pools in the IIS 7 and later runs. This mode allows all the ASP.NET modules to be a part in IIS request process without checking the type of resource requested. In this integrated mode all the features of the ASP.Net 2.0 request pipeline are made available to the requests for static content, as well as ASP, PHP, and other content types.

Classic
In Classic mode the asp.net applications are hosted by the IIS 6.0 processing pipe line. In this mode, The ASP.NET requests are processed first through the IIS 7 and later modules. Also ASP.NET requests are then processed by the aspnet_isapi.dll. The IIS 7, later processing pipe lines, and the ASP.NET pipelines are separate from each other. The other resource types do not get the features of the ASP.NET request processing pipelines. This indicates the fact that ASP.NET request should undergo through authentication and authorization modules in both process models. However, Classic mode is not as efficient as integrated mode. Classic mode is not compatible with applications that were developed using ASP.NET version 1.1 on an IIS 7 and later server. It cannot be ran without modifying the application in integrated mode.

The Application Pool Identity type is a feature in new IIS 7.5 and above editions, which is used for identity attribute of the <processModel> element. This process identity feature is a default for applications, and allows to secure the content areas to allow a specific application pool. This security feature can be enabled using the name of an application pool by using syntax “IIS AppPool\DefaultAppPool.” The surface attack area of the server is reduced severely because the identity feature is created dynamically.



What is Cloud Computing?

Cloud computing is the on-demand delivery of compute power, database storage, applications, and other IT resources through a cloud se...