The Microsoft® .NET Framework



              Presented by
              Joseph J. Sarna Jr., MCSD
              JJS Systems, LLC
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
How Did We Get to .NET?
The Evolution of Web Applications
•   First generation of Web applications -non-interactive
    content (HTML static content)

•   Second generation of Web applications - scalable
    back-end and a richer User Interface. (DCOM, ASP,
    CGI, Cold Fusion, dynamic content)

•   Third generation of Web applications (.NET) - using
    Web protocols and XML to allow better integration
    between services on the Web
What is .NET?

•   .NET is Microsoft’s entry into the Web services arena
•   XML based
Why the Move to .NET?

•   DCOM works fine on an Intranet, however:
    –   DCOM does not go through firewalls
    –   Requires too many open TCP/IP ports
    –   Requires Stateful connections
    –   Platform dependent

•   Portals provide services however:
    –   Non-standard interfaces
    –   Hard to integrate with other applications
    –   Not designed to use outside the scope of the portal
What Is A Web Service?
•   A programmable application, accessible as a
    component via standard Web protocols
•   Defined in terms of the required formats and ordering
    of messages
•   You can ask a site for a description of the Web
    Services it offers
•   Web Service consumers can be any device - send and
    receive messages using XML
•   All built using open Internet protocols
XML Is The Core

•   Simple, open, broadly adopted

•   Continues the Web’s open standards

•   Enables powerful distributed apps

•   A universal data exchange format
XML Format
•   XML is a tagged mark-up representation of data
•   XML consists of a header section, a schema section,
    and a data section
•   The header section defines the XML form itself
•   The schema section defines the format of the data
    contained in the XML document
•   The data section provides the mapped data

•   C:SicCodes.XML
SOAP
Simple Object Access Protocol
•   Internet becomes integration fabric
•   Broad industry support
    •   IBM, Iona, Ariba, Compaq, Lotus, Commerce-One, HP, SAP,
        others
•   Submitted to W3C:
    •   http://www.w3.org/TR/SOAP/
•   XML-based integration for web services
Benefits of Web Services

•   Leverages exiting infrastructure
•   Allows the choice to buy or build the functionality
•   Use of tested standard modules for repeatability
•   Minimizes development time and cost
•   Allows integration between applications, platforms,
    businesses
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
What Is the .NET Framework?

•   A collection of technologies that
    –   Unite isolated Web applications
    –   Make information available anytime, anywhere
    –   Simplify development and deployment
•   How does .NET achieve the above?
    –   Web Services
    –   ADO.NET Datasets and XML support throughout the platform
    –   Rich tools, runtime services and XCOPY Deployment
.NET Framework, Languages, Tools

 VB      C++     C#   JScript       …

  Common Language Specification




                                        Visual Studio.NET
        Web               User
      Services          Interface

            Data and XML

          Base Class Library


      Common Language Runtime
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
Common Language Runtime

 VB      C++     C#   JScript       …

  Common Language Specification




                                        Visual Studio.NET
        Web               User
      Services          Interface

            Data and XML

          Base Class Library


      Common Language Runtime
The .NET Common Language Runtime
•    Manages running code
     •   Threading
     •   Memory management
•    Multi-language
     •   Inheritance, Errors, Debugging
•    Fine-grained evidence-based security
     •   Code access security
     •   Role-based security
     •   Integrated with underlying OS
•    “No-touch” deployment
Common Language Runtime

          Base Class Library Support

    Thread Support        COM Marshaler

    Type Checker         Exception Manager

   Security Engine           Debug Engine

  IL to Native      Code          Garbage
   Compilers       Manager        Collector

                 Class Loader
Common Language Runtime Design Goals

•   Dramatically simplify application development
•   Provide a robust and secure execution environment
•   Support multiple programming languages
•   Simplify deployment and management
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
.NET Framework Services

  VB      C++     C#   JScript       …

  Common Language Specification




                                         Visual Studio.NET
         Web               User
       Services          Interface

             Data and XML

           Base Class Library


       Common Language Runtime
