1 / 21

Component-Based Software Engineering

Component-Based Software Engineering. Introduction to .NET Paul Krause. Lecture 11 - Introducing .NET. Motivation The .NET Framework CLR C# Web Services A .NET Scenario Summing Up. Motivation. “.NET is a tectonic shift for Windows developers” David Chappell - Understanding .NET

Télécharger la présentation

Component-Based Software Engineering

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Component-Based Software Engineering Introduction to .NET Paul Krause

  2. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  3. Motivation • “.NET is a tectonic shift for Windows developers” • David Chappell - Understanding .NET • .NET is Microsoft’s response to the: • increasing power of client side processing • increasing use of the internet as an integral part of applications • increasing threat of Java to Microsoft’s dominance

  4. What is .NET? • Hard to be concise - in effect .NET is a brand covering a range of technologies • Key core technology is Web services • supports programmatic, rather than browser-based, access to Web applications • Although not explicitly marketed as a component technology, the idea is to access Web services via well defined interfaces • .NET components are referred to as “Assemblies”

  5. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  6. Browser Apps Web Services Apps Local Apps Other Apps .NET Framework Class Library ASP.NET ADO.NET Windows Forms Enterprise Services More Common Language Runtime (CLR) Windows The .NET Framework

  7. Browser Apps Web Services Apps Local Apps Other Apps Standard Java Packages Java Server Pages JDBC Swing Enterprise JavaBeans More Java Virtual Machine (JVM) Windows, Solaris, Linux, … The Java Environment

  8. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  9. CLR • The Common Language Runtime (CLR) provides a “standard implementation” for a range of languages • Primarily C#, J#, Managed C++, JScript.NET and VisualBasic .NET • Provides common set of data types: • integers, strings, classes and interfaces • specification of how inheritance works

  10. CLR Services • Garbage collection • Standard format for metadata • information about classes and interfaces (and other types) that is stored with the compiled code • Assemblies - a scheme for organising compiled code • can consist of DLLs, EXEs and/or compiled classes

  11. Compiling and Running Code • Code from any of the supported languages is first compiled into MSIL • Microsoft Intermediate Language • MSIL is CPU independent • Metadata is also produced and stored in the same file as the MSIL • MSIL must then be compiled into native code for the processor on which it is running

  12. Compilation and Execution Compilation Language Compiler Source Code MSIL and Metadata First time each method is called Execution Native Code JIT Compiler

  13. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  14. C# • Very similar to Java in many ways: • Single inheritance • Method overriding • Exception handling • Multithreading • Multiple implementation of interfaces • But also • can directly access specific memory addresses • use of Goto statement

  15. C# using System; class MyFirstProg { public static void Main( string [ ], args ) { Console.WriteLine(“Hello Friends”); foreach (String s in args) { Console.WriteLine(“Hi ” + s); } } }

  16. .NET Framework Class Library System Int32, String, … Web Data Windows Enterprise Services XML … Forms XmlDocument UI Services ServicedComponent, … …

  17. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  18. Web Services • Allows software to be accessed programatically over the Web • XML • to describe information sent • Web Services Description Language (WSDL) • specify what services are available - operations are grouped into interfaces • Simple Object Access Protocol (SOAP) • how to invoke operations in an interface • Universal Description, Discovery and Integration (UDDI) • standard registry for storing information about services

  19. Lecture 11 - Introducing .NET • Motivation • The .NET Framework • CLR • C# • Web Services • A .NET Scenario • Summing Up

  20. SQL Server Intranet A .NET Scenario Passport Internet .NET Profile .NET Wallet Ordering Application Shipping Application BizTalk Server Billing Application

  21. Summing Up • .NET is a significant response to J2EE • It is locked (for the moment) to the Windows platform • It does not have the maturity of J2EE • But there are some things (Web Services) that it does better • Whatever your preference, the competition is healthy

More Related