"Displaying API Data with Collection Views in Objective-C" was retired on May 31, 2020. You are now viewing the recommended replacement.

Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

How do web interfaces such as azure, or cloud nine, or cpanel provision services, hosting, etc..?

Let's use Microsoft azure as an example. I click on a button to create a new virtual machine, how is this happening? Are they using ASP.NET to do this etc...? 3rd party api's? I know this question is vague, but the whole thing is like a black box to me. It would be interesting to see how this is done.

1 Answer

Generally speaking, the button submits a request to the Azure portal web application for the VM creation. The web application is probably in .NET since it is a Microsoft service. The web app likely performs a number of actions including populating a database, talking to the Azure provisioning application, etc.

Thanks for the input Amir.