.NET Framework Services

•   ASP.NET
    –   Logical evolution of ASP (compiled)
•   Web forms
    –   Manageable code (non spaghetti)
•   Windows® forms
    –   Framework for building rich clients
•   ADO.NET, evolution of ADO
    –   New objects (e.g., DataSets)
•   XML Support Throughout
Some .NET Base Class Libraries
          System.Web                         System.WinForms
Services        UI                  Design         ComponentModel
 Description     HtmlControls
 Discovery       WebControls
 Protocols                                    System.Drawing
Caching         Security           Drawing2D          Printing
Configuration   SessionState        Imaging           Text

          System.Data                          System.Xml
ADO             SQL                 XSLT              Serialization
Design          SQLTypes            XPath

                               System
Collections      IO               Security          Runtime
Configuration    Net              ServiceProcess     InteropServices
Diagnostics      Reflection       Text               Remoting
Globalization    Resources        Threading          Serialization
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
Common Language Specification

  VB      C++     C#   JScript       …

  Common Language Specification




                                         Visual Studio.NET
         Web               User
       Services          Interface

             Data and XML

           Base Class Library


       Common Language Runtime
Common Language Specification

•   What about types?
    –   Common type system (CTS)
•   Other languages and compilers
    –   Common Language Specification (CLS)
.NET Languages

•   The .NET Platform is Language Neutral
    •   All .NET languages perform the same
    •   You can leverage your existing skills
•   Common Language Specification
    •   Consumer: Can use the .NET Framework
    •   Extender: Can extend the .NET Framework
•   Microsoft provides:
    •   VB, C++, C#, JScript
•   Third-parties are building
    •   APL, COBOL, Pascal, Eiffel, Haskell, ML, Oberon, Perl,
        Python, Scheme, Smalltalk
.NET Languages Available (or soon to be)
•   Visual Basic        •   Pascal
•   C#                  •   C
•   Jscript             •   SmallTalk
•   C++                 •   Oberon
•   Perl                •   Scheme
•   Python              •   Mercury
•   COBOL               •   APL
•   Haskell             •   Eiffel
•   ML                  •   Oz
•   Ada                 •   Objective Caml
Agenda

•   Introduction to .NET and Web Services
•   The .NET Framework
•   Common Language Runtime
•   .NET Framework Services
•   Common Language Specification
•   .NET Development Tools
.NET Development Tools

  VB      C++     C#   JScript       …

  Common Language Specification




                                         Visual Studio.NET
         Web               User
       Services          Interface

             Data and XML

           Base Class Library


       Common Language Runtime
Visual Studio® .NET


                                Planning



           and Collaborate
                                Analysis
              Manage
                                Design

                              Development

                                Testing

                              Deployment
                              .NET
                             Platform
Summary

•   We covered:
    –   Introduction to .NET and Web Services
    –   The .NET Framework
    –   Common Language Runtime
    –   .NET Framework Services
    –   Common Language Specification
    –   .NET Development Tools
Resources for .NET

•   http://www.w3.org/TR/SOAP/ - W3C standards for SOAP
    implementation
•   http://www.uddi.org – UDDI standards for web services
    implementation
•   http://www.microsoft.com/net - Microsoft .NET home
•   http://msdn.microsoft.com/net - Microsoft .NET developers home
•   http://msdn.microsoft.com/xml - Microsoft XML developers home
•   http://msdn.microsoft.com/webservices – Microsoft Web Services
    developers home
•   http://www.gotdotnet.com – Developers .NET resource

More Related Content

PPT
Net framework
PPT
Best DotNet Training in Delhi
PPT
.Net overviewrajnish
PPT
Introduction to ,NET Framework
PPT
Introduction to .NET Framework
PDF
Summer Training In Dotnet
PPTX
.Net language support
PPT
Modified.net overview
Net framework
Best DotNet Training in Delhi
.Net overviewrajnish
Introduction to ,NET Framework
Introduction to .NET Framework
Summer Training In Dotnet
.Net language support
Modified.net overview

