Home > Articles > Web Services > XML

This chapter is from the book

This chapter is from the book

.NET: How Evil Is It?

.NET may indeed be evil. But it's also pretty cool. .NET is Microsoft's way of saying, "We think Web services are cool, and we want to make it easy for developers to create Web services." Of course, there's more to .NET than spreading developer-love. Microsoft wouldn't pour this much effort and money into something unless they planned to make a ton of money on it later. Remember earlier in the chapter when we discussed how software companies could stand to make more money from a subscription model of selling software? I'm going to hazard a guess that's a major reason .NET exists—Microsoft thinks it will make money. I'm not casting judgment, since businesses must make money, but it's useful to understand the motivations behind such things.

So what is .NET, exactly? .NET can be seen as a new run-time environment and a common base class library. If that doesn't make much sense to you, keep reading—there isn't a quick answer. For those of you who already understand compilers and runtimes, you can skim the next section.

Here's what we'll be examining in .NET:

  • Microsoft Intermediate Language (IL)

  • Common Language Runtime (CLR)

  • Common Type System (CTS)

  • Common Language Specification (CLS)

Background: Compilers and Runtimes

When you write a program in, say, Visual Basic, it exists as source code. Source code is what you write in a text editor. No computer in the world can run a program that exists only as source code. You have to translate the source code, which you understand, into a language that the computer can understand. That's what a compiler does: It takes your source code, and squeezes it into something that's almost impossible for people to understand, but computers have no problem with.

Well, almost no problem. Compiling a program from source code is a necessary step, but a computer needs something else that will actually run the compiled program. This something knows how to take the compiled code and force the computer to actually follow the instructions in that code. This piece of software is called a runtime environment.

So, in order to get your source code actually executed, you need both a compiler and a runtime environment.

Usually, each language has its own runtime. The runtime for Java (also known as the Java Virtual Machine) can only force a computer to run a chunk of compiled Java code. If you give a Java compiler some compiled C++ code, it won't know what to do with it.

For clarification, it's important to note that Java and C# compile code into bytecode that's understood as native language by a virtual (imaginary) machine. Visual Basic, similarly, compiles into pseudocode that an interpreter executes. C++ compiles into native machine language. In this sense, C++ does not have a runtime environment other than the operating system itself.

Intermediate Language

A huge part of the .NET program is the creation of a common intermediate language. What does this mean? First, an intermediate language is the computer-friendly language your source code is compiled into. When you compile a program using a .NET compiler (like the upcoming Visual Studio.NET), your source code is compiled into a language called Microsoft Intermediate Language (IL). .NET compilers compile all languages into this Intermediate Language, and it tacks on a little metadata as well. Figure 1–2 illustrates this:

Figure 1-2FIGURE 1–2 Compiling source code into a common intermediate language

New languages are being added to this list all the time. At last count, there are 18 languages that can be compiled into IL, and by the time you read this, hopefully a few dozen more.

How do you get a hold of one of these compilers for your language of choice? A number of vendors are creating .NET-aware compilers, so by now, the most common languages have several .NET-aware compilers available.

As you can see from Figure 1–2, the IL files are given the extension DLL or EXE. This is just like a COM (Component Object Model) binary, but internally, the two are nothing alike.

Metadata and Assemblies

When some source code is compiled into IL, a .NET-aware compiler does a little bit more than just a translation into IL. It also creates some metadata, or data about the compiled program. This metadata describes in exhaustive detail all of the types of data that are in your code, including base classes, methods, properties, and events. You don't have to worry about creating this metadata yourself—a .NET-aware compiler will do it for you.

When a .NET compiler translates your source code into IL and creates some metadata, this creates something called an assembly. We won't be going into more detail here about assemblies.

For those of you with experience in Windows programming, you know about a metadata language called IDL, which sometimes was present and sometimes wasn't. This ambiguity isn't part of .NET—you must have metadata. In fact, you can't help it, since the compiler always creates it.

Common Language Runtime

Since all .NET source code is compiled into a single intermediate language, IL, it should only require a single runtime to execute anything in that intermediate language, right? That is, since a runtime can only run a certain kind of compiled code, if you compile different languages into that same compiled code, then a runtime could execute all of them. You would have a single runtime that could execute compiled code from multiple languages. In fact, the runtime wouldn't even care if the compiled code started out as C#, Eiffel, or COBOL. The runtime just sees the IL and runs that. This runtime is called the Common Language Runtime (CLR), and it's a hugely important part of .NET.

The CLR basically has two components: an engine and a base class library.

CLR Engine

One component of the CLR is the actual execution engine (also known as mscoree.dll). This engine examines the metadata of the assembly, makes sure everything is where it should be, and then compiles the IL instructions into something that's platform-specific (for example, into something that's Windows-based or UNIX-based), which is then finally executed.

Base Class Library

The CLR's base class library essentially contains all the rules for all allowable kinds of data types. In other words, every data type that is in any compiled IL file has to have some equivalent in the base class library. A language can't have any old data type it wants and then expect the CLR to be able to run it. .NET languages have to follow certain rules, and the base class library contains most of those rules. That means that some languages will have to be tweaked slightly in order for them to compile into IL properly. However, this isn't expected to be much of a problem—the base class library has many, many types in it, so whatever language you're working in, chances are you're fine.

Common Type System (CTS)

The CTS describes all of the data types that the CLR can understand. That is, since the Common Language Runtime isn't all-knowing and can only understand a limited number of data types, the CTS is needed to define exactly what types the CLR understands. In addition, it also defines how those types interact with each other and how they should appear in the metadata.

To get a more thorough understanding of what this actually means, let's look at some broad categories of data types that are part of the CTS. These include:

  • Class types: The notion of a "class" is necessary for any object-oriented programming, so it's logical that classes are supported by the CTS. A class is composed of any number of methods, properties, and events.

  • Structure types: Structures are also supported by the CTS.

  • Interface types: Interfaces are collections of methods, properties, and event descriptions—they're more abstract than classes.

  • Type members: A member is either a method, a property, a field, or an event.

  • Enumeration types: An enumeration allows you to create a list of variables that can exist under a single name.

  • Delegate types: For those of you from the C world, this is the equivalent of a type-safe C style function pointer.

  • Intrinsic data types: These data types are different forms of integers, strings, Booleans, objects, decimal numbers, and so on.

Common Language Specification

Different computer languages can have different levels of functionality. Some will let you overload operators or will support unsigned data types, while others will not. However, in order for the IL and Common Language Runtime to work, all languages must share at least a certain subset of functionality. The purpose of the Common Language Specification is to define a set of explicit rules that provides a baseline for all languages that wish to be .NET-aware.

Rules of the CLS include how to represent text strings, how to use static types, how enumerations are represented, and so on.

.NET and SOAP

So .NET involves a common intermediate language and a common language runtime (among some other things). What does this have to do with SOAP?

Well, one thing we didn't cover is how to actually create Web services in your .NET-aware language. As it turns out, this is amazingly easy in most languages. In some cases, all you have to do is add a single line of code:

[WebMethod]
your method code

When you add this code, you automatically create a method that is capable of acting as a Web service. Well, the compiler and the runtime actually make your method a Web service. Now this Web service can read and write SOAP messages. Microsoft decided to use SOAP as their way of communicating between Web services. For example, if you want your .NET web services to communicate, they must communicate via SOAP messages. Microsoft has decided that SOAP is the glue that will hold Web services together.

NOTE
.NET and HailStorm

You may have heard about HailStorm but not completely understood it. HailStorm is a bunch of Web services that Microsoft is developing. These Web services have different functions, like keeping track of calendar events, schedules, contacts, document storage, email and voicemail inboxes, and so on. Microsoft would like you to keep all of your important information with them, and that you would communicate with this information via Web services. The fact you're using a Web service shouldn't be part of the experience, though.

The upshot of the above is that if you only plan to use Microsoft's tools, you don't really need to know anything about SOAP—Microsoft will take care of it for you. While this will save you time, you'll be stuck in case anything goes wrong, because you won't know enough to debug anything. Besides, how much do you trust any software vendor to know what's best for you? Learning SOAP gives you another tool in your programming tool chest, and as most of us know, the more tools we have, the better off we usually are.

Recap

.NET is an aggregation of several things, but its most interesting feature is the ability to write programs in any language. Since they're all compiled into the same intermediate language, these programs can now talk to each other as Web services, and it doesn't matter what language they were written in, where the applications are, or what platform they're on.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020