What's hot (17)

PPTX
Evolution of .net frame work
PPTX
.NET Framework 4.0 – Changes & Benefits
PPT
Introduction to dot net framework by vaishali sahare [katkar]
PPTX
.Net framework
PPT
.net framework
PPT
Introduction To Dotnet
PPTX
Visual Studio 2010 and .NET Framework 4.0 Overview
PPT
Nakov - .NET Framework Overview - English
PPT
Introduction to .Net
PPT
.NET Framework Overview
PPT
Visual studio.net
PPTX
Microsoft dot net framework
PPS
dot NET Framework
PPTX
Common language runtime clr
PPTX
dot net technology
PPTX
A Lap Around Visual Studio 11
PPT
Introduction to Visual Studio.NET
Evolution of .net frame work
.NET Framework 4.0 – Changes & Benefits
Introduction to dot net framework by vaishali sahare [katkar]
.Net framework
.net framework
Introduction To Dotnet
Visual Studio 2010 and .NET Framework 4.0 Overview
Nakov - .NET Framework Overview - English
Introduction to .Net
.NET Framework Overview
Visual studio.net
Microsoft dot net framework
dot NET Framework
Common language runtime clr
dot net technology
A Lap Around Visual Studio 11
Introduction to Visual Studio.NET
Ad

Viewers also liked (19)

PDF
Autonomy
PDF
PPT
Sql presentation
PPT
Test case
PDF
PPS
Prostration
PPT
Change management
PPTX
PPT
Software testing
PDF
PDF
Child abuse tutor case
PDF
PPTX
Rania saeed l12 case presentation
PPT
Pl sql
PDF
Permendikbud tahun2016 nomor023
DOCX
Makalah peran mulsa pada kelapa sawit
PPTX
Introduction to fmt
DOCX
Analisis Rill Tugas 3.5
PPTX
Autonomy in Bioethics
Autonomy
Sql presentation
Test case
Prostration
Change management
Software testing
Child abuse tutor case
Rania saeed l12 case presentation
Pl sql
Permendikbud tahun2016 nomor023
Makalah peran mulsa pada kelapa sawit
Introduction to fmt
Analisis Rill Tugas 3.5
Autonomy in Bioethics
Ad

Similar to Net framework (20)

PPT
PPT
Net framework
PPT
Win net presentacion [2005]
PPT
Microsoft .NET (dotnet) Framework 2003 - 2004 overview and web services…
PPT
As Pdotnet
PPT
dotNETfinal.ppt
PPT
dotNETfinal.ppt
PPT
assjdksjksjkjskjdkfjdkjfkdjfjdijdjidfjigjdisdssds
PPT
Dot Net Introduction
PPT
.Net overview
PPTX
Synapse india sharing info on dotnet framework part1
PPTX
PPSX
Introduction to C#
PPTX
Introduction to .NET with C# @ university of wayamba
PPS
Sreerag dot net - objectives & architecture
PPT
Introduction To Dot Net Siddhesh
PPT
Nakov dot net-framework-overview-english
PPTX
.Net programming with C#
PPT
Microsoft .NET Framework
Net framework
Win net presentacion [2005]
Microsoft .NET (dotnet) Framework 2003 - 2004 overview and web services…
As Pdotnet
dotNETfinal.ppt
dotNETfinal.ppt
assjdksjksjkjskjdkfjdkjfkdjfjdijdjidfjigjdisdssds
Dot Net Introduction
.Net overview
Synapse india sharing info on dotnet framework part1
Introduction to C#
Introduction to .NET with C# @ university of wayamba
Sreerag dot net - objectives & architecture
Introduction To Dot Net Siddhesh
Nakov dot net-framework-overview-english
.Net programming with C#
Microsoft .NET Framework

Recently uploaded (20)

PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
Chapter 5: Probability Theory and Statistics
PDF
A review of recent deep learning applications in wood surface defect identifi...
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPT
What is a Computer? Input Devices /output devices
PPTX
Tartificialntelligence_presentation.pptx
PDF
Unlock new opportunities with location data.pdf
PDF
Getting Started with Data Integration: FME Form 101
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PPT
Geologic Time for studying geology for geologist
PDF
August Patch Tuesday
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Hybrid model detection and classification of lung cancer
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
Assigned Numbers - 2025 - Bluetooth® Document
Chapter 5: Probability Theory and Statistics
A review of recent deep learning applications in wood surface defect identifi...
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Module 1.ppt Iot fundamentals and Architecture
Enhancing emotion recognition model for a student engagement use case through...
What is a Computer? Input Devices /output devices
Tartificialntelligence_presentation.pptx
Unlock new opportunities with location data.pdf
Getting Started with Data Integration: FME Form 101
Univ-Connecticut-ChatGPT-Presentaion.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Geologic Time for studying geology for geologist
August Patch Tuesday
WOOl fibre morphology and structure.pdf for textiles
Taming the Chaos: How to Turn Unstructured Data into Decisions
Hindi spoken digit analysis for native and non-native speakers
Hybrid model detection and classification of lung cancer
A contest of sentiment analysis: k-nearest neighbor versus neural network

Net framework

  • 1. The Microsoft® .NET Framework Presented by Joseph J. Sarna Jr., MCSD JJS Systems, LLC
  • 2. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 3. How Did We Get to .NET? The Evolution of Web Applications • First generation of Web applications -non-interactive content (HTML static content) • Second generation of Web applications - scalable back-end and a richer User Interface. (DCOM, ASP, CGI, Cold Fusion, dynamic content) • Third generation of Web applications (.NET) - using Web protocols and XML to allow better integration between services on the Web
  • 4. What is .NET? • .NET is Microsoft’s entry into the Web services arena • XML based
  • 5. Why the Move to .NET? • DCOM works fine on an Intranet, however: – DCOM does not go through firewalls – Requires too many open TCP/IP ports – Requires Stateful connections – Platform dependent • Portals provide services however: – Non-standard interfaces – Hard to integrate with other applications – Not designed to use outside the scope of the portal
  • 6. What Is A Web Service? • A programmable application, accessible as a component via standard Web protocols • Defined in terms of the required formats and ordering of messages • You can ask a site for a description of the Web Services it offers • Web Service consumers can be any device - send and receive messages using XML • All built using open Internet protocols
  • 7. XML Is The Core • Simple, open, broadly adopted • Continues the Web’s open standards • Enables powerful distributed apps • A universal data exchange format
  • 8. XML Format • XML is a tagged mark-up representation of data • XML consists of a header section, a schema section, and a data section • The header section defines the XML form itself • The schema section defines the format of the data contained in the XML document • The data section provides the mapped data • C:SicCodes.XML
  • 9. SOAP Simple Object Access Protocol • Internet becomes integration fabric • Broad industry support • IBM, Iona, Ariba, Compaq, Lotus, Commerce-One, HP, SAP, others • Submitted to W3C: • http://www.w3.org/TR/SOAP/ • XML-based integration for web services
  • 10. Benefits of Web Services • Leverages exiting infrastructure • Allows the choice to buy or build the functionality • Use of tested standard modules for repeatability • Minimizes development time and cost • Allows integration between applications, platforms, businesses
  • 11. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 12. What Is the .NET Framework? • A collection of technologies that – Unite isolated Web applications – Make information available anytime, anywhere – Simplify development and deployment • How does .NET achieve the above? – Web Services – ADO.NET Datasets and XML support throughout the platform – Rich tools, runtime services and XCOPY Deployment
  • 13. .NET Framework, Languages, Tools VB C++ C# JScript … Common Language Specification Visual Studio.NET Web User Services Interface Data and XML Base Class Library Common Language Runtime
  • 14. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 15. Common Language Runtime VB C++ C# JScript … Common Language Specification Visual Studio.NET Web User Services Interface Data and XML Base Class Library Common Language Runtime
  • 16. The .NET Common Language Runtime • Manages running code • Threading • Memory management • Multi-language • Inheritance, Errors, Debugging • Fine-grained evidence-based security • Code access security • Role-based security • Integrated with underlying OS • “No-touch” deployment
  • 17. Common Language Runtime Base Class Library Support Thread Support COM Marshaler Type Checker Exception Manager Security Engine Debug Engine IL to Native Code Garbage Compilers Manager Collector Class Loader
  • 18. Common Language Runtime Design Goals • Dramatically simplify application development • Provide a robust and secure execution environment • Support multiple programming languages • Simplify deployment and management
  • 19. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 20. .NET Framework Services VB C++ C# JScript … Common Language Specification Visual Studio.NET Web User Services Interface Data and XML Base Class Library Common Language Runtime
  • 21. .NET Framework Services • ASP.NET – Logical evolution of ASP (compiled) • Web forms – Manageable code (non spaghetti) • Windows® forms – Framework for building rich clients • ADO.NET, evolution of ADO – New objects (e.g., DataSets) • XML Support Throughout
  • 22. Some .NET Base Class Libraries System.Web System.WinForms Services UI Design ComponentModel Description HtmlControls Discovery WebControls Protocols System.Drawing Caching Security Drawing2D Printing Configuration SessionState Imaging Text System.Data System.Xml ADO SQL XSLT Serialization Design SQLTypes XPath System Collections IO Security Runtime Configuration Net ServiceProcess InteropServices Diagnostics Reflection Text Remoting Globalization Resources Threading Serialization
  • 23. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 24. Common Language Specification VB C++ C# JScript … Common Language Specification Visual Studio.NET Web User Services Interface Data and XML Base Class Library Common Language Runtime
  • 25. Common Language Specification • What about types? – Common type system (CTS) • Other languages and compilers – Common Language Specification (CLS)
  • 26. .NET Languages • The .NET Platform is Language Neutral • All .NET languages perform the same • You can leverage your existing skills • Common Language Specification • Consumer: Can use the .NET Framework • Extender: Can extend the .NET Framework • Microsoft provides: • VB, C++, C#, JScript • Third-parties are building • APL, COBOL, Pascal, Eiffel, Haskell, ML, Oberon, Perl, Python, Scheme, Smalltalk
  • 27. .NET Languages Available (or soon to be) • Visual Basic • Pascal • C# • C • Jscript • SmallTalk • C++ • Oberon • Perl • Scheme • Python • Mercury • COBOL • APL • Haskell • Eiffel • ML • Oz • Ada • Objective Caml
  • 28. Agenda • Introduction to .NET and Web Services • The .NET Framework • Common Language Runtime • .NET Framework Services • Common Language Specification • .NET Development Tools
  • 29. .NET Development Tools VB C++ C# JScript … Common Language Specification Visual Studio.NET Web User Services Interface Data and XML Base Class Library Common Language Runtime
  • 30. Visual Studio® .NET Planning and Collaborate Analysis Manage Design Development Testing Deployment .NET Platform
  • 31. Summary • We covered: – Introduction to .NET and Web Services – The .NET Framework – Common Language Runtime – .NET Framework Services – Common Language Specification – .NET Development Tools
  • 32. Resources for .NET • http://www.w3.org/TR/SOAP/ - W3C standards for SOAP implementation • http://www.uddi.org – UDDI standards for web services implementation • http://www.microsoft.com/net - Microsoft .NET home • http://msdn.microsoft.com/net - Microsoft .NET developers home • http://msdn.microsoft.com/xml - Microsoft XML developers home • http://msdn.microsoft.com/webservices – Microsoft Web Services developers home • http://www.gotdotnet.com – Developers .NET resource